gpt4 book ai didi

c# - 如何正确设置 PropertyPath

转载 作者:太空宇宙 更新时间:2023-11-03 22:12:02 27 4
gpt4 key购买 nike

如何正确添加 PropertyPath ?

我需要将用户控件 DataContext 绑定(bind)到 DataContext,TwoWay。

    var binding = new Binding()
{
Mode = BindingMode.TwoWay,
Source = ((FrameworkElement)sender),
Path = new PropertyPath(FrameworkElement.DataContextProperty)
};
binding.Source = ((FrameworkElement) sender);
changeImage.SetBinding(FrameworkElement.DataContextProperty, binding);

最佳答案

binding.Path = new PropertyPath("DataContext")

如果您能说出您的代码有什么问题,这也会有所帮助。

关于c# - 如何正确设置 PropertyPath,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6270098/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com