在CaptionPanel gwt中使CaptionText粗体化

时间:2014-07-28 19:45:23

标签: java gwt

我想将captionPanel中的captionText设为Bold。

CaptionPanel personalInfo = new CaptionPanel(“个人信息”);

我想将“个人信息”内容像个人信息一样大胆而不是个人信息。

有人可以帮助我吗

1 个答案:

答案 0 :(得分:0)

您可以在整个小部件上应用样式类

CaptionPanel personalInfo = new CaptionPanel("Personal Information");
personalInfo.setStyleName("bold"); //bold is the name of a css class

或者如果你想为文本的一部分设置样式,那么你可以写这样的东西

SafeHtml safeHtml = SafeHtmlUtils.fromString("<div><span style="font-weight:bold">Personal</span> Information</div>");
CaptionPanel personalInfo = new CaptionPanel(safeHtml);