SmPanelComponentTitle

SmPanelComponentTitle 是指定控件放置在标题位置的 panel,其接口说明可参见 SmPanelComponentTitle 接口说明文档。

示范代码

SmPanelComponentTitle 控件使用的示例代码如下:

this.label1 = new JLabel("我是控件1");
this.label2 = new JLabel("我是控件2");
this.checkBox = new JCheckBox("我是复选框");
JPanel jPanel = new JPanel();
jPanel.add(this.label1);
jPanel.add(this.label2);
this.smPanelComponentTitle = new SmPanelComponentTitle(this.checkBox,jPanel);

SmPanelComponentTitle 控件显示效果如下:

SmPanelComponentTitleResult