ui/wpf/UIcore/Container.cs

changeset 135
b9dc9cdfa23a
parent 104
3efe0210e27e
child 136
1df2fb3d079c
--- a/ui/wpf/UIcore/Container.cs	Sun Jan 22 11:48:50 2017 +0100
+++ b/ui/wpf/UIcore/Container.cs	Sun Jan 22 17:23:20 2017 +0100
@@ -145,11 +145,6 @@
 
             Layout.Reset();
         }
-
-        public static BoxContainer CreateBoxContainer(Container parent, BoxOrientation orientation)
-        {
-            return Application.GetInstance().Exec<BoxContainer>(() => new BoxContainer(parent, orientation));
-        }
     }
     
     public class GridContainer : Grid, Container
@@ -252,10 +247,5 @@
             Layout.Reset();
             X++;
         }
-
-        public static GridContainer CreateGridContainer(Container parent, int margin, int colspacing, int rowspacing)
-        {
-            return Application.GetInstance().Exec<GridContainer>(() => new GridContainer(parent, margin, colspacing, rowspacing));
-        }
     }
 }

mercurial