getvalue из FrameworkElementFactory
У меня есть представление списка с одним GridViewColumn
GridViewColumn gvc = new GridViewColumn();
DataTemplate dt = new DataTemplate();
FrameworkElementFactory ch = new FrameworkElementFactory(typeof(CheckBox));
Binding bind= new Binding("Empty");
ch.SetBinding(CheckBox.IsCheckedProperty, bind);
dt.VisualTree = ch;
gvc.CellTemplate = dt;
(lv.View as GridView).Columns.Add(gvc);
позже, когда я хочу узнать, установлен ли флажок или нет, обращен ли он к FrameworkElementFactory, так как у него нет метода GetValue, я не знал, как его привести к флажку, так как я могу получить свойство IsChecked из FrameworkElementFactory, зная, который может получить к нему доступ для любого элемента моего списка
...
var mycheckboxFEF = template.VisualTree.FirstChild;// FirstChild is my FrameWorkElementFactory checkbox
bool isempty= (......) ????
1 ответ
Решение
Я предоставил решение вашей проблемы с помощью этого примера.
Это должно работать, выбрав элемент и нажав кнопку
XAML:
<Button Margin="0,12,401,276" Click="Button_Click">Button</Button>
<ListView x:Name="yourListView" ItemsSource="{Binding Things}" SelectedItem="{Binding SelectedThing}" Margin="0,41,0,0">
<ListView.View>
<GridView>
<GridView.Columns>
<GridViewColumn Header="Check" Width="250">
<GridViewColumn.CellTemplate>
<DataTemplate>
<CheckBox x:Name="myCBox" Content="{Binding ThingName}"></CheckBox>
</DataTemplate>
</GridViewColumn.CellTemplate>
</GridViewColumn>
</GridView.Columns>
</GridView>
</ListView.View>
</ListView>
Код позади:
/// <summary>
/// Interaction logic for MainWindow.xaml
/// </summary>
public partial class MainWindow : Window
{
public MainWindow()
{
InitializeComponent();
Things = new List<Thing>
{
new Thing {ThingName = "t1"},
new Thing {ThingName = "t2"},
new Thing {ThingName = "t4"},
new Thing {ThingName = "t3"},
};
DataContext = this;
}
public List<Thing> Things { get; set; }
public Thing SelectedThing { get; set; }
private void Button_Click(object sender, RoutedEventArgs e)
{
var yourListViewItem = (ListViewItem)yourListView.ItemContainerGenerator.ContainerFromItem(yourListView.SelectedItem);
CheckBox cb = FindByName("myCBox", yourListViewItem) as CheckBox;
MessageBox.Show(cb.Content + " IsChecked :" + cb.IsChecked);
}
private FrameworkElement FindByName(string name, FrameworkElement root)
{
Stack<FrameworkElement> tree = new Stack<FrameworkElement>();
tree.Push(root);
while (tree.Count > 0)
{
FrameworkElement current = tree.Pop();
if (current.Name == name)
return current;
int count = VisualTreeHelper.GetChildrenCount(current);
for (int i = 0; i < count; ++i)
{
DependencyObject child = VisualTreeHelper.GetChild(current, i);
if (child is FrameworkElement)
tree.Push((FrameworkElement)child);
}
}
return null;
}
}
public class Thing
{
public string ThingName { get; set; }
}
Надеюсь, поможет