WPF(x:Null 使用)

来源:互联网 发布:淘宝开店消保 编辑:程序博客网 时间:2024/05/29 19:51
<Window x:Class="TestOfNull.MainWindow"        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"        Title="x:Null Sample" Height="350" Width="525">    <Window.Resources>        <Style x:Key="{x:Type Button}" TargetType="{x:Type Button}" >            <Setter Property="Width" Value="60" />            <Setter Property="Height" Value="36" />            <Setter Property="Margin" Value="5" />        </Style>    </Window.Resources>        <StackPanel >        <Button Content="OK" />        <Button Content="OK" />        <Button Content="OK" />        <Button Content="OK" Style="{x:Null}" />    </StackPanel></Window>


原创粉丝点击