Am having a list view with one 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);
later when I want to retrieve whether the checkbox is checked or not am facing the FrameworkElementFactory, as it has no GetValue method, didn't know ho to cast it to a checkbox, so how can I get the IsChecked property from a FrameworkElementFactory, knowing that am able to access to it for any element of my listview
...
var mycheckboxFEF = template.VisualTree.FirstChild;// FirstChild is my FrameWorkElementFactory checkbox
bool isempty= (......) ????
I did provide a solution to your problem through this exemple.
This should work by selecting an item and pressing the button
XAML :
Code behind :
Hope it helps