你的位置:首页 > 软件开发 > ASP.net > 记录一些WPF常用样式方便以后复用

记录一些WPF常用样式方便以后复用

发布时间:2016-08-12 12:02:43
TextBox文本框 <Style x:Key="TextBoxStyle1" BasedOn="{x:Null}" TargetType="{x:Type TextBox}"> < ...

TextBox文本框

记录一些WPF常用样式方便以后复用记录一些WPF常用样式方便以后复用

 

<Style x:Key="TextBoxStyle1" BasedOn="{x:Null}" TargetType="{x:Type TextBox}">      <Setter Property="Foreground" Value="{DynamicResource {x:Static SystemColors.ControlTextBrushKey}}"/>      <Setter Property="Background" Value="{DynamicResource {x:Static SystemColors.WindowBrushKey}}"/>      <Setter Property="BorderBrush" Value="{StaticResource TextBoxBorder}"/>      <Setter Property="BorderThickness" Value="1"/>      <Setter Property="Padding" Value="1"/>      <Setter Property="AllowDrop" Value="true"/>      <Setter Property="FocusVisualStyle" Value="{x:Null}"/>      <Setter Property="ScrollViewer.PanningMode" Value="VerticalFirst"/>      <Setter Property="Stylus.IsFlicksEnabled" Value="False"/>      <Setter Property="Template">        <Setter.Value>          <ControlTemplate TargetType="{x:Type TextBox}">            <Border x:Name="Bd" SnapsToDevicePixels="true" BorderBrush="#FFDDDDDD" BorderThickness="1" ClipToBounds="False" CornerRadius="5">              <Border.Effect>                <DropShadowEffect Color="White" Direction="0" ShadowDepth="0" BlurRadius="10"/>              </Border.Effect>    <!--这个Border主要用来遮挡框内的阴影,只要外阴影,如果只要内阴影不要外阴影,那么设置border的 ClipToBounds="True" 剪切外部内容,即可实现内阴影-->              <Border Background="White" CornerRadius="5">                <ScrollViewer x:Name="PART_ContentHost" SnapsToDevicePixels="{TemplateBinding SnapsToDevicePixels}" Background="{x:Null}" BorderBrush="{x:Null}" Foreground="{x:Null}">                </ScrollViewer>              </Border>            </Border>            <ControlTemplate.Triggers>              <Trigger Property="IsMouseOver" Value="True">                <Setter Property="BorderBrush" TargetName="Bd" Value="#FF66AFE9"/>              </Trigger>              <Trigger Property="IsFocused" Value="True">                <Setter Property="Effect" TargetName="Bd">                  <Setter.Value>                    <DropShadowEffect BlurRadius="10" Color="#FFE5F2FC" Direction="0" ShadowDepth="0"/>                  </Setter.Value>                </Setter>                <Setter Property="BorderBrush" TargetName="Bd" Value="#FF66AFE9"/>              </Trigger>            </ControlTemplate.Triggers>          </ControlTemplate>        </Setter.Value>      </Setter>    </Style>  <TextBox Text="四川"  Grid.Column="1" Grid.Row="2" BorderBrush="{x:Null}" Background="{x:Null}" SelectionBrush="#FFE237EA" HorizontalAlignment="Left" VerticalAlignment="Center" VerticalContentAlignment="Center" Style="{DynamicResource TextBoxStyle1}" Height="34" Width="230" Margin="4,5,0,5" />

原标题:记录一些WPF常用样式方便以后复用

关键词:wpf

wpf
*特别声明:以上内容来自于网络收集,著作权属原作者所有,如有侵权,请联系我们: admin#shaoqun.com (#换成@)。