18

我在设置以下 xaml 布局时遇到问题:

RowHeightAuto.xaml

<Window xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    x:Class="GridMaxHeight.RowHeightAuto"
    Title="RowHeightAuto" WindowState="Maximized">
<Grid>
    <Grid.RowDefinitions>
        <RowDefinition />
        <RowDefinition Height="Auto" MaxHeight="200" />
    </Grid.RowDefinitions>

    <StackPanel Background="LightGray" Grid.Row="0"></StackPanel>
    <DataGrid Name="DataGrid1" Grid.Row="1" />
</Grid>

DataGrid1 控件没有显示任何定义了很多列和行的滚动条。当我将 Height="Auto" 替换为 Height="*" 时,一切正常,而不是水平和垂直滚动条看起来像预期的那样。

当我直接在 DataGrid1 上声明 MaxHeight 时它也有效,但这并不是我真正想要的。

这是子控件忽略设置 Height="Auto" 时的最大高度的错误,还是我可能做错了什么?使用 ListBox/ListView 等可以重现相同的行为,也可以使用 ComponentOne、Telerik 等第三方控件...

如果这是一个错误 - 您知道解决方法或对我有其他提示吗?

这是我如何设置 DataGrid 的 ItemsSource 的代码。RowHeightAuto.xaml.cs

public partial class RowHeightAuto : Window
{
    private readonly DateTime _start;

    public RowHeightAuto()
    {
        InitializeComponent();

        DataGrid1.ItemsSource = GetTestData();

        _start = DateTime.Now;
        Dispatcher.BeginInvoke(new Action(() => MessageBox.Show((DateTime.Now - _start).TotalSeconds.ToString(CultureInfo.InvariantCulture))), DispatcherPriority.ContextIdle, null);
    }

    public static List<TestData> GetTestData()
    {
        const int maxCols = 501;
        const int maxRows = 300;

        var testDatas = new List<TestData>(maxRows);
        for (int i = 0; i < maxRows; i++)
            testDatas.Add(new TestData());

        for (int i = 0; i < maxCols; i++)
        {
            string propName = string.Format("Property{0}", AddLeadingZeros(i));

            for (int j = 0; j < maxRows; j++)
                testDatas[j][propName] = propName;
        }

        return testDatas;
    }

    private static string AddLeadingZeros(int val)
    {
        return val.ToString(CultureInfo.InvariantCulture).PadLeft(3, '0');
    }
}

public class TestData
{
    public object this[string propertyName]
    {
        get
        {
            var myType = GetType();
            var myPropInfo = myType.GetProperty(propertyName);
            return myPropInfo.GetValue(this);
        }
        set
        {
            var myType = GetType();
            var myPropInfo = myType.GetProperty(propertyName);
            myPropInfo.SetValue(this, value, null);

        }
    }

    public string Property000 { get; set; }
    public string Property001 { get; set; }
    public string Property002 { get; set; }
    public string Property003 { get; set; }
    ...
    public string Property498 { get; set; }
    public string Property499 { get; set; }
    public string Property500 { get; set; }

}
4

1 回答 1

11

这正是你所说的。

您看不到Scrollbar' 的原因是,即使GridClip 是DataGrid,它也只是一个 Clip,如果允许显示它的所有子项,它的高度就是它ActualHeightDataGrid因此,您看不到它的滚动条。ActualHeight如此,因为它可以Height="Auto"Grid. 我个人不会将此称为错误的原因是因为如果您想使用某些动画的ClipToBounds属性,您可能希望这种行为,这就是您想要的行为。Grid考虑到这一点,我实际上认为我也将其称为“不理想的功能”而不是“不正确的输出”

要获得您正在寻找的行为,

  • 应用或MaxHeight使用DataGridGrid RowDefinition.Height="*"<- 正如你所提到的(不知道你为什么说这不是你想要做的?)
  • 或者你也可以RelativeSourceBindingDataGrid

就像是 -

<DataGrid Name="DataGrid1" 
          Grid.Row="1"
          Height="{Binding RelativeSource={RelativeSource FindAncestor,
                           AncestorType={x:Type Grid}},
                           Path=RowDefinitions[1].ActualHeight}">

对于此类问题,Snoop是您的朋友。您可以轻松地检查此行为并了解为什么当您检查使用 Snoop 时未显示滚动条ActualHeightDataGrid看到它为子控件分配了相当多的高度。

于 2013-07-19T09:48:28.607 回答