WPF入门教程系列九——布局之DockPanel与ViewBox(四)

七. DockPanel

DockPanel定义一个区域,在此区域中,您可以使子元素通过描点的形式排列,这些对象位于 Children 属性中。停靠面板其实就是在WinForm类似于Dock属性的元素。DockPanel会对每个子元素进行排序,并停靠在面板的一侧,多个停靠在同侧的元素则按顺序排序。

如果将 LastChildFill 属性设置为 true(默认设置),那么无论对 DockPanel 的最后一个子元素设置的其他任何停靠值如何,该子元素都将始终填满剩余的空间。若要将子元素停靠在另一个方向,必须将 LastChildFill 属性设置为 false,还必须为最后一个子元素指定显式停靠方向。

默认情况下,面板元素并不接收焦点。要强制使面板元素接收焦点,请将 Focusable 属性设置为 true。

注意:屏幕上 DockPanel 的子元素的位置由相关子元素的 Dock 属性以及这些子元素在 DockPanel 下的相对顺序确定。因此,具有相同 Dock 属性值的一组子元素在屏幕上的位置可能不同,具体取决于这些子元素在 DockPanel 下的顺序。子元素的顺序会影响定位,因为 DockPanel 会按顺序迭代其子元素,并根据剩余空间来设置每个子元素的位置。

  1. <Window x:Class="项目6.MainWindow"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  5. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  6. xmlns:local="clr-namespace:项目6"
  7. mc:Ignorable="d"
  8. Title="MainWindow" Height="450" Width="750">
  9. <Grid>
  10. <DockPanel LastChildFill="False">
  11. <Button DockPanel.Dock="Left" Content="1"/>
  12. <Button DockPanel.Dock="Top" Content="2"/>
  13. <Button DockPanel.Dock="Right" Content="3"/>
  14. <Button DockPanel.Dock="Bottom" Content="4"/>
  15. <Button HorizontalAlignment="Left" VerticalAlignment="Center"
  16. Height="25" Width="80" Content="后台代码添加" Click="Button_Click"/>
  17. </DockPanel>
  18. </Grid>
  19. </Window>

使用XAML代码实现如下图效果。

WPF入门教程系列九——布局之DockPanel与ViewBox(四) - 图1

使用C#代码实现如下图效果。

  1. private void Button_Click(object sender, RoutedEventArgs e)
  2. {
  3. DockPanel dp=new DockPanel();
  4. dp.Width=Double.NaN;
  5. dp.Height=Double.NaN;
  6. Content = dp;
  7. Rectangle rTop=new Rectangle();
  8. rTop.Fill=new SolidColorBrush(Colors.BlanchedAlmond);
  9. rTop.Stroke=new SolidColorBrush(Colors.BlanchedAlmond);
  10. rTop.Height = 30;
  11. dp.Children.Add(rTop);
  12. rTop.SetValue(DockPanel.DockProperty,Dock.Top);
  13. Rectangle rLeft=new Rectangle();
  14. rLeft.Fill=new SolidColorBrush(Colors.Gray);
  15. rLeft.Stroke=new SolidColorBrush(Colors.Gray);
  16. rLeft.HorizontalAlignment = HorizontalAlignment.Left;
  17. rLeft.Height = 30;
  18. rLeft.Width = 30;
  19. dp.Children.Add(rLeft);
  20. rLeft.SetValue(DockPanel.DockProperty,Dock.Left);
  21. Rectangle rBottom=new Rectangle();
  22. rBottom.Fill=new SolidColorBrush(Colors.Red);
  23. rBottom.Stroke=new SolidColorBrush(Colors.Red);
  24. rBottom.VerticalAlignment = VerticalAlignment.Bottom;
  25. rBottom.Height = 30;
  26. dp.Children.Add(rBottom);
  27. rBottom.SetValue(DockPanel.DockProperty,Dock.Bottom);
  28. }

WPF入门教程系列九——布局之DockPanel与ViewBox(四) - 图2

八. ViewBox

ViewBox这个控件通常和其他控件结合起来使用,是WPF中非常有用的控件。定义一个内容容器。ViewBox组件的作用是拉伸或延展位于其中的组件,以填满可用空间,使之有更好的布局及视觉效果。

一个 Viewbox中只能放一个控件。如果多添加了一个控件就会报错。如下图。

WPF入门教程系列九——布局之DockPanel与ViewBox(四) - 图3

组件常用属性:

Child:获取或设置一个ViewBox元素的单一子元素。

Stretch:获取或设置拉伸模式以决定该组件中的内容以怎样的形式填充该组件的已有空间。具体设置值如下:

成员名称 说明
None 内容保持其原始大小。
Fill 调整内容的大小以填充目标尺寸。 不保留纵横比。
Uniform 在保留内容原有纵横比的同时调整内容的大小,以适合目标尺寸。
UniformToFill 在保留内容原有纵横比的同时调整内容的大小,以填充目标尺寸。 如果目标矩形的纵横比不同于源矩形的纵横比,则对源内容进行剪裁以适合目标尺寸。

StretchDirection:获取或设置该组件的拉伸方向以决定该组件中的内容将以何种形式被延展。具体的设置值如下。

成员名称 说明
UpOnly 仅当内容小于父项时,它才会放大。 如果内容大于父项,不会执行任何缩小操作。
DownOnly 仅当内容大于父项时,它才会缩小。 如果内容小于父项,不会执行任何放大操作。
Both 内容根据 Stretch 属性进行拉伸以适合父项的大小。

接下来我们做个示例,你可以通过选择下拉框中的不同设置值,来查看不同的效果。效果如下图。

  1. <Grid>
  2. <Grid.RowDefinitions>
  3. <RowDefinition Height="250"/>
  4. <RowDefinition Height="Auto"/>
  5. <RowDefinition Height="73"/>
  6. </Grid.RowDefinitions>
  7. <Viewbox Stretch="Fill" Name="viewBoxTest">
  8. <TextBox>通过调查发现被阿里打假驱逐的30家售假商家中,</TextBox>
  9. </Viewbox>
  10. <WrapPanel Grid.Row="2">
  11. <StackPanel>
  12. <TextBlock Height="16" HorizontalAlignment="Left" VerticalAlignment="Bottom"
  13. Width="66" Text="拉伸模式:" TextWrapping="Wrap"/>
  14. <ComboBox Name="cbStretch" Height="21" HorizontalAlignment="Left"
  15. ItemsSource="{Binding ElementName=viewBoxTest,Path=Stretch}"
  16. VerticalAlignment="Bottom" Width="139" SelectionChanged="CbStretch_SelectionChanged"/>
  17. </StackPanel>
  18. <StackPanel>
  19. <TextBlock Height="16" HorizontalAlignment="Right" VerticalAlignment="Bottom"
  20. Width="56" Text="拉伸反向:" TextWrapping="Wrap"/>
  21. <ComboBox Name="cbStretchDirection" Height="21" HorizontalAlignment="Right"
  22. ItemsSource="{Binding ElementName=viewBoxTest,Path=StretchDirection}"
  23. VerticalAlignment="Bottom" Width="139" SelectionChanged="CbStretchDirection_SelectionChanged"></ComboBox>
  24. </StackPanel>
  25. </WrapPanel>
  26. </Grid>

WPF入门教程系列九——布局之DockPanel与ViewBox(四) - 图4

c#代码实现:

  1. using System.Collections.Generic;
  2. using System.Windows;
  3. using System.Windows.Controls;
  4. using System.Windows.Media;
  5. namespace 项目6 {
  6. /// <summary>
  7. /// MainWindow.xaml 的交互逻辑
  8. /// </summary>
  9. public partial class MainWindow : Window {
  10. public MainWindow()
  11. {
  12. InitializeComponent();
  13. }
  14. List<StretchHelper> cbStretchList = new List<StretchHelper>();
  15. List<StrethDirectionHelper> cbStretchDirectionList = new List<StrethDirectionHelper>();
  16. private void BindDrp()
  17. {
  18. cbStretchList.Add(new StretchHelper() { StretchModeName = "Fill", TheStretchMode = Stretch.Fill });
  19. cbStretchList.Add(new StretchHelper() { StretchModeName = "None", TheStretchMode = Stretch.None });
  20. cbStretchList.Add(new StretchHelper() { StretchModeName = "Uniform", TheStretchMode = Stretch.Uniform });
  21. cbStretchList.Add(new StretchHelper() { StretchModeName = "UniformToFill", TheStretchMode = Stretch.UniformToFill });
  22. cbStretch.ItemsSource = cbStretchList;
  23. cbStretch.DisplayMemberPath = "StretchModeName";
  24. cbStretchDirectionList.Add(new StrethDirectionHelper() { StretchDirectionName = "DownOnly", TheStrectDirection = StretchDirection.DownOnly });
  25. cbStretchDirectionList.Add(new StrethDirectionHelper() { StretchDirectionName = "UpOnly", TheStrectDirection = StretchDirection.UpOnly });
  26. cbStretchDirectionList.Add(new StrethDirectionHelper() { StretchDirectionName = "Both", TheStrectDirection = StretchDirection.Both });
  27. cbStretchDirection.ItemsSource = cbStretchDirectionList;
  28. cbStretchDirection.DisplayMemberPath = "StretchDirectionName";
  29. }
  30. private void CbStretch_SelectionChanged(object sender, SelectionChangedEventArgs e)
  31. {
  32. viewBoxTest.Stretch = (cbStretch.SelectedItem as StretchHelper).TheStretchMode;
  33. }
  34. private void CbStretchDirection_SelectionChanged(object sender, SelectionChangedEventArgs e)
  35. {
  36. viewBoxTest.StretchDirection = (cbStretchDirection.SelectedItem as StrethDirectionHelper).TheStrectDirection;
  37. }
  38. public class StretchHelper
  39. {
  40. public string StretchModeName { get; set; }
  41. public Stretch TheStretchMode { get; set; }
  42. }
  43. public class StrethDirectionHelper
  44. {
  45. public string StretchDirectionName { get; set; }
  46. public StretchDirection TheStrectDirection { get; set; }
  47. }
  48. private void Window_Loaded(object sender, RoutedEventArgs e)
  49. {
  50. BindDrp();
  51. }
  52. }
  53. }

WPF入门教程系列九——布局之DockPanel与ViewBox(四) - 图5