Added properties panel

This commit is contained in:
2015-03-12 20:51:25 +01:00
parent be342a5976
commit 08c411070d
6 changed files with 291 additions and 4 deletions
+3 -1
View File
@@ -17,8 +17,10 @@ public class Window extends JFrame {
//CONTENT PANELS
JPanel contentPanel = new JPanel(new BorderLayout());
Panel fp = new Panel();
PropertiesPanel pp = new PropertiesPanel();
Panel fp = new Panel(pp);
contentPanel.add(fp, BorderLayout.CENTER);
contentPanel.add(pp, BorderLayout.EAST);
setContentPane(contentPanel);
//END CONTENT PANELS