我有一个自定义控件,它继承自DataGrid
并且基本上是 2D DataGrid
(接受ItemsSource
具有二维的,例如double[,]
)。
我添加了一个特定DependencyProperty
的ColumnHeaders
,RowHeaders
所以我可以定义它们。
这是它现在的工作方式:
- 我将 2D 绑定
ItemsSource
到DataGrid
- 包装器方法将使用此源将其转换为
IEnumerable
可绑定到实际数据网格的经典ItemsSource
- 自动生成的每一行/列都使用事件
AutoGeneratingColumn
&AutoGeneratingRow
来定义它们的标题
这里的问题:
当我初始化时DataGrid
,一切正常。
之后,我的应用程序的一个用例定义只有列标题可以更改(通过修改DependencyProperty
ColumnHeaders
而且,无论我在这里做什么,DataGrid
都不会重新自动生成其列(因此,标题不会以任何方式更改)。
那么,有没有办法问DataGrid
“嘿,我希望你从头开始并重新生成你的列”之类的问题?因为现在,我无法到达该AutoGeneratingColumn
事件,并且调用诸如InvalidateVisual
只会重绘网格(而不是重新生成列)之类的方法。
这里有什么想法吗?
我不确定我们是否需要一些代码,但是......我会放一些所以没有人要求它:D
/// <summary>
/// IList of String containing column headers
/// </summary>
public static readonly DependencyProperty ColumnHeadersProperty =
DependencyProperty.Register("ColumnHeaders",
typeof(IEnumerable),
typeof(FormattedDataGrid2D),
new PropertyMetadata(HeadersChanged));
/// <summary>
/// Handler called when the binding on ItemsSource2D changed
/// </summary>
/// <param name="source"></param>
/// <param name="e"></param>
private static void ItemsSource2DPropertyChanged(DependencyObject source, DependencyPropertyChangedEventArgs e)
{
FormattedDataGrid2D @this = source as FormattedDataGrid2D;
@this.OnItemsSource2DChanged(e.OldValue as IEnumerable, e.NewValue as IEnumerable);
}
// (in the constructor)
AutoGeneratingColumn += new EventHandler<DataGridAutoGeneratingColumnEventArgs>(DataGrid2D_AutoGeneratingColumn);
void DataGrid2D_AutoGeneratingColumn(object sender, DataGridAutoGeneratingColumnEventArgs e)
{
DataGridTextColumn column = e.Column as DataGridTextColumn;
column.Header = (ColumnHeaders == null) ? columnIndex++ : (ColumnHeaders as IList)[columnIndex++]; //Header will be the defined header OR the column number
column.Width = new DataGridLength(1.0, DataGridLengthUnitType.Auto);
Binding binding = column.Binding as Binding;
binding.Path = new PropertyPath(binding.Path.Path + ".Value"); // Workaround to get a good value to display, do not take care of that
}