ApplicationCommands.cs :  » 2.6.4-mono-.net-core » System.Windows » System » Windows » Input » C# / CSharp Open Source

Home
C# / CSharp Open Source
1.2.6.4 mono .net core
2.2.6.4 mono core
3.Aspect Oriented Frameworks
4.Bloggers
5.Build Systems
6.Business Application
7.Charting Reporting Tools
8.Chat Servers
9.Code Coverage Tools
10.Content Management Systems CMS
11.CRM ERP
12.Database
13.Development
14.Email
15.Forum
16.Game
17.GIS
18.GUI
19.IDEs
20.Installers Generators
21.Inversion of Control Dependency Injection
22.Issue Tracking
23.Logging Tools
24.Message
25.Mobile
26.Network Clients
27.Network Servers
28.Office
29.PDF
30.Persistence Frameworks
31.Portals
32.Profilers
33.Project Management
34.RSS RDF
35.Rule Engines
36.Script
37.Search Engines
38.Sound Audio
39.Source Control
40.SQL Clients
41.Template Engines
42.Testing
43.UML
44.Web Frameworks
45.Web Service
46.Web Testing
47.Wiki Engines
48.Windows Presentation Foundation
49.Workflows
50.XML Parsers
C# / C Sharp
C# / C Sharp by API
C# / CSharp Tutorial
C# / CSharp Open Source » 2.6.4 mono .net core » System.Windows 
System.Windows » System » Windows » Input » ApplicationCommands.cs
// Permission is hereby granted, free of charge, to any person obtaining
// a copy of this software and associated documentation files (the
// "Software"), to deal in the Software without restriction, including
// without limitation the rights to use, copy, modify, merge, publish,
// distribute, sublicense, and/or sell copies of the Software, and to
// permit persons to whom the Software is furnished to do so, subject to
// the following conditions:
// 
// The above copyright notice and this permission notice shall be
// included in all copies or substantial portions of the Software.
// 
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
//
// Copyright (c) 2007 Novell, Inc. (http://www.novell.com)
//
// Authors:
//  Chris Toshok (toshok@ximian.com)
//

using System;

namespace System.Windows.Input{

  public static class ApplicationCommands {
    static RoutedUICommand cancelPrint;
    static RoutedUICommand close;
    static RoutedUICommand contextMenu;
    static RoutedUICommand copy;
    static RoutedUICommand correctionList;
    static RoutedUICommand cut;
    static RoutedUICommand delete;
    static RoutedUICommand find;
    static RoutedUICommand help;
    static RoutedUICommand new_;
    static RoutedUICommand open;
    static RoutedUICommand paste;
    static RoutedUICommand print;
    static RoutedUICommand printPreview;
    static RoutedUICommand properties;
    static RoutedUICommand redo;
    static RoutedUICommand replace;
    static RoutedUICommand save;
    static RoutedUICommand saveAs;
    static RoutedUICommand selectAll;
    static RoutedUICommand stop;
    static RoutedUICommand undo;
    static RoutedUICommand notACommand;

    public static RoutedUICommand CancelPrint {
      get {
        if (cancelPrint == null)
          cancelPrint = new RoutedUICommand ("Cancel Print", "CancelPrint",
                     typeof (ApplicationCommands),
                     new InputGestureCollection());
        return cancelPrint;
      }
    }

    public static RoutedUICommand Close {
      get {
        if (close == null)
          close = new RoutedUICommand ("Close", "Close",
                     typeof (ApplicationCommands),
                     new InputGestureCollection());
        return close;
      }
    }

    public static RoutedUICommand ContextMenu {
      get {
        if (contextMenu == null) {
          InputGestureCollection gestures = new InputGestureCollection ();
          gestures.AddRange (new InputGesture[] { new KeyGesture (Key.F10, ModifierKeys.Shift, "Shift+F10"),
                    new KeyGesture (Key.Apps, ModifierKeys.None, "Apps") });
          contextMenu = new RoutedUICommand ("Context Menu", "ContextMenu",
                     typeof (ApplicationCommands),
                     gestures);
        }
        return contextMenu;
      }
    }

    public static RoutedUICommand Copy {
      get {
        if (copy == null) {
          InputGestureCollection gestures = new InputGestureCollection ();
          gestures.AddRange (new InputGesture[] { new KeyGesture (Key.C, ModifierKeys.Control, "Ctrl+C"),
                    new KeyGesture (Key.Insert, ModifierKeys.Shift, "Shift+Insert") });
          copy = new RoutedUICommand ("Copy", "Copy",
                    typeof (ApplicationCommands),
                    gestures);
        }
        return copy;
      }
    }

    public static RoutedUICommand CorrectionList {
      get {
        if (correctionList == null)
          correctionList = new RoutedUICommand ("Correction List", "CorrectionList",
                        typeof (ApplicationCommands), new InputGestureCollection());
        return correctionList;
      }
    }

    public static RoutedUICommand Cut {
      get {
        if (cut == null) {
          InputGestureCollection gestures = new InputGestureCollection ();
          gestures.AddRange (new InputGesture[] { new KeyGesture (Key.X, ModifierKeys.Control, "Ctrl+X"),
                    new KeyGesture (Key.Delete, ModifierKeys.Shift, "Shift+Delete") });
          cut = new RoutedUICommand ("Cut", "Cut",
                    typeof (ApplicationCommands),
                    gestures);
        }
        return cut;
      }
    }

    public static RoutedUICommand Delete {
      get {
        if (delete == null) {
          InputGestureCollection gestures = new InputGestureCollection ();
          gestures.Add (new KeyGesture (Key.Delete, ModifierKeys.None, "Del"));
          delete = new RoutedUICommand ("Delete", "Delete",
                    typeof (ApplicationCommands),
                    gestures);
        }
        return delete;
      }
    }

    public static RoutedUICommand Find {
      get {
        if (find == null) {
          InputGestureCollection gestures = new InputGestureCollection ();
          gestures.Add (new KeyGesture (Key.F, ModifierKeys.Control, "Ctrl+F"));
          find = new RoutedUICommand ("Find", "Find",
                    typeof (ApplicationCommands),
                    gestures);
        }
        return find;
      }
    }

    public static RoutedUICommand Help {
      get {
        if (help == null) {
          InputGestureCollection gestures = new InputGestureCollection ();
          gestures.Add (new KeyGesture (Key.F1, ModifierKeys.Control, "Ctrl+F1"));
          help = new RoutedUICommand ("Help", "Help",
                    typeof (ApplicationCommands),
                    gestures);
        }
        return help;
      }
    }

    public static RoutedUICommand New {
      get {
        if (new_ == null) {
          InputGestureCollection gestures = new InputGestureCollection ();
          gestures.Add (new KeyGesture (Key.N, ModifierKeys.Control, "Ctrl+N"));
          new_ = new RoutedUICommand ("New", "New",
                    typeof (ApplicationCommands),
                    gestures);
        }
        return new_;
      }
    }

    public static RoutedUICommand NotACommand {
      get {
        if (notACommand == null) {
          notACommand = new RoutedUICommand ("Not a Command", "NotACommand",
                     typeof (ApplicationCommands),
                     new InputGestureCollection());
        }
        return notACommand;
      }
    }

    public static RoutedUICommand Open {
      get {
        if (open == null) {
          InputGestureCollection gestures = new InputGestureCollection ();
          gestures.Add (new KeyGesture (Key.O, ModifierKeys.Control, "Ctrl+O"));
          open = new RoutedUICommand ("Open", "Open",
                    typeof (ApplicationCommands),
                    gestures);
        }
        return open;
      }
    }

    public static RoutedUICommand Paste {
      get {
        if (paste == null) {
          InputGestureCollection gestures = new InputGestureCollection ();
          gestures.AddRange (new InputGesture[] { new KeyGesture (Key.V, ModifierKeys.Control, "Ctrl+V"),
                    new KeyGesture (Key.Insert, ModifierKeys.Shift, "Shift+Insert") });
          paste = new RoutedUICommand ("Paste", "Paste",
                    typeof (ApplicationCommands),
                    gestures);
        }
        return paste;
      }
    }

    public static RoutedUICommand Print {
      get {
        if (print == null) {
          InputGestureCollection gestures = new InputGestureCollection ();
          gestures.Add (new KeyGesture (Key.P, ModifierKeys.Control, "Ctrl+P"));
          paste = new RoutedUICommand ("Print", "Print",
                    typeof (ApplicationCommands),
                    gestures);
        }
        return print;
      }

    }

    public static RoutedUICommand PrintPreview {
      get {
        if (printPreview == null) {
          InputGestureCollection gestures = new InputGestureCollection ();
          gestures.Add (new KeyGesture (Key.F2, ModifierKeys.Control, "Ctrl+F2"));
          printPreview = new RoutedUICommand ("Print Preview", "PrintPreview",
                    typeof (ApplicationCommands),
                    gestures);
        }
        return printPreview;
      }
    }

    public static RoutedUICommand Properties {
      get {
        if (properties == null) {
          InputGestureCollection gestures = new InputGestureCollection ();
          gestures.Add (new KeyGesture (Key.F4, ModifierKeys.None, "F4"));
          printPreview = new RoutedUICommand ("Properties", "Properties",
                    typeof (ApplicationCommands),
                    gestures);
        }
        return properties;
      }
    }

    public static RoutedUICommand Redo {
      get {
        if (redo == null) {
          InputGestureCollection gestures = new InputGestureCollection ();
          gestures.Add (new KeyGesture (Key.Y, ModifierKeys.Control, "Ctrl+Y"));
          redo = new RoutedUICommand ("Redo", "Redo",
                    typeof (ApplicationCommands),
                    gestures);
        }
        return redo;
      }
    }

    public static RoutedUICommand Replace {
      get {
        if (replace == null) {
          InputGestureCollection gestures = new InputGestureCollection ();
          gestures.Add (new KeyGesture (Key.H, ModifierKeys.Control, "Ctrl+H"));
          replace = new RoutedUICommand ("Replace", "Replace",
                       typeof (ApplicationCommands),
                       gestures);
        }
        return replace;
      }
    }

    public static RoutedUICommand Save {
      get {
        if (save == null) {
          InputGestureCollection gestures = new InputGestureCollection ();
          gestures.Add (new KeyGesture (Key.S, ModifierKeys.Control, "Ctrl+S"));
          save = new RoutedUICommand ("Save", "Save",
                    typeof (ApplicationCommands),
                    gestures);
        }
        return save;
      }
    }

    public static RoutedUICommand SaveAs {
      get {
        if (saveAs == null) {
          saveAs = new RoutedUICommand ("Save As", "SaveAs",
                      typeof (ApplicationCommands),
                      new InputGestureCollection());
        }
        return saveAs;
      }
    }

    public static RoutedUICommand SelectAll {
      get {
        if (selectAll == null) {
          InputGestureCollection gestures = new InputGestureCollection ();
          gestures.Add (new KeyGesture (Key.A, ModifierKeys.Control, "Ctrl+A"));
          selectAll = new RoutedUICommand ("Select All", "SelectAll",
                   typeof (ApplicationCommands),
                   gestures);
        }
        return selectAll;
      }
    }

    public static RoutedUICommand Stop {
      get {
        if (stop == null) {
          InputGestureCollection gestures = new InputGestureCollection ();
          gestures.Add (new KeyGesture (Key.Escape, ModifierKeys.None, "Esc"));
          stop = new RoutedUICommand ("Stop", "Stop",
                    typeof (ApplicationCommands),
                    gestures);
        }
        return stop;
      }
    }

    public static RoutedUICommand Undo {
      get {
        if (undo == null) {
          InputGestureCollection gestures = new InputGestureCollection ();
          gestures.Add (new KeyGesture (Key.Z, ModifierKeys.Control, "Ctrl+Z"));
          undo = new RoutedUICommand ("Undo", "Undo",
                    typeof (ApplicationCommands),
                    gestures);
        }
        return undo;
      }
    }
  }
}
www.java2v.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.