我希望在调整主窗口时调整自定义控件的大小调整行为,即使我明确地设置了宽度和高度。我怎么能这样做?
这里只是简单的代码。像这样我的自定义控件。
<Border Background="Red" Width="300" Height="300" HorizontalAlignment="Stretch" VerticalAlignment="Stretch" CornerRadius="15"/>
任何人请向我提出你的建议。
答案 0 :(得分:0)
根本不要明确地给予此控件任何高度和宽度。并将其放置在具有RowDefinition的窗口网格中,其中* Height和ColumnDefinition具有* Width。
<强>用户控件强>
<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>
的 Window.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>
我希望这会有所帮助。
答案 1 :(得分:0)
您可以从代码中在运行时影响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;
}