我打算将文本框绑定到对象的变量
我该怎么做?
例如
<TextBox x:Name="MaxCurrent_Tb" Margin="84,53,0,0" FontFamily="Roboto Light" Height="24" VerticalAlignment="Top" IsReadOnly="True" MaxLines="1" VerticalContentAlignment="Center" HorizontalAlignment="Left" Width="123"/>
class mainWindow(Window) :
wpf.LoadComponent(self, 'TPC_Main.xaml')
sampler = DMMSampler()
self.MaxCurrent_Tb.Text = sampler.max_current
我打算绑定此采样器对象的max_current,
并且max_current经常更新,如何实时绑定此变量?
我已将DataContext设置为另一个变量,因此无法将DataContext设置为
sampler,还有其他方法可以实时绑定到此sampler对象吗?