0

我的 xaml 代码如下所示:

<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
               xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
               xmlns:system="clr-namespace:System;assembly=mscorlib">

 <system:String x:Key="AppName">abcd</system:String>
 <system:String x:Key="btn_Login_Text">Log ind…&lt;/system:String>
 <system.....
 <system....
</ResourceDictionary>

如何将字符串 abcd 转换为斜体?

4

1 回答 1

1

那只是一个System.String,它没有任何风格。

更改FontStyleof theTextBlockTextBox您正在使用它的位置。

<TextBlock Text="{StaticResource AppName}" FontStyle="Italic"/>
于 2013-08-13T17:43:31.893 回答