我想在调整主窗口大小时为我的自定义控件提供调整大小的行为,即使我明确设置了宽度和高度。我怎样才能做到这一点?
这里只是简单的代码。像这样我的自定义控件。
<Border Background="Red" Width="300" Height="300" HorizontalAlignment="Stretch" VerticalAlignment="Stretch" CornerRadius="15"/>
任何人请向我提供您的建议。
我想在调整主窗口大小时为我的自定义控件提供调整大小的行为,即使我明确设置了宽度和高度。我怎样才能做到这一点?
这里只是简单的代码。像这样我的自定义控件。
<Border Background="Red" Width="300" Height="300" HorizontalAlignment="Stretch" VerticalAlignment="Stretch" CornerRadius="15"/>
任何人请向我提供您的建议。
简单地不要明确地给这个控件任何高度和宽度。并将其放置在具有 * 高度的 RowDefinition 和 * 宽度的 ColumnDefinition 的窗口网格中。
用户控制
<UserControl x:Class="debuggingusingreflector.UserControl1"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
>
<Grid>
<TextBox Background="Gray"/>
</Grid>
窗口.xaml
<Window x:Class="debuggingusingreflector.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:x1="clr-namespace:debuggingusingreflector"
Title="MainWindow" Height="350" Width="525">
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="Auto"/>
<RowDefinition Height="*"/>
</Grid.RowDefinitions>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="*"/>
</Grid.ColumnDefinitions>
<TextBox Height="100" Text="{Binding Name}" Background="Red"/>
<x1:UserControl1 Grid.Row="1"/>
</Grid>
我希望这将有所帮助。
您可以在运行时从代码影响Width
/属性。Height
在调整主窗体大小时执行这些操作也没有问题。样本:
XAML
<Window x:Class="WpfApplication1.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="MainWindow" Height="350" Width="525" Loaded="Window_Loaded" SizeChanged="Window_resize">
<Grid>
<Border Background="Red" Width="300" Height="300" HorizontalAlignment="Stretch" VerticalAlignment="Stretch" CornerRadius="15" Name="borderName" />
</Grid>
</Window>
CS
private void Window_resize(Object sender, SizeChangedEventArgs e)
{
borderName.Width = 0.5 * this.Width;
borderName.Height = 0.5 * this.Height;
}