mrfangzheng

Hope and fear are useless. Be confident, and always be prepared for the worst.
  首页  :: 新随笔  :: 联系 :: 管理

WPF - Style的例子

Posted on 2008-11-18 10:01  mrfangzheng  阅读(203)  评论(0编辑  收藏  举报
<Window.Resources>
    <Style TargetType="CheckBox">
      <Setter Property="Height" Value="20"/>
      <Setter Property="Width" Value="50"/>
      <EventSetter Event="Checked" Handler="Checked_Click"/>
      <Setter Property="VerticalAlignment" Value="Center"/> 
    </Style>    
</Window.Resources>
 
继承
<Style BasedOn="{StaticResource {x:Type CheckBox}}"
           TargetType="CheckBox"
           x:Key="WiderCheckBox">
      <Setter Property="Width" Value="70"/>
</Style>
 
使用

<CheckBox Style="{StaticResource WiderCheckBox}">Win</CheckBox>