java標題欄
㈠ java中窗體的標題欄如何設為透明
import java.awt.BorderLayout;
import java.awt.Dimension;
import java.awt.Graphics;
import java.awt.Image;
import java.awt.Point;
import java.awt.Rectangle;
import java.awt.Robot;
import java.awt.Toolkit;
import java.awt.event.ComponentEvent;
import java.awt.event.ComponentListener;
import java.awt.event.WindowEvent;
import java.awt.event.WindowFocusListener;
import javax.swing.JButton;
import javax.swing.JComponent;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.UIManager;
import com.birosoft.liquid.LiquidLookAndFeel;
public class TestEvent extends JComponent
implements ComponentListener,WindowFocusListener {
private JFrame frame;
private boolean start = false;
private Image background;
private Point p;
// 獲得當前屏幕快照
public void updateBackground() {
try {
Robot rbt = new Robot();
Toolkit tk = Toolkit.getDefaultToolkit();
Dimension dim = tk.getScreenSize();
background = rbt.createScreenCapture(new Rectangle(0, 0, (int) dim
.getWidth(), (int) dim.getHeight()));
} catch (Exception ex) {
// p(ex.toString());
// 此方法沒有申明過 ,因為無法得知上下文 。因為不影響執行效果 ,先注釋掉它 ex.printStackTrace();
}
}
// 將窗口掉離出屏幕以獲得純粹的背景圖象
public void refresh() {
if (start == true) {
this.updateBackground();
frame.setLocation(p);
if (p.x < 0 || p.y < 0)
frame.setLocation(0, 0);
this.repaint();
}
}
public void componentHidden(ComponentEvent e) {
System.out.println("Hidden");
}
// 窗口移動時
public void componentMoved(ComponentEvent e) {
System.out.println("moved");
this.repaint();
}
// 窗口改變大小時
public void componentResized(ComponentEvent e) {
System.out.println("resized");
this.repaint();
}
public void componentShown(ComponentEvent e) {
System.out.println("shown");
}
// 窗口得到焦點後,用refresh()方法更新界面
public void windowGainedFocus(WindowEvent e) {
System.out.println("gainedFocus");
refresh();
start = false;
}
// 窗口失去焦點後,將其移出屏幕
public void windowLostFocus(WindowEvent e) {
System.out.println("lostFocus");
if (frame.isShowing() == true) {
System.out.println("visible");
} else {
System.out.println("invisible");
}
start = true;
p = frame.getLocation();
frame.setLocation(-2000, -2000);
}
public TestEvent(JFrame frame) {
super();
this.frame = frame;
updateBackground();
this.setSize(200, 120);
this.setVisible(true);
frame.addComponentListener(this);
frame.addWindowFocusListener(this);
}
// 繪制外觀,注意,其中 pos,offset 是為了將特定部分的圖象貼到窗口上
public void paintComponent(Graphics g) {
Point pos = this.getLocationOnScreen();
Point offset = new Point(-pos.x, -pos.y);
g.drawImage(background, offset.x, offset.y, null);
}
/**
* @param args
*/
public static void main(String[] args) {
try {
// UIManager.setLookAndFeel("org.fife.plaf.Office2003.Office2003LookAndFeel");
// UIManager.setLookAndFeel("org.fife.plaf.OfficeXP.OfficeXPLookAndFeel");
// UIManager.setLookAndFeel("org.fife.plaf.OfficeXP.OfficeXPLookAndFeel");
UIManager.setLookAndFeel("com.birosoft.liquid.LiquidLookAndFeel");
LiquidLookAndFeel.setLiquidDecorations(true);
// LiquidLookAndFeel.setLiquidDecorations(true, "mac");
// UIManager.setLookAndFeel(new SubstanceLookAndFeel());
// UIManager.setLookAndFeel(new SmoothLookAndFeel());
// UIManager.setLookAndFeel(new QuaquaLookAndFeel());
// UIManager.put("swing.boldMetal", false);
if (System.getProperty("substancelaf.useDecorations") == null) {
JFrame.(true);
// JDialog.(true);
}
System.setProperty("sun.awt.noerasebackground", "true");
// SubstanceLookAndFeel.setCurrentTheme(new
// SubstanceLightAquaTheme());
// UIManager.setLookAndFeel("org.fife.plaf.VisualStudio2005.VisualStudio2005LookAndFeel");
} catch (Exception e) {
System.err.println("Oops! Something went wrong!");
}
JFrame frame = new JFrame("Transparent Window");
TestEvent t = new TestEvent(frame);
t.setLayout(new BorderLayout());
JButton button = new JButton("This is a button");
t.add("North", button);
JLabel label = new JLabel("This is a label");
t.add("South", label);
frame.getContentPane().add("Center", t);
frame.pack();
frame.setSize(150, 100);
frame.show();
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
// t.start=true;
}
}
㈡ Java 怎樣獲取標題欄的高度
自己已找到方法(沒辦法,沒人回,只能靠自己。。):
用java.lang.Container的getInsets()方法可以獲得標題欄的寬度和高度,Insets對象是容器邊界的表示形式,有top,left,right,bottom四個屬性可用。
An Insets object is a representation of the borders of a container. It specifies the space that a container must leave at each of its edges. The space can be a border, a blank space, or a title.
㈢ java如何獲取窗體標題欄的顏色
類 java.awt.SystemColor
SystemColor.activeCaption
SystemColor.inactiveCaption
㈣ 怎樣隱藏窗口標題欄(java)
樓主你好
可以用JFrame(或者Frame)類對象的setUndecorated方法來實現
public void setUndecorated(boolean undecorated)
禁用或啟用此組件的裝飾.
當參數設為true時 就隱藏了窗口標題欄
給lz一個例子:
import javax.swing.*;
public class Test extends JFrame
{
public Test()
{
this.setUndecorated(true);//隱藏標題欄
this.setSize(300,300);
this.setVisible(true);
this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
}
public static void main (String[] args) {
new Test();
}
}
希望能幫助你哈
㈤ java讓標題欄顯示信息
你說的是網頁的標題欄嗎?在<title>標簽里寫就可以了:
<html>
<title>這是我的班級</title>
<body>
</body>
</html>
㈥ Java中如何更換窗口標題欄字體(如何通過軟體代碼修改)
復制以下代碼,修改相應地方即可:
privatestaticvoidloadIndyFont()
{
UIManager.put("CheckBox.font",newjava.awt.Font("宋體",0,12));
UIManager.put("Tree.font",newjava.awt.Font("宋體",0,12));
UIManager.put("Viewport.font",newjava.awt.Font("宋體",0,12));
UIManager.put("ProgressBar.font",newjava.awt.Font("宋體",0,12));
UIManager.put("RadioButtonMenuItem.font",newjava.awt.Font("宋體",0,12));
UIManager.put("FormattedTextField.font",newjava.awt.Font("宋體",0,12));
UIManager.put("ToolBar.font",newjava.awt.Font("宋體",0,12));
UIManager.put("ColorChooser.font",newjava.awt.Font("宋體",0,12));
UIManager.put("ToggleButton.font",newjava.awt.Font("宋體",0,12));
UIManager.put("Panel.font",newjava.awt.Font("宋體",0,12));
UIManager.put("TextArea.font",newjava.awt.Font("宋體",0,12));
UIManager.put("Menu.font",newjava.awt.Font("宋體",0,12));
UIManager.put("RadioButtonMenuItem.acceleratorFont",newjava.awt.Font("宋體",0,12));
UIManager.put("Spinner.font",newjava.awt.Font("宋體",0,12));
UIManager.put("Menu.acceleratorFont",newjava.awt.Font("宋體",0,12));
UIManager.put("CheckBoxMenuItem.acceleratorFont",newjava.awt.Font("宋體",0,12));
UIManager.put("TableHeader.font",newjava.awt.Font("宋體",0,12));
UIManager.put("TextField.font",newjava.awt.Font("宋體",0,12));
UIManager.put("OptionPane.font",newjava.awt.Font("宋體",0,12));
UIManager.put("MenuBar.font",newjava.awt.Font("宋體",0,12));
UIManager.put("Button.font",newjava.awt.Font("宋體",0,12));
UIManager.put("Label.font",newjava.awt.Font("宋體",0,12));
UIManager.put("PasswordField.font",newjava.awt.Font("宋體",0,12));
UIManager.put("InternalFrame.titleFont",newjava.awt.Font("宋體",0,12));
UIManager.put("OptionPane.buttonFont",newjava.awt.Font("宋體",0,12));
UIManager.put("ScrollPane.font",newjava.awt.Font("宋體",0,12));
UIManager.put("MenuItem.font",newjava.awt.Font("宋體",0,12));
UIManager.put("ToolTip.font",newjava.awt.Font("宋體",0,12));
UIManager.put("List.font",newjava.awt.Font("宋體",0,12));
UIManager.put("OptionPane.messageFont",newjava.awt.Font("宋體",0,12));
UIManager.put("EditorPane.font",newjava.awt.Font("宋體",0,12));
UIManager.put("Table.font",newjava.awt.Font("宋體",0,12));
UIManager.put("TabbedPane.font",newjava.awt.Font("宋體",0,12));
UIManager.put("RadioButton.font",newjava.awt.Font("宋體",0,12));
UIManager.put("CheckBoxMenuItem.font",newjava.awt.Font("宋體",0,12));
UIManager.put("TextPane.font",newjava.awt.Font("宋體",0,12));
UIManager.put("PopupMenu.font",newjava.awt.Font("宋體",0,12));
UIManager.put("TitledBorder.font",newjava.awt.Font("宋體",0,12));
UIManager.put("ComboBox.font",newjava.awt.Font("宋體",0,12));
}
㈦ java中設置標簽標題的方法是
在Java代碼設置Activity標題 2019-10-06 15:49:37 在對應的xxxActivity.java這種調用setTitle("Title")方法 自定義Java窗口標題欄菜單 千次閱讀2021-03-09 03:4...