我正在尝试在 SWT 中为我的应用程序创建一个选项卡接口。我想设置我的菜单按钮,以便在单击它时检查是否打开了选项卡。如果它是打开的,我想切换到选项卡,如果不是,我想打开它。我已经创建了一个将创建选项卡的菜单项,但我不确定如何检查选项卡是否存在。
问问题
255 次
2 回答
0
public static Boolean CtabExists(CTabFolder folder, CTabItem tab) {
if (tab != null) {
int intIndex = -1;
intIndex = folder.indexOf(tab);
if (intIndex == -1) {
return false;
} else {
return true;
}
} else {
return false;
}
}
于 2012-04-21T18:04:33.097 回答
0
int tabItemIndex=tabFolderItem.getSelectionIndex();
if(tabItemIndex!=-1)
tabFolderItem.setSelection(tabItemIndex);
else
tabFolderItem.setSelection(value); //keep your required index in the place of value
于 2017-02-27T07:22:04.650 回答