Widow

Subversion Repositories:
Compare Path: Rev
With Path: Rev
?path1? @ 5  →  ?path2? @ 6
/trunk/Widow/Apply.cs
@@ -8,7 +8,7 @@
 
public bool OnWindowCreate { get; set; }
 
public Form1 Form { get; set; }
public MainForm Form { get; set; }
 
#endregion
 
@@ -24,14 +24,14 @@
{
}
 
public Apply(Form1 form1) : this()
public Apply(MainForm mainForm) : this()
{
Form = form1;
Form = mainForm;
 
Form.WindowCreated += Form_WindowCreated;
}
 
public Apply(Form1 form1, Windows.Windows windows) : this(form1)
public Apply(MainForm mainForm, Windows.Windows windows) : this(mainForm)
{
Windows = windows;
}