gpt4 book ai didi

wpf - 如何将绑定(bind)源设置为 "self"/UserControl 后面的代码

转载 作者:行者123 更新时间:2023-12-03 20:28:41 27 4
gpt4 key购买 nike

如何设置绑定(bind)源以指向“this”UserControl CodeBehind?例如。来自用户控件 MarkdownEditor.xaml , 我想指向 MarkdownEditor.xaml.cs 中的属性.在不设置 DataContext = this 的情况下执行此操作

更新:我的解决方案

这就是我所做的,我将@Alex B 的解决方案标记为答案。我不想设置 DataContext将整个控制权归于 Self,因为我也绑定(bind)到其他对象

{Binding RelativeSource={RelativeSource AncestorType={x:Type local:MarkdownEditor}}, Path=Options.FontFamily}

最佳答案

而不是使用您提出的广泛表达:

{Binding RelativeSource={RelativeSource AncestorType={x:Type local:MarkdownEditor}}, Path=Options.FontFamily}

设置 x:Name 不是更简单吗?的 UserControl ?
<UserControl
...
x:Name="Control">

<TextBlock Text="{Binding ElementName=Control, Path=SomeText}" />

</UserControl>

关于wpf - 如何将绑定(bind)源设置为 "self"/UserControl 后面的代码,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4202145/

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