gpt4 book ai didi

c# - 按钮的另一个标签可能吗?

转载 作者:太空宇宙 更新时间:2023-11-03 21:54:21 25 4
gpt4 key购买 nike

是否有可能获得第二个标签(或我可以分配用户定义的 int/string/float 的其他标签)?

原因是,我已经使用了 ButtonX.Tag,拥有第二个标签或其他东西比将第二个 int 放入数组或其他东西要容易得多...

提前致谢。

最佳答案

最好创建自己的类并将其对象附加到按钮标签。

class ButtonProperty
{
public int ID { get; set; }
public string MyProperty { get; set; }
}

然后你可以像这样使用它:

ButtonProperty buttonPropertyObj = new ButtonProperty () { ID = 1, MyProperty ="Some property"};
btn1.Tag = buttonPropertyObj;

关于c# - 按钮的另一个标签可能吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12968748/

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