這是我的第一個問題,所以如果我能做得更好,給我批評。 當我打電話給Hero.Move.MoveLeft();時,JLabel「labelHero」不會在視覺上移動。但調試器說,posX的變化。 有趣的是,如果我在GamePanel第一次添加到Frame之前調用Hero.Move.MoveLeft();,那麼它比它的效果好。 (我已經在myWindow中間標記了位置。) Thx for help g
所以我有這樣的代碼 import javax.swing.*;
public class pictest {
public static void main(String[] args) {
JFrame frame = new JFrame("Label Example");
ImageIcon mine = new ImageIcon("C:/Users/Eri
當它切換圖標的圖像閃爍時形成某種原因。當我嘗試創建對象時,我還遇到了這個問題,然後嘗試通過將x和y作爲參數傳遞給對象來移動它們。任何幫助都會很棒。 public class Main extends JFrame implements ActionListener, KeyListener{
static Main main;
Render render;
Timer timer;
s
我希望能夠從jar內部加載圖片。 很多網頁都說要使用我正在使用的確切代碼。有人說使用getClass(),但我在我的主要方法中運行代碼,我的類不是靜態的。 目前我在主類的主要方法中有以下代碼。 try {
ImageIcon icon = new ImageIcon(BlockWorld.class.getResource("icon.png")); // line 46
wi
我試圖給我的界面一個新的功能,但我遇到了一些障礙。我想在鼠標進入時在JLabel上放大圖像。 這裏是我的JLabel的外觀: int sacle = 50 //Size of my JLabel Icon
int zoom = 10 // How much the icon should enlarge
imageIcon = new ImageIcon(new ImageIcon(myCla