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>



    结束
  • 相关阅读:
    python学习之计算机基础详解
    python学习笔记-day03
    名称空间与作用域
    函数参数的应用
    day14
    day13
    函数的基本使用
    day12
    day 09
    文件操作
  • 原文地址:https://www.cnblogs.com/Clingingboy/p/663298.html
Copyright © 2011-2022 走看看