[Zerofile-svn] SF.net SVN: zerofile: [21] trunk/src/ZeroFileSettingsWindow.java
Status: Pre-Alpha
Brought to you by:
karl-bengtsson
|
From: <el...@us...> - 2007-11-06 10:44:31
|
Revision: 21
http://zerofile.svn.sourceforge.net/zerofile/?rev=21&view=rev
Author: elpedr0
Date: 2007-11-06 02:44:22 -0800 (Tue, 06 Nov 2007)
Log Message:
-----------
messed around with the window
Modified Paths:
--------------
trunk/src/ZeroFileSettingsWindow.java
Modified: trunk/src/ZeroFileSettingsWindow.java
===================================================================
--- trunk/src/ZeroFileSettingsWindow.java 2007-11-06 10:42:14 UTC (rev 20)
+++ trunk/src/ZeroFileSettingsWindow.java 2007-11-06 10:44:22 UTC (rev 21)
@@ -11,8 +11,13 @@
public ZeroFileSettingsWindow()
{
- JButton Button1 = new JButton();
+ this.setSize(new Dimension(200,200));
+ this.setLayout(new GridLayout(1,2));
+ JButton Button1 = new JButton("OK");
+ JButton Button2 = new JButton("Cancel");
+ Button1.setSize(40, 20);
this.add(Button1);
+ this.add(Button2);
this.setVisible(true);
}
}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|