最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

WPF使用DockPanel??棵姘宀季?/h1>
 更新時間:2022年02月25日 10:39:33   作者:.NET開發(fā)菜鳥  
這篇文章介紹了WPF使用DockPanel停靠面板布局的方法,文中通過示例代碼介紹的非常詳細。對大家的學習或工作具有一定的參考借鑒價值,需要的朋友可以參考下

DockPanel:??棵姘?/h2>

DockPanel定義一個區(qū)域,在此區(qū)域中,您可以使子元素通過描點的形式排列,這些對象位于 Children 屬性中。??棵姘孱愃朴赪inForm中控件的Dock屬性。DockPanel會對每個子元素進行排序,并將根據(jù)指定的邊進行??浚鄠€??吭谕瑐鹊脑貏t按順序排序。在DockPanel中,指定??窟叺目丶?,會根據(jù)定義的順序占領邊角,所有控件絕不會交疊。

默認情況下,后添加的元素只能使用剩余空間,無論對DockPanel的最后一個子元素設置任何??恐担撟釉囟紝⑹冀K填滿剩余的空間。如果不希望最后一個元素填充剩余區(qū)域,可以將DockPanel屬性LastChildFill設置為false,還必須為最后一個子元素顯式指定??糠较颉?/p>

1、填充整個剩余空間

使用XAML代碼實現(xiàn):

<Window x:Class="WpfDemo.MainWindow"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        Title="DockPanel面板" Height="237" Width="525" WindowStartupLocation="CenterScreen">
    <DockPanel>
        <Button DockPanel.Dock="Left" Content="ButtonLeft"></Button>
        <Button DockPanel.Dock="Top" Content="ButtonTop"></Button>
        <Button DockPanel.Dock="Right" Content="ButtonRight"></Button>
        <Button DockPanel.Dock="Bottom" Content="ButtonBottom"></Button>
        <Button  Content="ButtonTop"></Button>
    </DockPanel>
</Window>

2、最后元素不填充剩余空間

使用XAML代碼實現(xiàn):

<Window x:Class="WpfDemo.MainWindow"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        Title="DockPanel面板" Height="237" Width="525" WindowStartupLocation="CenterScreen">
    <DockPanel LastChildFill="False">
        <Button DockPanel.Dock="Left" Content="ButtonLeft"></Button>
        <Button DockPanel.Dock="Top" Content="ButtonTop"></Button>
        <Button DockPanel.Dock="Right" Content="ButtonRight"></Button>
        <Button DockPanel.Dock="Bottom" Content="ButtonBottom"></Button>
        <Button  DockPanel.Dock="Top" Content="最后一個Button不填充剩余空間"></Button>
    </DockPanel>
</Window>

到此這篇關于WPF使用DockPanel??棵姘宀季值奈恼戮徒榻B到這了。希望對大家的學習有所幫助,也希望大家多多支持腳本之家。

相關文章

最新評論

仪征市| 赞皇县| 广汉市| 周宁县| 浦县| 大安市| 抚宁县| 三原县| 大邑县| 宁海县| 德安县| 沾化县| 永顺县| 桦甸市| 潜山县| 林州市| 望都县| 赤城县| 宜兰县| 同仁县| 嘉义市| 界首市| 台安县| 治多县| 阿城市| 宝坻区| 太白县| 中西区| 芦山县| 斗六市| 什邡市| 陇南市| 开平市| 苏州市| 宽城| 兰溪市| 芷江| 太原市| 邳州市| 凤庆县| 武义县|