У меня получилось сделать привязку данных к полям, экземпляра класса
public MainWindow(){
this._chamber = new CameraFeutron();
this.DataContext = _chamber;
InitializeComponent();
}
И реализовать в коде
<TextBox Text="{Binding current_temperature}" />
<TextBox Text="{Binding current_humidity}" />
<TextBox Text="{Binding set_temperature}" />
<TextBox Text="{Binding set_humidity}" />
Теперь у меня есть еще класс "Ratronic_communicator" но как добавить его в контекст, или привязать другим способом, не понимаю.
this._chamber = new CameraFeutron();
this.DataContext = _chamber;
this.DataContext += Ratronic_communicator;
естественно не работает.
Хотел сделать привязку через xaml
<TextBox Text="{Binding Source=Ratronic_communicator, Path=temperature}" />
Но тут вылетает ошибка "String Свойство temperature не найдено для объекта типа String" хотя свойство есть 100%