ImageGear for .NET User Guide > Getting Started > ImageGear for .NET Visual Studio 2008/2005 Tutorials > ImageGear for .NET C# WPF Tutorial > Before Starting the UI |
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.
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(); |