public MainWindow() { InitializeComponent(); PressScheduleWindow window = new PressScheduleWindow(); window.Show(); Close(); }
public static void Load(string fileName, PressScheduleWindow window) { try { using (BinaryReader reader = new BinaryReader(new FileStream(fileName, FileMode.Open))) { } } catch (Exception) { MessageBox.Show("Load failed."); } }
public static void Attach(PressScheduleWindow window) { }