在C#winform中怎么查看所有用到的控件

2024-12-31 14:59:10
推荐回答(3个)
回答1:

string str = "";
var source = from temp in Controls.Cast() group temp by temp.GetType() into g select new { count = g.Count(), type = g.Key.ToString() };
foreach (var t in source)
{
str += t.type + ":" + t.count + "\n";
}
MessageBox.Show(str);

回答2:

属性下面的下拉列表

回答3:

菜单栏中的视图中的工具箱可以看到