我想在ascx usercontroll上覆盖Gettype方法,以返回特定类型以与TypeOf进行比较。
My Current Aproach在我的usercontroll上添加了一个属性,并且:
Private Property Type As App.Controls.DropdownCustom
Public Shadows Function [GetType]() As Type
Return Type.GetType()
End Function
但他仍然返回当前类型的usercontroll名称。