Beispiel #1
0
 public Grid()
 {
     _children = new GridElementCollection(InternalChildren, this)
     {
         Parent = this
     };
 }
Beispiel #2
0
 public Grid()
 {
     _children = new GridElementCollection(InternalChildren, this)
     {
         Parent = this
     };
     _platformConfigurationRegistry = new Lazy <PlatformConfigurationRegistry <Grid> >(() =>
                                                                                       new PlatformConfigurationRegistry <Grid>(this));
 }
Beispiel #3
0
 public Grid()
 {
     Hosting.CompatibilityCheck.CheckForCompatibility();
     _children = new GridElementCollection(InternalChildren, this)
     {
         Parent = this
     };
     _platformConfigurationRegistry = new Lazy <PlatformConfigurationRegistry <Grid> >(() =>
                                                                                       new PlatformConfigurationRegistry <Grid>(this));
 }