我有一个私人领域
private static Double myValue;
在应用程序 MainWindow 类中。在那里(在 MainWindow 类中)我定义了一个属性
public static Double MytValue
{
get { return myValue; }
}
在 MainWindow 类的结构中,我有一个 TextBox。我需要将它绑定到 MytValue 属性。在 XAML 中我写:
<TextBox Name="tbxMyValue" Grid.Row="1" Grid.Column="2" TextAlignment="Center"
Text="{Binding Path=MyValue}" Width="Auto" Margin="10,0,10,15" IsEnabled="True" />
但它没有效果。当 myValue 变量有值时,我在 TextBox 中什么也看不到。为什么?请帮我。