如何重置 UIElement 上的所需大小



我有一个列表框,其中包含任意数量的大小未知的UIElement

我希望能够在添加每个项目后跟踪列表框的建议大小。这将允许我将一个大型列表(例如:100 个项目)拆分为几个(例如:10)视觉大小大致相同的较小列表,而不管列表中每个元素的视觉大小如何。

但是,度量传递似乎只影响ListBoxDesiredSize 属性第一次调用度量:

public partial class TestWindow : Window
{
    public TestWindow()
    {
        InitializeComponent();
        ListBox listBox = new ListBox();
        this.Content = listBox;
        // Add the first item
        listBox.Items.Add("a"); // Add an item (this may be a UIElement of random height)
        listBox.Measure(new Size(double.MaxValue, double.MaxValue)); // Measure the list box after the item has been added
        Size size1 = listBox.DesiredSize; // reference to the size the ListBox "wants"
        // Add the second item
        listBox.Items.Add("b"); // Add an item (this may be a UIElement of random height)
        listBox.Measure(new Size(double.MaxValue, double.MaxValue)); // Measure the list box after the item has been added
        Size size2 = listBox.DesiredSize; // reference to the size the ListBox "wants"
        // The two heights should have roughly a 1:2 ratio (width should be about the same)
        if (size1.Width == size2.Width && size1.Height == size2.Height)
            throw new ApplicationException("DesiredSize not updated");
    }
}

我尝试添加调用:

listBox.InvalidateMeasure();

在添加项目之间无济于事。

有没有一种简单的方法来计算添加项目时ListBox(或任何ItemsControl)的所需大小?

在测量阶段有一些优化,如果将相同的大小传递给 Measure 方法,这些优化将"重用"以前的测量值。

您可以尝试使用不同的值来确保真正重新计算测量值,如下所示:

// Add the second item
listBox.Items.Add("b"); // Add an item (this may be a UIElement of random height)
listBox.Measure(new Size(1, 1));
listBox.Measure(new Size(double.MaxValue, double.MaxValue));

相关内容

  • 没有找到相关文章

最新更新