Skip to content

Instantly share code, notes, and snippets.

@springcome
Last active November 2, 2015 11:19
Show Gist options
  • Select an option

  • Save springcome/d16a7a83c2bdc0c7b995 to your computer and use it in GitHub Desktop.

Select an option

Save springcome/d16a7a83c2bdc0c7b995 to your computer and use it in GitHub Desktop.
ContextMenu생성
MenuItem addItem = new MenuItem("ADD");
MenuItem delItem = new MenuItem("Delete");
Menu menu = new Menu();
menu.setItems(addItem, delItem);
// ContextMenu에 구분선 넣기 (참고사항)
MenuItemSeparator separator = new MenuItemSeparator();
menu.addItem(separator);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment