<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
<Thickness x:Key="Margin_control">5</Thickness>
<Style TargetType="Button" x:Key="ButtonStyle_normal">
<Setter Property="Height" Value="30"/>
<Setter Property="Margin" Value="3"/>
<Setter Property="Padding" Value="20,3"/>
</Style>
<Style TargetType="TextBlock" x:Key="TextBlockStyle_title">
<Setter Property="Margin" Value="3" />
</Style>
<Style TargetType="TextBox" x:Key="TextBoxStyle_input">
<Setter Property="MinWidth" Value="100"/>
<Setter Property="Height" Value="23" />
<Setter Property="Margin" Value="3" />
</Style>
</ResourceDictionary>
-
潘栩锋 authored08549d34