x:Null

来源:互联网 发布:淘宝镜子 编辑:程序博客网 时间:2024/05/30 23:09
<Window x:Class="WpfApplication1.MainWindow"        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"        Title="Null Sample" Height="300" Width="300">    <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>

阅读全文
1 0
原创粉丝点击