c#自制控件如何添加的新的属性!

能不能详细一点!... 能不能详细一点! 展开
 我来答
就烦条0o
2015-12-17 · 知道合伙人软件行家
就烦条0o
知道合伙人软件行家
采纳数:33315 获赞数:46492
从事多年系统运维,喜欢编写各种小程序和脚本。

向TA提问 私信TA
展开全部

在自定义控件的类中添加两个成员 一个私有一个公开,把公开的set get 与私有成员关连,在set和get过程中还可以处理额外内容,如改变其它值执行其它代码等。如下代码所示,其中CategoryAttribute为属性发组信息,DescriptionAttribute为说明,DefaultValue为默认值。

private string _Caption = "曲线图";
[CategoryAttribute("自定义属性"),
DescriptionAttribute("标题"),
DefaultValue("曲线")]
public string Caption
{
    set { _Caption = value; }
    get { return _Caption; }
}

如图所示:

迷恋只是你背影
2014-11-08 · 超过13用户采纳过TA的回答
知道答主
回答量:18
采纳率:0%
帮助的人:20.2万
展开全部
和普通的属性一样啊,就是get;set:

然后你可以在里面添加你所想要的逻辑。
我举个例子,一个显示时间的按钮:
public class TimeButton : Button
{
private DateTime time;
public DateTime TimeText
{
get
{
return time;
}
set
{
this.time = value;
this.Text = DateTime.Now.ToString();
}
}
}

主窗体
public partial class Form1 : Form
{
Thread th;
public Form1()
{
InitializeComponent();
th = new Thread(new ThreadStart(Circle));
th.Start();

}

void Circle()
{
while (true)
{
Thread.Sleep(1000);
SetButton();
}

}
void SetButton()
{
if (this.timeButton1.InvokeRequired)
{
Action a = new Action(SetButton);
this.Invoke(a);

}
else
{
this.timeButton1.TimeText = DateTime.Now;
}
}

private void Form1_FormClosing(object sender, FormClosingEventArgs e)
{
th.Abort();
}
本回答被提问者和网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式