我Label
在 XAML 中有一个。如果我在 XAML 端设置内容,它将显示。但是当我尝试在后面的代码中设置内容时,它不会显示为:
我的代码:
if (Application.Current.Resources["Values"] != null)
{
string score = Application.Current.Resources["Values"].ToString();
labelscore.Content = score;
}
我检查了资源的价值,价值在那里,但我无法显示它。
我的 XAML 方面:
<Label Height="30" Width="100" Name="labelscore" FontWeight="Bold" FontSize="15" />