使用控件的Tag属性传递信息
Posted feiyucha
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用控件的Tag属性传递信息相关的知识,希望对你有一定的参考价值。
实现效果:
知识运用:
Control类的Tag属性 //获取或设置包含 有关控件的数据的对象
public object Tag {get;set;}
实现代码:
private void Form1_Load(object sender, EventArgs e) { button1.Tag = "该技巧是TAG属性应用"; } private void button1_Click(object sender, EventArgs e) { MessageBox.Show(this.button1.Tag.ToString(),"提示:"); }
以上是关于使用控件的Tag属性传递信息的主要内容,如果未能解决你的问题,请参考以下文章
在 Android Dialogfragment show() 方法 TAG 参数中传递啥
Operator '||' cannot be applied to operands of type 'bool?' and 'bool?'(代码片段
Operator '||' cannot be applied to operands of type 'bool?' and 'bool?'(代码片段