moep.at
Urgestein
Hi,
ich versuche jetzt schon längere zeit vergebens, eine Linie in mein JFrame zu zeichnen....
Mein Code sieht wie folgt aus:
und ich möchte ein stink normales draw line hinbekommen, aba iwie klappts einfach nicht
kann mir bitte jemand weiter helfen? ich verzweifle grad wirklich
mfg
moep.at
ich versuche jetzt schon längere zeit vergebens, eine Linie in mein JFrame zu zeichnen....
Mein Code sieht wie folgt aus:
Code:
import javax.swing.JFrame;
public class Main
{
public static void main(String args[])
{
String filename = "C:/Temp/shapes.txt";
//call read file class
new ReadFile(filename);
//create and call window
JFrame window = new MainWindow();
//set the window visible
window.setVisible(true);
//set focus to the window
window.requestFocus();
window.repaint();
}
}
Code:
import java.awt.*;
import javax.swing.JFrame;
@SuppressWarnings("serial") //ignore warning
public class MainWindow extends JFrame
{
public MainWindow()
{
//create the main-window
super("Shapes"); //Window Name
setSize(400, 400);
//bg color
Container con = getContentPane();
con.setBackground(Color.WHITE);
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
//remove borders?
setUndecorated(false);
//center window
Dimension dim = getToolkit().getScreenSize();
setLocation((dim.width - getWidth()) / 2,
(dim.height - getHeight()) / 2);
// //icon adden
// java.net.URL iconUrl = this.getClass().getResource("images/icon.gif");
// Image img = getToolkit().getImage(iconUrl);
// MediaTracker mt = new MediaTracker(this);
// mt.addImage(img, 0);
// setIconImage(img);
}
}
Code:
import java.awt.Color;
import java.awt.Graphics;
import javax.swing.JFrame;
@SuppressWarnings("serial") //ignore warning
public class Paint extends JFrame
{
public void paint(Graphics g)
{
g.setColor(Color.red);
g.drawLine(0,0,200,200);
}
}
kann mir bitte jemand weiter helfen? ich verzweifle grad wirklich
mfg
moep.at