我正在处理的应用程序有一个名为RSChild的通用父窗体,它用于执行某些操作,具体取决于其中包含的控件是在MdiTabManager中还是在其自己的模式窗体内。然后实际的用户控件包含在一个名为ObjectEdit的接口的继承中(我们允许编辑的对象)。在我的代码中,我正在这样做。
Public Function doesTabExist(ByVal id As Integer, ByVal recordType As Enums.eRecordType) As Boolean
Dim alikePages As Object = (From tabs In DirectCast(Control.FromHandle(MainForm.SharedHandle), MainForm).XtraTabbedMdiManager1.Pages Where DirectCast(tabs.MdiChild, RSChild).RSObject.RecordType = recordType Select tabs)
For Each page As DevExpress.XtraTabbedMdi.XtraMdiTabPage In alikePages
Select Case recordType
Case Enums.eRecordType.Doctor
If id = DirectCast(castTabPageToRSChild(page).RSObject, UI.Doctor).ID Then
pageToActive(page)
Return True
End If
'rest of the cases so the case block is repeated 10 times'
End Function
我的castTabPageToRSChild(页面)是一个lambda函数,如
Dim castTabPageToRSChild As Func(Of DevExpress.XtraTabbedMdi.XtraMdiTabPage, RSChild) = Function(page) DirectCast(page.MdiChild, RSChild)
所以我的问题是,我有大约10个案例陈述,都是因为我似乎找不到使用反射来获取RSObject对象的基础类型的方法。所以我整个If块一遍又一遍地重复。我尝试castTabPageToRSChild(page)RSObject.GetType
并在DirectCast
中使用它,我也尝试创建另一个与之分离并执行相同操作的对象。
我的代码按预期工作我只是想看看是否有一种方式我没有很多复制代码。我的愿景是做一些像
这样的事情For Each page As XtraMdiTabPage In alikePages
If id = DirectCast(castTabPageToRSchild(page).RSObject, castTabPageToRSChild(page).RSObject.GetType).Id Then Return True
Next
但是我觉得由于DirectCast
的行为,这是不可能的。
答案 0 :(得分:1)
请改用TryCast。如果对象不是预期类型,则返回Nothing。