vue-java-tutorials/CSharp/WPFTutorial/WPF-20-ReusableStyleResources/Style/TextBoxStyle.xaml

9 lines
433 B
Plaintext
Raw Normal View History

2025-06-22 20:21:42 +08:00
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
<Style TargetType="TextBox">
<Setter Property="Width" Value="200" />
<Setter Property="Height" Value="40" />
<Setter Property="FontSize" Value="20" />
<Setter Property="FontWeight" Value="Light" />
</Style>
</ResourceDictionary>