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.
如何将窗口 B 中的文本框值绑定到窗口 A 中滑块的值?我希望这是双向绑定,以便文本框值的手动更改反映在滑块拇指位置。表单中的元素绑定非常简单,但 Windows 之间的绑定对我来说是个谜。
我将创建一个具有公共属性的类,其中包含您希望绑定到的值。
创建对象的一个实例并将 B 中的属性设置为该DataContext对象。将 A 中的属性设置为相同的对象。将两个 FrameworkElements 的对象的 Path 属性设置为您创建的公共属性的名称。在您的设置器中实现并触发 PropertyChanged 事件。TextBoxWindowDataContextSliderWindowBindingINotifyPropertyChanged
DataContext
TextBox
Window
Slider
Binding
INotifyPropertyChanged