Example #1
0
 public Grid()
 {
     _children = new GridElementCollection(InternalChildren, this)
     {
         Parent = this
     };
 }
Example #2
0
 public Grid()
 {
     _children = new GridElementCollection(InternalChildren, this)
     {
         Parent = this
     };
     _platformConfigurationRegistry = new Lazy <PlatformConfigurationRegistry <Grid> >(() =>
                                                                                       new PlatformConfigurationRegistry <Grid>(this));
 }
Example #3
0
File: Grid.cs Project: sung-su/maui
 public Grid()
 {
     Hosting.CompatibilityCheck.CheckForCompatibility();
     _children = new GridElementCollection(InternalChildren, this)
     {
         Parent = this
     };
     _platformConfigurationRegistry = new Lazy <PlatformConfigurationRegistry <Grid> >(() =>
                                                                                       new PlatformConfigurationRegistry <Grid>(this));
 }