gpt4 book ai didi

c# - 如何让 WinForms 自定义控件的默认值在第一次放在窗体上时得到尊重

转载 作者:太空宇宙 更新时间:2023-11-03 20:58:06 26 4
gpt4 key购买 nike

我有一个带有自定义控件的类库:

using System.ComponentModel;
using System.Windows.Forms;

namespace ClassLibrary1
{
public sealed class CustomLabel : Label
{
[DefaultValue(false), Browsable(false), EditorBrowsable(EditorBrowsableState.Never), DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
public override bool AutoSize
{
get => base.AutoSize;
set => base.AutoSize = value;
}

public CustomLabel()
{
AutoSize = false;
}
}
}

请注意,AutoSize 在重写方法的构造函数设计器属性中均设置为 false。

我有一个 winforms 项目,我想在其中使用该控件。我从工具箱中拖/放它,但它没有将 AutoSize 设置为 false:

enter image description here

如果我保存并关闭表单然后重新打开它,现在它已正确设置:

enter image description here

我怎样才能让它在第一次放在表单上时尊重属性值?

最佳答案

您在构造函数中分配的默认值通常会受到尊重。但在某些情况下,将使用设计器更改默认值,例如通过控件的 ToolboxItemCreateComponentsCore 方法。

LabelAutoSize 属性的默认值为 false,您甚至不需要覆盖它或在构造函数中设置它。 但是 AutoSizeToolboxItem 已分配给 Label,当您删除 的实例时,它会将 AutoSize 设置为 true设计器上的标签。要消除此行为,只需将新的 ToolboxItem 分配给您的控件即可:

using System.ComponentModel;
using System.Drawing.Design;
using System.Windows.Forms;

namespace ClassLibrary1
{
[ToolboxItem(typeof(ToolboxItem))]
public sealed class CustomLabel : Label
{
}
}

注意 1: 仅供引用,ToolboxItem 有一个 CreateComponentsCore 方法,您可以在放置时使用它来执行一些初始化任务在设计界面上进行控制。

注意 2 我还应该补充一点,CreateComponentCore 方法只会在您将组件从工具箱放到设计界面时运行。它描述了为什么将它放在表单上后,它会自动调整大小,因为它是在构造函数之后由 CreateComponentCore 设置的。但是在您再次打开表单之后,这一次,将运行您的构造函数并将该属性设置为 false。

关于c# - 如何让 WinForms 自定义控件的默认值在第一次放在窗体上时得到尊重,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48346662/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com