以编程方式获取绑定名称

时间:2014-11-06 09:33:00

标签: c# wpf telerik

需要在后面的代码中获取绑定对象的名称。

<telerik:RadGridView x:Name="grdCoverContent" AutoGenerateColumns="False" CanUserInsertRows="False" IsSynchronizedWithCurrentItem="True" 
                                            GridLinesVisibility="Horizontal" telerik:StyleManager.Theme="Windows8"   VerticalAlignment="Top"
                                            ShowGroupPanel="False" ItemsSource="{Binding CoverContentCollection, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged, NotifyOnSourceUpdated=True }" 
                                            SelectedItem="{Binding SelectedCoverContent,Mode=TwoWay,UpdateSourceTrigger=PropertyChanged, Source={StaticResource CoverViewModel} }" RowHeight="30" CellValidating="grdCoverContent_CellValidating" >

有没有办法将绑定名称作为&#34; CoverContentCollection&#34;

提前致谢。

1 个答案:

答案 0 :(得分:1)

你需要的实际上是绑定Path(实际上它是Path的{​​{1}}属性。所以只需获取绑定并访问其路径,如下所示:

PropertyPath

应该在加载窗口时运行代码。