这让我疯了。我在代码中创建一个DataGrid,然后将其绑定到数据表。这是动态的,每次创建网格时行和列都会不同。
基本上我遍历我的数据表并为每列创建DataGrid列,如下所示:
private static void CreateDataGridColumns(DataGrid datagrid, Document doc)
{
if (doc == null) return; //return
datagrid.Columns.Clear();
foreach (var item in doc.Keys)
{
var column = new DataGridTemplateColumn
{
Header = item,
CellTemplateSelector = new CustomRowDataTemplateSelector(),
};
datagrid.Columns.Add(column);
}
}
正如您所看到的,我正在使用自定义数据模板选择器,因此我可以根据其内容以不同方式呈现单元格。
这是模板选择器
public class CustomRowDataTemplateSelector : DataTemplateSelector
{
public override DataTemplate
SelectTemplate(object item, DependencyObject container)
{
FrameworkElement element = container as FrameworkElement;
var presenter = container as ContentPresenter;
var gridCell = presenter.Parent as DataGridCell;
if (element != null && item != null && gridCell != null)
{
var row = item as DataRow;
if (row != null)
{
var cellObject = row[gridCell.Column.DisplayIndex];
//set template based on cell type
if (cellObject is DateTime)
{
return element.FindResource("dateCell") as DataTemplate;
}
return element.FindResource("stringCell") as DataTemplate;
}
}
return null;
}
}
这是我的stringCell DataTemplate
<DataTemplate x:Key="stringCell">
<StackPanel>
<TextBlock Style="{StaticResource cellStyle}"
Grid.Row="0" Grid.Column="0"
Text="{Binding Converter={StaticResource cellConverter}}" />
</StackPanel>
</DataTemplate>
问题是为每个单元格调用了模板选择器(如预期的那样),但我无法分辨它是哪个单元格,因此我不知道如何在TextBlock上设置Text。我很乐意做这样的事情
<DataTemplate x:Key="stringCell">
<StackPanel>
<TextBlock Style="{StaticResource cellStyle}"
Grid.Row="0" Grid.Column="0"
Text="{Binding Path=Row[CellIndex], Converter={StaticResource cellConverter}}" />
</StackPanel>
</DataTemplate>
但是我无法获得CellIndex。我怎么能做类似的事情,我可以设置Path = Row [CellIndex]
答案 0 :(得分:0)
您可以尝试在代码中创建绑定。这样的事情应该有效
var bind = new Binding(gridCell.Column.Header.ToString())
bind.Mode = BindingMode.TwoWay;
bind.Source = row;
BindingOperations.SetBinding(YourTextBlock, TextBlock.TextProperty, bind);
答案 1 :(得分:-1)
不确定您要在功能上实现的目标。你可能会在代码中做到这一点。创建一个具有属性DisplayValue的更高级别的CellClass。随着日期和字符串的实现。使用Path = DisplayValue将Source绑定到CellClass。你甚至可以创建List CellClasses并绑定到CellClass [0],CellClass [1] ......我知道这可以正常工作,但我不确定它是否提供了你正在寻找的功能。
public abstract class CellClass
{
public abstract String DispValue { get; }
}
public class CellClassDate : CellClass
{
public override String DispValue { get ...; }
public DateTime DateValue { get .. set ... }
}
public class CellClassString : CellClass
{
public override String DispValue { get ...; }
public DateTime StringValue { get .. set ... }
}