TextBoxStyle.xaml 704 B

1234567891011121314
  1. <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  2. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  3. <Style x:Key="style.clear" TargetType="{x:Type Button}">
  4. <Setter Property="BorderThickness" Value="0"></Setter>
  5. <Setter Property="Background" Value="Transparent"></Setter>
  6. <Setter Property="Template">
  7. <Setter.Value>
  8. <ControlTemplate TargetType="Button">
  9. <ContentPresenter VerticalAlignment="Center" HorizontalAlignment="Center"></ContentPresenter>
  10. </ControlTemplate>
  11. </Setter.Value>
  12. </Setter>
  13. </Style>
  14. </ResourceDictionary>