GXT快捷方式图标对齐

时间:2011-07-08 15:05:39

标签: alignment gxt

我正在尝试在中心对齐我的快捷方式图标。但是,我还没有办法做到这一点。以下是我的代码:

    Shortcut sh = new Shortcut();
    sh.setSize(String.valueOf(BUTTON_SIZE), String.valueOf(BUTTON_SIZE));
    sh.setText("Shortcut Name");
    sh.setIcon(ICONS.desktop());
    sh.setIconStyle("bottomPanelShortcut");  // (1) this does not work.
    mLeftToolbar.add(sh);

.bottomPanelShortcut {     margin-left:auto;     margin-right:auto; }

问题是没有(1)语句,它会显示桌面图像,但不会居中。 如果我包含(1)语句,则图像消失。

谢谢你的帮助!

彼得

0 个答案:

没有答案