将字符串转换为变量名

发布于 2024-11-25 00:25:27 字数 256 浏览 0 评论 0原文

我需要通过字符串获取组合框。没有工作。

 for (int i = 0; i < Slots.Count; i++)
        {
            var field = (ComboBox)this.GetType().GetField("cbSlots" + i).GetValue(this);
            field.DataSource = Slots[i.ToString()];
        } 

I need get combobox by string. Not worked.

 for (int i = 0; i < Slots.Count; i++)
        {
            var field = (ComboBox)this.GetType().GetField("cbSlots" + i).GetValue(this);
            field.DataSource = Slots[i.ToString()];
        } 

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

孤独难免 2024-12-02 00:25:27

如果我从你的表格中理解了这个问题,你可以这样做

this.Controls.Find("name_of_your_combobox");

If I understand the question, from your form, you could do

this.Controls.Find("name_of_your_combobox");
久夏青 2024-12-02 00:25:27

如果您尝试使用其名称作为字符串来访问 ComboBox,那么您需要在 this.Controls 中查找它,如下所示:

ComboBox myCombo = (ComboBox)this.Controls["cbSlots" + i.ToString()];

If you are trying to access a ComboBox using its name as string, so you need to look for that in this.Controls like so:

ComboBox myCombo = (ComboBox)this.Controls["cbSlots" + i.ToString()];
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文