- Rongsen.Com.Cn 版权所有 2008-2010 京ICP备08007000号 京公海网安备11010802026356号 朝阳网安编号:110105199号
- 北京黑客防线网安工作室-黑客防线网安服务器维护基地为您提供专业的
服务器维护
,企业网站维护
,网站维护
服务 - (建议采用1024×768分辨率,以达到最佳视觉效果) Powered by 黑客防线网安 ©2009-2010 www.rongsen.com.cn
作者:黑客防线网安XML教程基地 来源:黑客防线网安XML教程基地 浏览次数:0 |
使用DockPanel 和 Border 进行页面布局
计划将整个windows Form使用DockPanel和Border控件分为三个区域-Top/Left/Right。下面,首先定义Grid 和 DockPanel 包容器元素。
<Window
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
Title="Welcome" Height="480" Width="690">
<Grid>
<DockPanel LastChildFill="False">
接下来是TOP 区域的Border控件定义:
<Border
DockPanel.Dock="Top"
BorderBrush="Black"
BorderThickness="1"
Height="70">
<Label
FontFamily="Verdana"
FontSize="32"
HorizontalAlignment="Center">EntLib.com – 开源ASP.NET/C# 技术论坛</Label>
</Border>
左边区域Border 控件的定义:
<Border
DockPanel.Dock="Left"
BorderBrush="Black"
BorderThickness="1"
Width="400">
<StackPanel>
<Label
FontFamily="Verdana"
FontWeight="Bold" FontSize="18"
HorizontalAlignment="Center">Left</Label>
</StackPanel>
</Border>
右边区域 Border 控件的定义:
<Border
DockPanel.Dock="Right"
BorderBrush="Black"
BorderThickness="1"
Width="290">
<Image Name="imgLogo" Margin="0, 10, 0, 0" HorizontalAlignment="Center" VerticalAlignment="Top"
Source=" http://forum.entlib.com/images/entlib.gif" Width="220" />
</Border>
最后,关闭相关的控件。
</DockPanel>
</Grid>
</Window>
我要申请本站:N点 | 黑客防线官网 | |
专业服务器维护及网站维护手工安全搭建环境,网站安全加固服务。黑客防线网安服务器维护基地招商进行中!QQ:29769479 |