WPF 中的停靠和定位
本文关键字:定位 停靠 WPF | 更新日期: 2023-09-27 18:33:59
我来自WinForms背景,开始学习WPF。 我已经在 Pluralsight 上浏览了一组教程,但在处理大小调整时遇到了一些困难。
调整大小时,我的文本框似乎没有以我想要的方式"锚定"。 我在下面包括 xaml,其中包含有关我正在寻找的行为的注释。 如有任何关于最佳做法的反馈,将不胜感激。 代码对我来说只是"感觉"有点尴尬,但我不确定这是否是因为它对我来说只是新的,或者是否有更简单/更好的方法来做我正在尝试的事情。
若要了解事物的外观,而无需加载下面的 XAML - 下面是调整窗体屏幕截图大小之前和之后的内容。调整大小之前 http://dboasis.com/screenshots/beforeresize.jpg调整大小后 http://dboasis.com/screenshots/afterresize.jpg
我希望在看到我如何在 XAML 中尝试这样做后,提供如何处理调整大小问题以及最佳实践的建议。
另外 - xaml 确实实现了 DevExpress 控件 - 如果有人希望我重做表单而不使用 3rd 方控件,以便他们更轻松地提出建议,我很乐意这样做。
<dx:DXWindow
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:dx="http://schemas.devexpress.com/winfx/2008/xaml/core"
xmlns:dxb="http://schemas.devexpress.com/winfx/2008/xaml/bars"
xmlns:dxg="http://schemas.devexpress.com/winfx/2008/xaml/grid" xmlns:dxe="http://schemas.devexpress.com/winfx/2008/xaml/editors" x:Class="DXTemplateSandbox.MainWindow"
Title="MainWindow" Height="437" Width="641">
<Grid>
<dx:DXTabControl x:Name="tabcntMainTab">
<dx:DXTabItem x:Name="tabUserList" Header="User List">
<Grid Background="Transparent">
<Grid.RowDefinitions>
<RowDefinition x:Name="SelectLabel" Height="30" />
<RowDefinition x:Name="OpenDataFile" Height="34" />
<RowDefinition x:Name="DataGridLayoutRow" Height="185*" />
<RowDefinition x:Name="AppPrefsInfo" Height="110" />
</Grid.RowDefinitions>
<StackPanel Grid.Row="1" Orientation="Horizontal" Margin="10,0">
<!--
The DataFileLocation not resizing the width. How do I instead lock the vertical size, but allow width to
resize with form?
-->
<TextBox Name="DataFileLocation" Width="419" Margin="0,5" HorizontalAlignment="Stretch" />
<!--
How do I get the SelectData button stay immediately to the right of the DatFileLocation textbox when resizing?
-->
<Button Name="SelectData" Content="..." Width="40" Margin="5" Click="SelectData_Click"/>
<DockPanel>
<!-- I would like the "Go" button to stay anchored to the right when resizing. -->
<Button x:Name="GoButton"
Content="Go"
Width="66"
DockPanel.Dock="Right"
HorizontalAlignment="Right"
VerticalAlignment="Top"
Margin="50,5,5,5"
Click="GoButton_Click" />
</DockPanel>
</StackPanel>
<!--
-->
<dxg:GridControl Grid.Row="2" Margin="5" >
<dxg:GridControl.View>
<dxg:TableView ShowGroupPanel="False"/>
</dxg:GridControl.View>
</dxg:GridControl>
<Label Content="Select Data File" HorizontalAlignment="Left" Margin="5,5,0,0" VerticalAlignment="Top" Height="26" Grid.RowSpan="2" Width="91"/>
<!--
Is using a grid inside a parent grid cell the best way of doing this? I'm using stackpanels in each of the rows in the
child grid. Is there a better way of doing this?
-->
<Grid x:Name="AppPrefsGrid" Grid.Row="3" >
<Grid.RowDefinitions>
<RowDefinition/>
<RowDefinition/>
<RowDefinition/>
</Grid.RowDefinitions>
<!--
Ideally I would like the text boxes to grow and shrink at the same rate as form is resized, and leave the labels the same width. I don't know
if this is practical however.
-->
<StackPanel Grid.Row="0" Orientation="Horizontal">
<Label Content="Registration Name:" Width="112" Margin="5"/>
<TextBox Name="RegNameTextBox" Width="175" Margin="5" IsEnabled="False"/>
<Label Content="Install Date:" Width="84" Margin="10,5,5,5"/>
<TextBox Name="InstallDateTextBox" Width="175" Margin="5" IsEnabled="False"/>
</StackPanel>
<StackPanel Grid.Row="1" Orientation="Horizontal">
<Label Content="Registration Number:" Width="112" Margin="5"/>
<TextBox Name="RegNumberTextBox" Width="175" Margin="5" IsEnabled="False"/>
<Label Content="Data File Version:" Width="84" Margin="10,5,5,5"/>
<TextBox Name="DataVersionTextBox" Width="175" Margin="5" IsEnabled="False"/>
</StackPanel>
<StackPanel Grid.Row="2" Orientation="Horizontal">
<Label Content="Edition Code:" Width="112" Margin="5"/>
<TextBox Name="EditionCodeTextBox" Width="175" Margin="5" IsEnabled="False"/>
<Label Content="User Count:" Width="84" Margin="10,5,5,5"/>
<TextBox Name="UserCountTextBox" Width="175" Margin="5" IsEnabled="False"/>
</StackPanel>
</Grid>
</Grid>
</dx:DXTabItem>
<dx:DXTabItem x:Name="tabKeyGen" Header="Key Generator"/>
</dx:DXTabControl>
</Grid>
您在这里遇到了多个问题,这些问题似乎是因为您没有为控件使用正确的布局面板。
默认情况下,控件的大小基于父控件的行为。
例如,放置在Grid
内的项将拉伸以填充网格单元中提供给它们的所有可用空间。如果网格行/列定义的"高度/宽度"设置为"Auto
"则意味着它将以控件所需的任何大小绘制控件。如果将其设置为固定大小(如 100
(,则它将以该大小绘制控件。如果将其设置为*
大小,它将使用剩余空间的百分比绘制控件。
此行为可以由控件本身的属性(如 HorizontalAlignment
和 VerticalAlignment
(或设置属性(如 Height
、Width
和 Margin
(重写。
因此,要解决一些特定问题,请首先删除托管标签/文本框组合的堆栈面板,并将它们替换为适当的 3x4 Grid
。将标签放在第 0 列和第 2 列中,并为其ColumnDefinition
指定固定大小。将文本框放在第 1 列和第 3 列中,并将它们保留为*
大小。请记住,*
大小是一个百分比,因此一列中的 2* 和另一列中的 3* 意味着有可用的总数5*
,第 1 列将占用空间的 2/5,而列 2 将占用空间的 3/5。
若要使DataFileLocation
在窗体大小调整时调整大小,只需删除 Width
属性,并让它大小调整为网格单元格的任何大小。
若要使SelectData
按钮保持停靠在SelectData
文本框的右侧,请将两者放在一个DockPanel
中。将按钮停靠在右侧,并允许文本框填充所有剩余空间。如果您希望 Tab 键按预期循环浏览它们,则必须设置 TabIndex。
<DockPanel>
<Button DockPanel.Dock="Right" ... />
<TextBox ... />
</DockPanel>
从这个开始,看看它的外观。父网格的 RowDefinition 看起来正确(除了第 3 行高度应"*"
而不是"184*"
(,这应该意味着 DevExpress 控件应拉伸/收缩以填充所有剩余的垂直空间。