Changeset 1571
- Timestamp:
- 1/18/2010 7:21:03 AM (3 years ago)
- Location:
- branches/eraser6/CodeReview
- Files:
-
- 11 edited
-
Eraser.DefaultPlugins/CustomMethodEditorForm.cs (modified) (1 diff)
-
Eraser.DefaultPlugins/CustomMethodPassEditor.cs (modified) (1 diff)
-
Eraser.DefaultPlugins/SettingsForm.cs (modified) (1 diff)
-
Eraser/AboutForm.cs (modified) (1 diff)
-
Eraser/LogForm.cs (modified) (1 diff)
-
Eraser/MainForm.cs (modified) (1 diff)
-
Eraser/ProgressForm.cs (modified) (1 diff)
-
Eraser/SchedulerPanel.cs (modified) (1 diff)
-
Eraser/TaskDataSelectionForm.cs (modified) (1 diff)
-
Eraser/TaskPropertiesForm.cs (modified) (1 diff)
-
Eraser/UpdateForm.cs (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/eraser6/CodeReview/Eraser.DefaultPlugins/CustomMethodEditorForm.cs
r1499 r1571 38 38 { 39 39 InitializeComponent(); 40 UXThemeApi.UpdateControlTheme(this);40 Theming.ApplyTheme(this); 41 41 } 42 42 -
branches/eraser6/CodeReview/Eraser.DefaultPlugins/CustomMethodPassEditor.cs
r1495 r1571 36 36 { 37 37 InitializeComponent(); 38 UXThemeApi.UpdateControlTheme(this);38 Theming.ApplyTheme(this); 39 39 } 40 40 -
branches/eraser6/CodeReview/Eraser.DefaultPlugins/SettingsForm.cs
r1495 r1571 39 39 { 40 40 InitializeComponent(); 41 UXThemeApi.UpdateControlTheme(this);41 Theming.ApplyTheme(this); 42 42 43 43 //Populate the list of erasure passes, except the FL16KB. -
branches/eraser6/CodeReview/Eraser/AboutForm.cs
r1360 r1571 57 57 //Create and position the dialog 58 58 InitializeComponent(); 59 UXThemeApi.UpdateControlTheme(this);59 Theming.ApplyTheme(this); 60 60 ClientSize = new Size(parent.ClientSize.Width, parent.ClientSize.Height); 61 61 Point point = parent.PointToScreen(new Point(0, 0)); -
branches/eraser6/CodeReview/Eraser/LogForm.cs
r1527 r1571 40 40 { 41 41 InitializeComponent(); 42 UXThemeApi.UpdateControlTheme(this);42 Theming.ApplyTheme(this); 43 43 44 44 //Update the title -
branches/eraser6/CodeReview/Eraser/MainForm.cs
r1527 r1571 50 50 CreateControl(); 51 51 52 UXThemeApi.UpdateControlTheme(this);53 UXThemeApi.UpdateControlTheme(notificationMenu);52 Theming.ApplyTheme(this); 53 Theming.ApplyTheme(notificationMenu); 54 54 55 55 //Connect to the executor task processing and processed events. -
branches/eraser6/CodeReview/Eraser/ProgressForm.cs
r1527 r1571 43 43 { 44 44 InitializeComponent(); 45 UXThemeApi.UpdateControlTheme(this);45 Theming.ApplyTheme(this); 46 46 this.task = task; 47 47 this.lastUpdate = DateTime.Now; -
branches/eraser6/CodeReview/Eraser/SchedulerPanel.cs
r1527 r1571 44 44 { 45 45 InitializeComponent(); 46 UXThemeApi.UpdateControlTheme(schedulerDefaultMenu);46 Theming.ApplyTheme(schedulerDefaultMenu); 47 47 48 48 //Populate the scheduler list-view with the current task list -
branches/eraser6/CodeReview/Eraser/TaskDataSelectionForm.cs
r1528 r1571 52 52 //Create the UI 53 53 InitializeComponent(); 54 UXThemeApi.UpdateControlTheme(this);54 Theming.ApplyTheme(this); 55 55 file.Checked = true; 56 56 -
branches/eraser6/CodeReview/Eraser/TaskPropertiesForm.cs
r1360 r1571 39 39 { 40 40 InitializeComponent(); 41 UXThemeApi.UpdateControlTheme(this);41 Theming.ApplyTheme(this); 42 42 scheduleTime.CustomFormat = DateTimeFormatInfo.CurrentInfo.ShortTimePattern; 43 43 -
branches/eraser6/CodeReview/Eraser/UpdateForm.cs
r1568 r1571 46 46 { 47 47 InitializeComponent(); 48 UXThemeApi.UpdateControlTheme(this);48 Theming.ApplyTheme(this); 49 49 updateListDownloader.RunWorkerAsync(); 50 50 }
Note: See TracChangeset
for help on using the changeset viewer.
