示例#1
0
 public Grid()
 {
     _children = new GridElementCollection(InternalChildren, this)
     {
         Parent = this
     };
 }
示例#2
0
文件: Grid.cs 项目: MIliev11/Samples
 public Grid()
 {
     _children = new GridElementCollection(InternalChildren, this)
     {
         Parent = this
     };
     _platformConfigurationRegistry = new Lazy <PlatformConfigurationRegistry <Grid> >(() =>
                                                                                       new PlatformConfigurationRegistry <Grid>(this));
 }
示例#3
0
文件: Grid.cs 项目: sung-su/maui
 public Grid()
 {
     Hosting.CompatibilityCheck.CheckForCompatibility();
     _children = new GridElementCollection(InternalChildren, this)
     {
         Parent = this
     };
     _platformConfigurationRegistry = new Lazy <PlatformConfigurationRegistry <Grid> >(() =>
                                                                                       new PlatformConfigurationRegistry <Grid>(this));
 }