Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想设置一个工具栏作为表单的活动控件,做了这样的事情:
this.ActiveControl = this.Controls.Find("toolStrip2", false);
但它说它不能从 Control[] 转换为 Cnotrol。
那么如何将该工具栏设置为活动控件?
该方法Find返回名称与您传递给它的字符串匹配的 Control 实例数组。数组中的第一个控件(如果有的话)应该是您要查找的那个。
Find
您可以使用以下代码执行此操作:
Control[] controls = this.Controls.Find("toolStrip2", false); if (controls.Length > 0) this.ActiveControl = controls[0];