Example #1
0
 public WindowProperties(WindowPriority priority, bool hideOnForegroundLost = false, bool suppressPrefabProperties = false)
 {
     WindowQueuePriority      = priority;
     HideOnForegroundLost     = hideOnForegroundLost;
     SuppressPrefabProperties = suppressPrefabProperties;
 }
 public WindowSettings(bool dontHideIfNotForeground, WindowPriority priority = WindowPriority.Foreground, bool isPopup = false)
 {
     this.dontHideIfNotForeground = dontHideIfNotForeground;
     this.priority = priority;
     this.isPopup  = isPopup;
 }
Example #3
0
 public WindowProperties()
 {
     hideOnForegroundLost = true;
     windowQueuePriority  = WindowPriority.ForceForeground;
     isPopup = false;
 }
Example #4
0
 public IWindowShowLauncher WithPriority(WindowPriority priority)
 {
     this.priority = priority;
     return(this);
 }