Example #1
0
 public MySettings CopyTo(MySettings other)
 {
     other.BoolOption1   = this.BoolOption1;
     other.BoolOption2   = this.BoolOption2;
     other.StringOption3 = this.StringOption3;
     return(other);
 }
Example #2
0
		CommandLoader(IWpfCommandService wpfCommandService, MySettings mySettings) {
			var cmds = wpfCommandService.GetCommands(ControlConstants.GUID_DOCUMENTVIEWER_UICONTEXT);
			// This command will be added to all text editors
			cmds.Add(Option1Command,
				(s, e) => mySettings.BoolOption1 = !mySettings.BoolOption1,
				(s, e) => e.CanExecute = true,
				ModifierKeys.Control | ModifierKeys.Alt, Key.Q);
		}
Example #3
0
        CommandLoader(IWpfCommandService wpfCommandService, MySettings mySettings)
        {
            var cmds = wpfCommandService.GetCommands(ControlConstants.GUID_DOCUMENTVIEWER_UICONTEXT);

            // This command will be added to all text editors
            cmds.Add(Option1Command,
                     (s, e) => mySettings.BoolOption1 = !mySettings.BoolOption1,
                     (s, e) => e.CanExecute           = true,
                     ModifierKeys.Control | ModifierKeys.Alt, Key.Q);
        }
Example #4
0
 TextEditorCommand1(MySettings mySettings) => this.mySettings = mySettings;
Example #5
0
 MyAppSettingsPageProvider(MySettings mySettings) => this.mySettings = mySettings;
Example #6
0
 public MyAppSettingsPage(MySettings mySettings)
 {
     this.globalSettings = mySettings;
     this.newSettings    = mySettings.Clone();
 }
Example #7
0
 TextEditorCommand2(MySettings mySettings)
 {
     this.mySettings = mySettings;
 }
Example #8
0
		public MyAppSettingsPage(MySettings mySettings) {
			globalSettings = mySettings;
			newSettings = mySettings.Clone();
		}
Example #9
0
		MyAppSettingsPageProvider(MySettings mySettings) {
			this.mySettings = mySettings;
		}
Example #10
0
		public MySettings CopyTo(MySettings other) {
			other.BoolOption1 = BoolOption1;
			other.BoolOption2 = BoolOption2;
			other.StringOption3 = StringOption3;
			return other;
		}
Example #11
0
		TextEditorCommand2(MySettings mySettings) {
			this.mySettings = mySettings;
		}
Example #12
0
 MyAppSettingsTabProvider(MySettings mySettings)
 {
     this.mySettings = mySettings;
 }
Example #13
0
 public MyAppSettingsPage(MySettings mySettings)
 {
     globalSettings = mySettings;
     newSettings    = mySettings.Clone();
 }
Example #14
0
 MiscOptionProvider(MySettings mySettings)
 {
     this.mySettings = mySettings;
 }