zoukankan      html  css  js  c++  java
  • WPF(x:Null 使用)

    1. <Window x:Class="TestOfNull.MainWindow"  
    2.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"  
    3.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"  
    4.         Title="x:Null Sample" Height="350" Width="525">  
    5.     <Window.Resources>  
    6.         <Style x:Key="{x:Type Button}" TargetType="{x:Type Button}" >  
    7.             <Setter Property="Width" Value="60" />  
    8.             <Setter Property="Height" Value="36" />  
    9.             <Setter Property="Margin" Value="5" />  
    10.         </Style>  
    11.     </Window.Resources>  
    12.       
    13.     <StackPanel >  
    14.         <Button Content="OK" />  
    15.         <Button Content="OK" />  
    16.         <Button Content="OK" />  
    17.         <Button Content="OK" Style="{x:Null}" />  
    18.     </StackPanel>  
    19. </Window>  
  • 相关阅读:
    第一个java程序
    Java安装
    Maven安装
    Effective Java 3
    gateway + jwt 网关认证
    idea的使用
    线程池的使用
    服务注册发现Eureka
    zookeeperAPI的常用方法
    sss
  • 原文地址:https://www.cnblogs.com/lizhenlin/p/5797224.html
Copyright © 2011-2022 走看看