我有一个TabFormcontrol,页面上有3个标签。 我点击主表单上的三个按钮之一打开表单。 依赖于单击的按钮我想在打开表单时选择选项卡1,2或3。 我的主要形式的代码:
Private Sub Button1_ItemClick(sender As Object, e As DevExpress.XtraBars.ItemClickEventArgs) Handles Button1.ItemClick
Dim F As New frmImport ' <- the form with the 3 tabs
F.TabFormControl1.... ' <- select Tab 1,2,3 - here comes your solution ;)
F.ShowDialog()
End Sub
如何选择标签1,2或3?
答案 0 :(得分:1)
您可以使用TabFormControl.SelectedPage属性。例如:
F.TabFormControl1.SelectedPage = tfcPage1