在属性对话框中显示用户创建方法的问题
本文关键字:创建 方法 问题 用户 显示 属性 对话框 | 更新日期: 2023-09-27 18:17:39
在属性对话框中显示用户创建的方法存在问题因此,我创建了最基本的文本框并将其添加到窗体中。我可以看到_key和_value,但方法没有显示:(
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace testTextbox
{
public class myTextbox : TextBox
{
public string _key { get; set; }
public string _value { get; set; }
public void aa()
{
// aa does not appear in the properties dialogue when the text box is on the form
}
}
}
我哪里错了?谢谢。
方法不显示在属性网格中,只显示属性和事件。