c#中判断控件类型

1、可用控件的GetType函数,control.gettype().tostring,输出的类型带命名空间,如system.web.ui.webcontrols.button

2、也可用TypeName函数,typename(control),输出的类型不带命名空间,如button控件直接输出button类型

3、If (obj.GetType Is GetType(System.Windows.Forms.CheckBox))

4、If (obj.GetType == typeof(System.Windows.Forms.CheckBox))