我希望按钮的文字大小随着窗口高度的调整而增加。
button.setFont(new Font("Tahoma", Font.PLAIN, frame.getHeight() / 20));
但是,我找不到任何地方把它放在我的代码中,以便字体大小实时更新。我会添加什么?
答案 0 :(得分:0)
一个选项是让您的 <HeaderTemplate>
<asp:Label ID="CommunicationsTabHeader" runat="server" Text="Communications"></asp:Label>
<asp:Label ID="CommunicationNotification" Visible="false" runat="server" Font-Bold="True"
Style="color: Red;" **Text="*">**</asp:Label>
</HeaderTemplate>
实现'ComponentListener`。该界面中的一种方法是:
JFrame
另一种选择是覆盖public void componentResized(ComponentEvent e) {
// Perform calculation here
}
JFrame
方法以重新计算每种颜料的大小:
paintComponent