Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
假设我有一个这样的文本框:
<TextBox Text="{Binding MyBoundProperty, Mode=TwoWay"/>
有没有一种简单的方法可以在后面的代码中找到并设置“MyBoundProperty”?
我正在处理 TextBox 的自定义附加属性(捕获 OnTextBoxKeyUp 事件),并希望在某些情况下(发生扫描时)直接设置该属性。
如果是双向绑定,更改 TextBox 的 Text 属性应该会更新源。