Пример #1
0
 protected OverlayConfigBase(string name)
 {
     Name                  = name;
     IsVisible             = true;
     IsClickThru           = false;
     Position              = new Point(20, 20);
     Size                  = new Size(300, 300);
     Url                   = "";
     MaxFrameRate          = 30;
     globalHotkeyEnabled   = false;
     GlobalHotkey          = Keys.None;
     globalHotkeyModifiers = Keys.None;
     globalHotkeyType      = GlobalHotkeyType.ToggleVisible;
 }
Пример #2
0
 protected OverlayConfigBase(string name)
 {
     this.Name                  = name;
     this.IsVisible             = true;
     this.IsClickThru           = false;
     this.Position              = new System.Drawing.Point(20, 20);
     this.Size                  = new System.Drawing.Size(300, 300);
     this.Url                   = "";
     this.MaxFrameRate          = 30;
     this.globalHotkeyEnabled   = false;
     this.GlobalHotkey          = Keys.None;
     this.globalHotkeyModifiers = Keys.None;
     this.globalHotkeyType      = GlobalHotkeyType.ToggleVisible;
 }
Пример #3
0
 public GlobalHotkeyTypeChangedEventArgs(GlobalHotkeyType newHotkeyType)
 {
     this.NewHotkeyType = newHotkeyType;
 }