0

我无法让我的 UserControl 正确填充/调整父窗口的大小。我正在使用 MVVM 编写 WPF 应用程序。我已经搜索了其他答案,但我无法弄清楚这一点。

主窗口.xaml

<Window x:Class="QiXR.MainWindow"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:vm="clr-namespace:QiXR.ViewModel"
    xmlns:vw="clr-namespace:QiXR.View"
    Title="MainWindow">
<Window.Resources>
    <DataTemplate DataType="{x:Type vm:XRTestCaseListViewModel}">
        <vw:XRTestCaseListView/>
    </DataTemplate>

</Window.Resources>
<Grid>
    <ItemsControl ItemsSource="{Binding ViewModels}" />
</Grid>

用户控制

<UserControl x:Class="QiXR.View.XRTestCaseListView"
         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"
         VerticalAlignment="Stretch" HorizontalAlignment="Stretch" HorizontalContentAlignment="Stretch" VerticalContentAlignment="Stretch">
<UserControl.Resources>
    <Style x:Key="DataGridCheckBoxStyle" TargetType="CheckBox" BasedOn="{StaticResource {x:Type CheckBox}}">
        <Setter Property="VerticalAlignment" Value="Center"/>
        <Setter Property="HorizontalAlignment" Value="Center"/>
    </Style>
</UserControl.Resources>

<Grid VerticalAlignment="Stretch" HorizontalAlignment="Stretch">
    <Grid.ColumnDefinitions>
        <ColumnDefinition Width="160"/>
        <ColumnDefinition Width="160"/>
        <ColumnDefinition Width="*"/>
    </Grid.ColumnDefinitions>
    <Grid.RowDefinitions>
        <RowDefinition Height="30"/>
        <RowDefinition Height="*"/>
        <RowDefinition Height="45"/>
    </Grid.RowDefinitions>

这是我在 MainWindow 中启动 UserControl时显示的样子

是否可以在 UserControl 或 MainWindow 的 xaml 中执行此操作?谢谢

4

2 回答 2

0

ItemsControl默认使用 a来StackPanel显示数据,并将StackPanel其大小限制为其子项的大小。

如果您的收藏中只有一项,请尝试将其切换ItemsPanelTemplate为类似 a的内容:DockPanelViewModels

<ItemsControl ItemsSource="{Binding ViewModels}">
    <!-- ItemsPanelTemplate -->
    <ItemsControl.ItemsPanel>
        <ItemsPanelTemplate>
            <DockPanel />
        </ItemsPanelTemplate>
    </ItemsControl.ItemsPanel>
</ItemsControl>

如果您计划拥有多个项目,您还必须设置ItemContainerStyle属性,也许使用转换器,所以最后一个项目是. 或者切换到使用不同的面板类型,该面板类型也可以拉伸以填充所有可用空间,并允许其子项也可以拉伸。DockPanel.Dock="Top"DockPanel.Dock="Fill"

也就是说,如果您只显示一个项目,我建议切换到使用 aContentControl而不是 an 。ItemsControl

<ContentControl Content="{Binding MyViewModel}" />
于 2016-03-16T17:27:07.800 回答
-1

如果您希望窗口与内容(包括 ItemsControl 下方的菜单和按钮)的大小相同,并且可以选择在有更多内容时使窗口变大,您可以设置 SizeToContent 属性:

<Window x:Class="Project.Window"
    x:Name="userControl"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    Width="400" MaxHeight="700"
    SizeToContent="Height" WindowStartupLocation="CenterScreen">

</Window>

窗口将增加高度以适应其内容。在那里,您还可以设置 MaxHeight 属性,这样如果 ItemsControl 中有很多项目,窗口就不会变得太大。

于 2016-03-17T21:00:01.670 回答