Example #1
0
    public TextBlockElement(DataGridPropertyTextColumn column, PropertyInfo propertyInfo)
    {
        Column       = column;
        PropertyInfo = propertyInfo;

        Initialize();
    }
Example #2
0
 public void Dispose()
 {
     DataGrid.CellPointerPressed -= DataGrid_CellPointerPressed;
     DataGrid = null;
     Column   = null;
     Cell     = null;
     Items    = null;
 }
Example #3
0
 private void DataGrid_CellPointerPressed(object sender, DataGridCellPointerPressedEventArgs e)
 {
     Cell   = e.Cell;
     Column = e.Column as DataGridPropertyTextColumn;
 }