ui/wpf/UIcore/Window.cs

changeset 85
91f45354d1e2
parent 84
a56c2baa9429
child 88
04c81be1c5a0
equal deleted inserted replaced
84:a56c2baa9429 85:91f45354d1e2
9 9
10 namespace UI 10 namespace UI
11 { 11 {
12 public class MainWindow : Window, Container 12 public class MainWindow : Window, Container
13 { 13 {
14 public Layout Layout
15 {
16 get
17 {
18 return Container.Layout;
19 }
20 set
21 {
22 Container.Layout = value;
23 }
24 }
25
14 public IntPtr Object; 26 public IntPtr Object;
15 public Container Container; 27 public Container Container;
16 28
17 public MainWindow(String title, IntPtr uiobj) 29 public MainWindow(String title, IntPtr uiobj)
18 { 30 {

mercurial