Exemple #1
0
 protected UwpBootstrapperBase(bool isDesignMode, PlatformInfo platform = null) : base(isDesignMode)
 {
     _platform = platform ?? UwpToolkitExtensions.GetPlatformInfo();
 }
Exemple #2
0
 protected UwpBootstrapperBase([CanBeNull] Frame rootFrame, PlatformInfo platform = null)
     : this(false, platform)
 {
     _rootFrame = rootFrame;
     _platform  = platform ?? UwpToolkitExtensions.GetPlatformInfo();
 }
Exemple #3
0
 protected UwpBootstrapperBase(Frame frame = null, PlatformInfo platform = null)
     : this(false, platform)
 {
     Frame     = frame;
     _platform = platform ?? UwpToolkitExtensions.GetPlatformInfo();
 }