gpt4 book ai didi

c# - FontWeight 属性不起作用 [Windows Phone 8.1 运行时]

转载 作者:行者123 更新时间:2023-11-30 14:54:59 25 4
gpt4 key购买 nike

这个案例真的很简单:TextBlock 的 FontWeight 属性在 Universal Store App 中不起作用。我创建了示例项目(通用应用程序),并在 WindowPhone 的 MainPage 中添加了 TextBlock 样式如下:

<TextBlock HorizontalAlignment="Center"
VerticalAlignment="Center"
FontSize=20
FontWeight="Thin"
Text="Test text should be thin in runtime." />

在设计器中一切看起来都很好,但是当我在模拟器/设备上部署应用程序时,测试文本没有变细!这是正常的。查看屏幕截图:

SS from VS2013

如您所见,在设计器中,文本非常细(很漂亮!)。但是在运行模拟器中文本的重量是正常的。为什么?我该如何解决?在此先感谢您的帮助。

最佳答案

它在 WP8.0 Silverlight 中运行良好,但在 WP8.1 运行时,您需要应用 <Style>对它也是如此。像这样


<Grid x:Name="ContentPanel">
<StackPanel>
<TextBlock HorizontalAlignment="Left" VerticalAlignment="Center" FontSize="20" Text="Test text should be normal in runtime."/>

<!-- apply the a style like BodyTextBlockStyle -->
<TextBlock HorizontalAlignment="Left" VerticalAlignment="Center" FontSize="20"
Text="Test text should be thin in runtime."
FontWeight="Thin" Style="{StaticResource BodyTextBlockStyle}"/>
</StackPanel>
</Grid>

enter image description here

关于c# - FontWeight 属性不起作用 [Windows Phone 8.1 运行时],我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26530579/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com