颜色:
XAML中,<Label Content="国庆节" Background="Aqua" Foreground="Blue"/>
textBox2.Foreground = new SolidColorBrush(Colors.DarkGreen);
textBox2.Foreground = SystemColors.ControlDarkBrush;
textBox2.Foreground = new SolidColorBrush(Color.FromRgb(231, 42, 11));
textBox2.Background = new SolidColorBrush(Colors.DarkGreen);
textBox2.Background = SystemColors.ControlDarkBrush;
textBox2.Background = new SolidColorBrush(Color.FromRgb(231, 42, 11));
字体:
字体大小 FontSize
字体粗细FontWeight
字体风格FontStyle(斜体……)
字体拉伸FontStreach
字型FontFamily
这是office中我们经常用到的宋体、楷体……等等,可引用ttf文件
使用方式:
1.添加ttf格式的文件到项目中
2.在XAML中某一个控件的文本FontFamily中设置如下:./# + ttf文件的名字
测试:
<Label Content="国庆节" Background="Aqua" Foreground="Blue" HorizontalAlignment="Center"
FontSize="38"
FontWeight="DemiBold"
FontStyle="Oblique"
FontStretch="Medium"
FontFamily="./#仿宋_GB2312"/>
WPF中文字颜色字体设置
最新推荐文章于 2025-02-27 16:42:25 发布