我想在表格标题下方的容器中显示hamberger菜单。目前hamberger菜单默认出现在表格标题上。所以,请你帮我解决这个问题。 提前谢谢
答案 0 :(得分:1)
首先,您需要隐藏默认的汉堡菜单按钮。为此,请添加此主题常量:
hideLeftSideMenuBool
并将其设置为true
其次,创建一个自定义按钮,其具有相同的UIID
和Icon
作为默认设置或其他样式。将此按钮添加到BorderLayout
表单北部的容器中。
最后,将以下actionListener
添加到按钮:
final Button cmdMenuButton = new Button(" ", yourMenuIcon, "TitleCommand");
cmdMenuButton.addActionListener(evt -> myForm.getToolbar().openSideMenu());