我正在尝试获取与鼠标单击的ImageButton相关联的类数据; ImageButton位于Scollviewer包裹的WrapPanel中,并且填充了许多其他ImageButton。问题是虽然我可以看到ImageButton的实例选择“((PlanetClass)(fe))”,并且可以看到类实例的基础数据“((PlanetClass)(fe))。内容”,我无法访问任何类的字段数据。以下示例说明了我的意图。
我是否正确处理此问题(WrapPanel(包含在ScrollViewer中) - > ImageButton-> FrameworkElement - >按钮实例 - >字段数据)?如果没有,访问ImageButton实例和实例的关联数据的最佳方法是什么?有谁能指出我正确的方向?
// WPF EventHandler at the container level:
<ScrollViewer ButtonBase.Click="SolarSystem_Click">
// Handles the ImageButton mouseClick event within the ScrollViewer wrapping the WrapPanel.
private void SolarSystem_Click(Object sender, RoutedEventArgs e)
{
FrameworkElement fe = e.OriginalSource as FrameworkElement;
SelectedPlanet PlanetSelected = new SelectedPlanet(fe);
MessageBox.Show(PlanetSelected.PlanetName);
}
// Used to initiate instance of ImageButton to access field data.
public SelectedPlanet(FrameworkElement fe)
{
return ((PlanetClass)(fe));
}
// Class Data
public class PlanetClass
{
string planetName;
public PlanetClass(string planetName)
{
PlanetName = planetName;
}
public string PlanetName
{
set { planetName = value; }
get { return planetName; }
}
}
答案 0 :(得分:0)
过了两天以及很多挫折:
在这个问题上抓了两天之后,我想通过鼠标点击的ImageButton获取底层数据我需要将FrameworkElement e.OriginalSource转换回原始的ImageButton来获取它的“.source”。 “,然后将结果转换为PlanetClass以获取它的属性。
// WPF EventHandler placed at the container level.
<ScrollViewer ButtonBase.Click="SolarSystemButton_Click">
// Handles the ImageButton mouseClick event within the ScrollViewer wrapping the WrapPanel.
private void SolarSystemButton_Click(Object sender, RoutedEventArgs e)
{
FrameworkElement fe = e.OriginalSource as FrameworkElement;
string PlanetName = ((PlanetClass)((ImageButton)fe).Content).PlanetName;
return PlanetName;
}
比尔