zoukankan      html  css  js  c++  java
  • wpf学习笔记DockPanel

          DockPanel为容器控件.主要了解其Dock属性和LastChildFill属性的使用

    下面以代码示例

    1.
    <DockPanel LastChildFill="True">
        
    <Button DockPanel.Dock="Top">Top</Button>
        
    <Button DockPanel.Dock="Bottom">Bottom</Button>
        
    <Button DockPanel.Dock="Left">Left</Button>
        
    <Button DockPanel.Dock="Right">Right</Button>
        
    <Button>Fill</Button>
    </DockPanel>




    2.调整顺序后的变化

    <DockPanel LastChildFill="True">
        
    <Button DockPanel.Dock="Left">Left</Button>
        
    <Button DockPanel.Dock="Right">Right</Button>
        
    <Button DockPanel.Dock="Top">Top</Button>
        
    <Button DockPanel.Dock="Bottom">Bottom</Button>
        
    <Button>Fill</Button>
    </DockPanel>



    3.当LastChildFill属性为Flase时的变化

      <DockPanel LastChildFill="False">
        
    <Button DockPanel.Dock="Left">Left</Button>
        
    <Button DockPanel.Dock="Right">Right</Button>
        
    <Button DockPanel.Dock="Top">Top</Button>
        
    <Button DockPanel.Dock="Bottom">Bottom</Button>
        
    <Button>Fill</Button>
      
    </DockPanel>



    结束
  • 相关阅读:
    redis的数据类型与应用场景(二)
    redis的安装与配置(一)
    Spring Security教程 ---- 验证码功能的实现
    Java类文件结构
    实体字符
    前端安全之XSS攻击
    $_SERVER[]数组解析
    php主要用于哪几方面
    集群与分布式概念
    python操作mongodb实例
  • 原文地址:https://www.cnblogs.com/Clingingboy/p/663298.html
Copyright © 2011-2022 走看看