/// <summary>
		/// Initializes a new instance of the <see cref="PrintTool"/> class.
		/// </summary>
		public PrintTool()
		{
            printToolConfigView = new PrintToolConfigurationView() { Margin = new Thickness(10, 10, 10, 0) };
			printToolView = new PrintToolView() 
            { 
                Margin = new Thickness(15,15,15,10),
                Width = 300
            };
		}
Example #2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="PrintTool"/> class.
 /// </summary>
 public PrintTool()
 {
     printToolConfigView = new PrintToolConfigurationView()
     {
         Margin = new Thickness(10, 10, 10, 0)
     };
     printToolView = new PrintToolView()
     {
         Margin = new Thickness(15, 15, 15, 10),
         Width  = 300
     };
 }