我的WPF应用程序标签为MainWindow.xaml:
<Label Grid.Row="1" Margin="0,17,0,16" Name="lblLoadDriver" VerticalAlignment="Center" HorizontalAlignment="Left" Height="10" Width="10"></Label>
在MainWindow.xaml.cs中,按下按钮后会有代码:
lblLoadDriver.Content = ""+DriverInstance.GetType().ToString();
当我调试时,我把鼠标放在lblLoadDriver的值上浏览“base”部分,看看内容是AS-I-NEED ..我看到文字没问题,但它没有改变GUI上的文字。 /> 为什么是这样 ?我需要刷新gui还是什么?
感谢。
答案 0 :(得分:1)
也许是因为Width="10"
?
同样Height="10"
是一个奇怪的想法。