我正在尝试将其设置为当我按下时按下Button1,文本块将更改为特定值。我如何尝试这样做是这样的:
public MainWindow()
{
InitializeComponent();
textResult.Text = currentValue.ToString();
}
private void Button_Click(object sender, RoutedEventArgs e)
{
currentValue = 1;
}
textResult是文本块。
如果我启动我的程序,它不会改变。
我做错了什么?
答案 0 :(得分:1)
public MainWindow()
{
InitializeComponent();
}
private void Button_Click(object sender, RoutedEventArgs e)
{
currentValue = 1;
textResult.Text = currentValue.ToString();
}
答案 1 :(得分:1)
您没有设置TextBox的文本属性,因此您必须执行以下操作: -
public MainWindow()
{
InitializeComponent();
}
private void Button_Click(object sender, RoutedEventArgs e)
{
currentValue = 1;
textResult.Text = currentValue.ToString();
}