Example #1
0
 public CalendarPageEventArgs(CalendarPage page)
     : base()
 {
     Page = page;
 }
Example #2
0
 public CalendarSnapshotEventArgs(CalendarPage page, Rectangle bounds)
     : base()
 {
     Page   = page;
     Bounds = bounds;
 }
Example #3
0
 /// <summary>
 /// Initialize the form
 /// </summary>
 /// <param name="path">Path of the .emf file to display</param>
 public SnapshotForm(CalendarPage page, string path)
     : this()
 {
     Path           = path;
     pathLabel.Text = page.Path;
 }