如何将此 Xceed XAML 转换为 C#
本文关键字:转换 XAML Xceed | 更新日期: 2023-09-27 18:32:11
>我正在尝试在 C# 中动态构建列,但我不确定如何将其转换为 C#
<xcdg:Column FieldName="Name"
Title="Name"
DisplayMemberBinding="{Binding}"
CellContentTemplate="{StaticResource InputManagerNameCellTemplate}"
AllowAutoFilter="False"/>
我知道如何转换所有这些,但显示成员绑定部分。
谢谢。
试试这个:
new Binding()
{
Path = new PropertyPath(FrameworkElement.DataContextProperty),
RelativeSource = new RelativeSource(RelativeSourceMode.Self)
}
XAML 中的空绑定是绑定到同一元素上的 DataContext 的快捷方式。