假设控件Control c是获取的控件需要转换成ButtonButton b = (Button)c;或者Button b = c as Button;不过,如果在一个容器当中有很多不同类型的Control转换之前,最好判断一下比如if(typeof(Control) == typeof(Button)) Button b = (Button)c;
(控件类型)获取的控件;获取的控件 as 控件类型;