我需要使用 .net 库版本 6.0 下的组件创建 WinForms 项目。但是当我创建项目和 ControlLibrary 时,Visual Studio 窗体设计器不使用 ControlDesigners
我需要使用 .net 库版本 6.0 下的组件创建 WinForms 项目。但是当我创建项目和 ControlLibrary 时,Visual Studio 窗体设计器不使用 ControlLibrary 中的 ControlDesigners,即使我正确地将设计器绑定到组件。
[Designer(typeof(MyControlDesigner))]
[ToolboxItem(true)]
public class MyControl : Control
{
protected override void OnPaint(PaintEventArgs e)
{
e.Graphics.FillRectangle(SystemBrushes.Info, new Rectangle(0, 0, Width, Height));
e.Graphics.DrawString("MyControl", Font, SystemBrushes.InfoText, new PointF(0, 0));
}
}
我已经创建了一些 ActionLists 但它们在设计时没有显示在组件中。
namespace WinFormsControlLibrary1
{
internal class MyControlDesigner : ControlDesigner
{
private DesignerActionListCollection actionLists;
public override DesignerActionListCollection ActionLists
{
get
{
if (actionLists == null)
{
actionLists = new DesignerActionListCollection();
actionLists.Add(new DataAxisGridActionList(Component));
actionLists.AddRange(base.ActionLists);
}
return actionLists;
}
}
}
public class DataAxisGridActionList : DesignerActionList
{
public DataAxisGridActionList(IComponent component) : base(component)
{
}
public override DesignerActionItemCollection GetSortedActionItems()
{
DesignerActionItemCollection items = new DesignerActionItemCollection();
items.Add(new DesignerActionMethodItem(this, "Action1", " Action 1", true));
items.Add(new DesignerActionMethodItem(this, "Action2", "Action 2", true));
return items;
}
public void Action1()
{
MessageBox.Show("Action 1");
}
public void Action2()
{
MessageBox.Show("Action 2");
}
}
}
为了测试,我在 .NET Framework 4.7.2 下创建了一个类似的项目和库,设计器在那里运行正常。
我还附加了演示项目的链接。
https://github.com/dmitrybv/WinForms-Net5-Designers
https://github.com/dmitrybv/WinForms-Net-Framework-4.7.2-Designers
如何在 NET 6.0 中编写 WinForms 设计器
下载声明:
本站所有软件和资料均为软件作者提供或网友推荐发布而来,仅供学习和研究使用,不得用于任何商业用途。如本站不慎侵犯你的版权请联系我,我将及时处理,并撤下相关内容!