Changeset 784
- Timestamp:
- 12/11/2008 6:54:43 AM (4 years ago)
- Location:
- branches/eraser6/Eraser
- Files:
-
- 3 edited
-
MainForm.Designer.cs (modified) (1 diff)
-
MainForm.cs (modified) (3 diffs)
-
UpdateForm.cs (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/eraser6/Eraser/MainForm.Designer.cs
r513 r784 183 183 this.Name = "MainForm"; 184 184 this.Paint += new System.Windows.Forms.PaintEventHandler(this.MainForm_Paint); 185 this.VisibleChanged += new System.EventHandler(this.MainForm_VisibleChanged); 185 186 this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.MainForm_FormClosing); 186 187 this.Resize += new System.EventHandler(this.MainForm_Resize); -
branches/eraser6/Eraser/MainForm.cs
r775 r784 231 231 else if (HideWhenMinimised) 232 232 { 233 Hide();233 Visible = false; 234 234 } 235 235 } … … 346 346 { 347 347 e.Cancel = true; 348 Hide(); 348 Visible = false; 349 } 350 } 351 352 private void MainForm_VisibleChanged(object sender, EventArgs e) 353 { 354 if (Visible) 355 { 356 WindowState = FormWindowState.Normal; 357 Activate(); 349 358 } 350 359 } … … 353 362 { 354 363 Visible = true; 355 WindowState = FormWindowState.Normal;356 Activate();357 364 } 358 365 -
branches/eraser6/Eraser/UpdateForm.cs
r659 r784 140 140 141 141 progressPanel.Visible = false; 142 updatesPanel. Show();142 updatesPanel.Visible = true; 143 143 144 144 //First list all available mirrors … … 236 236 { 237 237 updatesPanel.Visible = false; 238 downloadingPnl. Show();238 downloadingPnl.Visible = true; 239 239 List<UpdateManager.Update> updatesToInstall = 240 240 new List<UpdateManager.Update>(); … … 356 356 357 357 downloadingPnl.Visible = false; 358 installingPnl. Show();358 installingPnl.Visible = true; 359 359 360 360 foreach (ListViewItem item in downloadingLv.Items)
Note: See TracChangeset
for help on using the changeset viewer.
