ImageGear for .NET
Before Starting the UI
Send Feedback
ImageGear for .NET User Guide > Getting Started > ImageGear for .NET Visual Studio 2010 Tutorials > ImageGear for .NET C# WPF Tutorial > Before Starting the UI

Glossary Item Box

Before touching the designer or editing any xaml, it's useful to do to a quick build and some work on the code behind in the window's .xaml.cs file.

  1. Go to Build > Build Solution.
  2. Now declare the public static RoutedCommands required for this project in the .xaml.cs file. Open MainWindow.xaml.cs and add code similar to the following within the body of your MainWindow class:
     
    C# Copy Code
    public static RoutedCommand ExitCmd = new RoutedCommand();
    public static RoutedCommand ZoomInCmd = new RoutedCommand();
    public static RoutedCommand ZoomOutCmd = new RoutedCommand();
    public static RoutedCommand Rotate90Cmd = new RoutedCommand();
    public static RoutedCommand Rotate180Cmd = new RoutedCommand();
    public static RoutedCommand Rotate270Cmd = new RoutedCommand();
©2013. Accusoft Corporation. All Rights Reserved.