0

我正在尝试在 C# 中动态构建列,但我不确定如何将其转换为 C#

<xcdg:Column FieldName="Name" 
             Title="Name"
             DisplayMemberBinding="{Binding}"
             CellContentTemplate="{StaticResource InputManagerNameCellTemplate}"
             AllowAutoFilter="False"/>

我知道如何转换所有这些但 DisplayMemberBinding 部分。

谢谢。

4

1 回答 1

2

试试这个:

new Binding()
{
    Path = new PropertyPath(FrameworkElement.DataContextProperty),
    RelativeSource = new RelativeSource(RelativeSourceMode.Self)
}

XAML 中的空绑定是绑定到同一元素上的 DataContext 的快捷方式。

于 2012-04-24T18:36:14.450 回答