Widow – Diff between revs 1 and 6

Subversion Repositories:
Rev:
Show entire fileIgnore whitespace
Rev 1 Rev 6
Line 6... Line 6...
6 { 6 {
7 #region Public Enums, Properties and Fields 7 #region Public Enums, Properties and Fields
Line 8... Line 8...
8   8  
Line 9... Line 9...
9 public bool OnWindowCreate { get; set; } 9 public bool OnWindowCreate { get; set; }
Line 10... Line 10...
10   10  
Line 11... Line 11...
11 public Form1 Form { get; set; } 11 public MainForm Form { get; set; }
Line 22... Line 22...
22   22  
23 public Apply() 23 public Apply()
24 { 24 {
Line 25... Line 25...
25 } 25 }
26   26  
27 public Apply(Form1 form1) : this() 27 public Apply(MainForm mainForm) : this()
Line 28... Line 28...
28 { 28 {
29 Form = form1; 29 Form = mainForm;
Line 30... Line 30...
30   30  
31 Form.WindowCreated += Form_WindowCreated; 31 Form.WindowCreated += Form_WindowCreated;
32 } 32 }
33   33  
Line 34... Line 34...
34 public Apply(Form1 form1, Windows.Windows windows) : this(form1) 34 public Apply(MainForm mainForm, Windows.Windows windows) : this(mainForm)