示例#1
0
 public InterruptsWindow(OperatingSystemMainWindow osParent)
 {
     this.mainParent = null;
     this.osParent   = osParent;
     InitializeComponent();
     currentInstance = this;
     SetInterruptWindowInstance();
 }
示例#2
0
 public InterruptsWindow(MainWindow mainParent)
 {
     this.mainParent = mainParent;
     this.osParent   = null;
     InitializeComponent();
     currentInstance = this;
     SetInterruptWindowInstance();
 }
示例#3
0
 private void Window_Closing(object sender, System.ComponentModel.CancelEventArgs e)
 {
     currentInstance = null;
     SetInterruptWindowInstance();
 }