使用 WPF 中其他控件的属性设置控件的属性
我有一个边框,里面有一个文本框。
我想根据文本框的属性设置边框的属性。我想在不使用 ElementName 的情况下完成此操作...这可能吗?请帮帮我。
I have a border inside that I have a text box.
I want to set a property of border based on the property of textbox. I want to accomplish this without using ElementName... Is this possible? Please help me out.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为使用 ElementName 是将边框数据绑定到 TextBox 文本的唯一方法。
获得交互的另一种方法是处理 TextChanged 事件。在处理程序内,您可以解释 TextBox 的值并将其应用到边框。
I think using ElementName is the only way to databind the border to the TextBox's text.
The other way to get the interaction it is to handle the TextChanged event. Inside the handler you can interpret the value of the TextBox and apply it to the border.