- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我试图通过重写Panel
和MeasureOverride
为WPF编写一个自定义ArrangeOverride
类,但是尽管它在大多数情况下都在工作,但我遇到了一个我无法解释的奇怪问题。
特别是,在弄清楚子项的大小后,我在Arrange
的子项上调用ArrangeOverride
后,它们的大小没有达到我给它们的大小,并且似乎已调整为Measure
中传递给其MeasureOverride
方法的大小。
我在该系统应该如何工作方面缺少什么吗?我的理解是,调用Measure
只会使 child 根据所提供的availableSize评估其DesiredSize
,而不会影响其实际最终尺寸。
这是我的完整代码(Panel,btw,旨在以最节省空间的方式排列子级,为不需要它的行提供较少的空间,并将剩余空间平均分配给其余的空间,目前仅支持垂直方向,但我打算在水平方向正常工作后再添加水平方向):
编辑:感谢您的答复。一会儿我将更仔细地研究它们。但是,让我澄清一下我预期的算法是如何工作的,因为我没有对此进行解释。
首先,思考我在做什么的最好方法是想象一个将每行设置为*的网格。这样可以将空间平均分配。但是,在某些情况下,行中的元素可能并不需要所有的空间。如果是这种情况,我想获取任何剩余的空间,并将其分配给可以使用该空间的那些行。如果没有行需要任何额外的空间,我只是尝试均匀地隔开空间(这就是extraSpace
所做的,仅适用于这种情况)。
我分两次通过。第一遍的最终目的是确定一行的最终“正常大小”,即将缩小的行的大小(给定的大小小于其期望的大小)。我这样做是通过将最小的项目逐步放大到最大,然后在每个步骤中调整计算得出的正常大小,方法是将每个小项目的剩余空间添加到随后的每个大项目中,直到没有其他项目“适合”然后折断。
在下一个过程中,我将使用此正常值来确定某个项目是否适合,只需简单地将正常大小的Min
与该项目的所需大小一起使用即可。
(为简单起见,我还将匿名方法更改为lambda函数。)
编辑2:我的算法似乎可以很好地确定 child 的适当大小。但是, children 只是不接受他们给定的尺寸。我通过传递PositiveInfinity并返回Size(0,0)来尝试了哥布林建议的MeasureOverride
,但这使子级绘制自己,好像根本没有空间限制。对此不明显的部分是由于对Measure
的调用而发生的。微软在这个主题上的文档还不清楚,因为我已经多次阅读了每个类和属性的描述。但是,现在很清楚,调用Measure
实际上确实会影响子代的呈现,因此我将尝试按照BladeWise的建议在这两个函数之间进行逻辑划分。
解决了! 我知道了。正如我所怀疑的,我需要对每个 child 两次调用Measure()(一次评估DesiredSize,第二次给每个 child 适当的高度)。对我来说,WPF中的布局将以这种奇怪的方式设计似乎很奇怪,在该布局中它分为两遍,但Measure遍实际上做了两件事:度量和确定子级的大小,而Arrange遍除了实际物理上几乎什么也没做安置 children 。很奇怪
我将工作代码发布在底部。
首先,原始(残破)代码:
protected override Size MeasureOverride( Size availableSize ) {
foreach ( UIElement child in Children )
child.Measure( availableSize );
return availableSize;
}
protected override System.Windows.Size ArrangeOverride( System.Windows.Size finalSize ) {
double extraSpace = 0.0;
var sortedChildren = Children.Cast<UIElement>().OrderBy<UIElement, double>( child=>child.DesiredSize.Height; );
double remainingSpace = finalSize.Height;
double normalSpace = 0.0;
int remainingChildren = Children.Count;
foreach ( UIElement child in sortedChildren ) {
normalSpace = remainingSpace / remainingChildren;
if ( child.DesiredSize.Height < normalSpace ) // if == there would be no point continuing as there would be no remaining space
remainingSpace -= child.DesiredSize.Height;
else {
remainingSpace = 0;
break;
}
remainingChildren--;
}
// this is only for cases where every child item fits (i.e. the above loop terminates normally):
extraSpace = remainingSpace / Children.Count;
double offset = 0.0;
foreach ( UIElement child in Children ) {
//child.Measure( new Size( finalSize.Width, normalSpace ) );
double value = Math.Min( child.DesiredSize.Height, normalSpace ) + extraSpace;
child.Arrange( new Rect( 0, offset, finalSize.Width, value ) );
offset += value;
}
return finalSize;
}
double _normalSpace = 0.0;
double _extraSpace = 0.0;
protected override Size MeasureOverride( Size availableSize ) {
// first pass to evaluate DesiredSize given available size:
foreach ( UIElement child in Children )
child.Measure( availableSize );
// now determine the "normal" size:
var sortedChildren = Children.Cast<UIElement>().OrderBy<UIElement, double>( child => child.DesiredSize.Height );
double remainingSpace = availableSize.Height;
int remainingChildren = Children.Count;
foreach ( UIElement child in sortedChildren ) {
_normalSpace = remainingSpace / remainingChildren;
if ( child.DesiredSize.Height < _normalSpace ) // if == there would be no point continuing as there would be no remaining space
remainingSpace -= child.DesiredSize.Height;
else {
remainingSpace = 0;
break;
}
remainingChildren--;
}
// there will be extra space if every child fits and the above loop terminates normally:
_extraSpace = remainingSpace / Children.Count; // divide the remaining space up evenly among all children
// second pass to give each child its proper available size:
foreach ( UIElement child in Children )
child.Measure( new Size( availableSize.Width, _normalSpace ) );
return availableSize;
}
protected override System.Windows.Size ArrangeOverride( System.Windows.Size finalSize ) {
double offset = 0.0;
foreach ( UIElement child in Children ) {
double value = Math.Min( child.DesiredSize.Height, _normalSpace ) + _extraSpace;
child.Arrange( new Rect( 0, offset, finalSize.Width, value ) );
offset += value;
}
return finalSize;
}
Measure
(并重复三次
Children
)可能不是很高效,但是它可以工作。对算法的任何优化将不胜感激。
最佳答案
让我们看看我是否正确,Panel
应该如何工作:
UIElement
子UIElement
的大小,以便填充整个空间(即,每个元素的大小将增加剩余空间的一部分)UIElement
)的情况下,Measure传递用于确定
availableSize
需要多少空间。在
Panel
的情况下,它也会对其子级调用Measure传递,但是
并未设置其子级的所需大小(换句话说,子级的大小是面板的测量传递的输入)。
Panel
的情况下,它也会在其子级上调用Arrange传递,但是就像小节传递一样,
不会更改子级的所需大小(它只会定义其渲染空间)。
AttachedProperty
(即RequiredHeight)代替所需的子项大小(除非将子项大小设置为Auto
,否则您无法控制子项大小,因此无需采取DesiredSize
)using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Windows.Controls;
using System.Windows;
namespace WpfApplication1
{
public class CustomPanel : Panel
{
/// <summary>
/// RequiredHeight Attached Dependency Property
/// </summary>
public static readonly DependencyProperty RequiredHeightProperty = DependencyProperty.RegisterAttached("RequiredHeight", typeof(double), typeof(CustomPanel), new FrameworkPropertyMetadata((double)double.NaN, FrameworkPropertyMetadataOptions.AffectsMeasure, new PropertyChangedCallback(OnRequiredHeightPropertyChanged)));
private static void OnRequiredHeightPropertyChanged(DependencyObject obj, DependencyPropertyChangedEventArgs args)
{
}
public static double GetRequiredHeight(DependencyObject d)
{
return (double)d.GetValue(RequiredHeightProperty);
}
public static void SetRequiredHeight(DependencyObject d, double value)
{
d.SetValue(RequiredHeightProperty, value);
}
private double m_ExtraSpace = 0;
private double m_NormalSpace = 0;
protected override Size MeasureOverride(Size availableSize)
{
//Measure the children...
foreach (UIElement child in Children)
child.Measure(availableSize);
//Sort them depending on their desired size...
var sortedChildren = Children.Cast<UIElement>().OrderBy<UIElement, double>(new Func<UIElement, double>(delegate(UIElement child)
{
return GetRequiredHeight(child);
}));
//Compute remaining space...
double remainingSpace = availableSize.Height;
m_NormalSpace = 0.0;
int remainingChildren = Children.Count;
foreach (UIElement child in sortedChildren)
{
m_NormalSpace = remainingSpace / remainingChildren;
double height = GetRequiredHeight(child);
if (height < m_NormalSpace) // if == there would be no point continuing as there would be no remaining space
remainingSpace -= height;
else
{
remainingSpace = 0;
break;
}
remainingChildren--;
}
//Dtermine the extra space to add to every child...
m_ExtraSpace = remainingSpace / Children.Count;
return Size.Empty; //The panel should take all the available space...
}
protected override System.Windows.Size ArrangeOverride(System.Windows.Size finalSize)
{
double offset = 0.0;
foreach (UIElement child in Children)
{
double height = GetRequiredHeight(child);
double value = (double.IsNaN(height) ? m_NormalSpace : Math.Min(height, m_NormalSpace)) + m_ExtraSpace;
child.Arrange(new Rect(0, offset, finalSize.Width, value));
offset += value;
}
return finalSize; //The final size is the available size...
}
}
}
<Window x:Class="WpfApplication1.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="clr-namespace:WpfApplication1"
Title="MainWindow" Height="350" Width="525">
<Grid>
<local:CustomPanel>
<Rectangle Fill="Blue" local:CustomPanel.RequiredHeight="22"/>
<Rectangle Fill="Red" local:CustomPanel.RequiredHeight="70"/>
<Rectangle Fill="Green" local:CustomPanel.RequiredHeight="10"/>
<Rectangle Fill="Purple" local:CustomPanel.RequiredHeight="5"/>
<Rectangle Fill="Yellow" local:CustomPanel.RequiredHeight="42"/>
<Rectangle Fill="Orange" local:CustomPanel.RequiredHeight="41"/>
</local:CustomPanel>
</Grid>
</Window>
关于c# - 自定义自动调整大小的WPF面板类,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3002656/
好的,所以我编辑了以下... 只需将以下内容放入我的 custom.css #rt-utility .rt-block {CODE HERE} 但是当我尝试改变... 与 #rt-sideslid
在表格 View 中,我有一个自定义单元格(在界面生成器中高度为 500)。在该单元格中,我有一个 Collection View ,我按 (10,10,10,10) 固定到边缘。但是在 tablev
对于我的无能,我很抱歉,但总的来说,我对 Cocoa、Swift 和面向对象编程还很陌生。我的主要来源是《Cocoa Programming for OS X》(第 5 版),以及 Apple 的充满
我正在使用 meta-tegra 为我的 NVIDIA Jetson Nano 构建自定义图像。我需要 PyTorch,但没有它的配方。我在设备上构建了 PyTorch,并将其打包到设备上的轮子中。现
在 jquery 中使用 $.POST 和 $.GET 时,有没有办法将自定义变量添加到 URL 并发送它们?我尝试了以下方法: $.ajax({type:"POST", url:"file.php?
Traefik 已经默认实现了很多中间件,可以满足大部分我们日常的需求,但是在实际工作中,用户仍然还是有自定义中间件的需求,为解决这个问题,官方推出了一个 Traefik Pilot[1] 的功
我想让我的 CustomTextInputLayout 将 Widget.MaterialComponents.TextInputLayout.OutlinedBox 作为默认样式,无需在 XML 中
我在 ~/.emacs 中有以下自定义函数: (defun xi-rgrep (term) (grep-compute-defaults) (interactive "sSearch Te
我有下表: 考虑到每个月的权重,我的目标是在 5 个月内分散 10,000 个单位。与 10,000 相邻的行是我最好的尝试(我在这上面花了几个小时)。黄色是我所追求的。 我试图用来计算的逻辑如下:计
我的表单中有一个字段,它是文件类型。当用户点击保存图标时,我想自然地将文件上传到服务器并将文件名保存在数据库中。我尝试通过回显文件名来测试它,但它似乎不起作用。另外,如何将文件名添加到数据库中?是在模
我有一个 python 脚本来发送电子邮件,它工作得很好,但问题是当我检查我的电子邮件收件箱时。 我希望该用户名是自定义用户名,而不是整个电子邮件地址。 最佳答案 发件人地址应该使用的格式是: You
我想减小 ggcorrplot 中标记的大小,并减少文本和绘图之间的空间。 library(ggcorrplot) data(mtcars) corr <- round(cor(mtcars), 1)
GTK+ noob 问题在这里: 是否可以自定义 GtkFileChooserButton 或 GtkFileChooserDialog 以删除“位置”部分(左侧)和顶部的“位置”输入框? 我实际上要
我正在尝试在主页上使用 ajax 在 magento 中使用 ajax 显示流行的产品列表,我可以为 5 或“N”个产品执行此操作,但我想要的是将分页工具栏与结果集一起添加. 这是我添加的以显示流行产
我正在尝试使用 PasswordResetForm 内置函数。 由于我想要自定义表单字段,因此我编写了自己的表单: class FpasswordForm(PasswordResetForm):
据我了解,新的 Angular 7 提供了拖放功能。我搜索了有关 DnD 的 Tree 组件,但没有找到与树相关的内容。 我在 Stackblitz 上找到的一个工作示例.对比drag'ndrop功能
我必须开发一个自定义选项卡控件并决定使用 WPF/XAML 创建它,因为我无论如何都打算学习它。完成后应该是这样的: 到目前为止,我取得了很好的进展,但还有两个问题: 只有第一个/最后一个标签项应该有
我要定制xtable用于导出到 LaTeX。我知道有些问题是关于 xtable在这里,但我找不到我要找的具体东西。 以下是我的表的外观示例: my.table <- data.frame(Specif
用ejs在这里显示日期 它给我结果 Tue Feb 02 2016 16:02:24 GMT+0530 (IST) 但是我需要表现为 19th January, 2016 如何在ejs中执行此操作?
我想问在 JavaFX 中使用自定义对象制作 ListView 的最佳方法,我想要一个每个项目如下所示的列表: 我搜了一下,发现大部分人都是用细胞工厂的方法来做的。有没有其他办法?例如使用客户 fxm
我是一名优秀的程序员,十分优秀!