Changeset 6841
- Timestamp:
- 09/27/11 17:46:25 (13 years ago)
- Location:
- trunk/sources/HeuristicLab.Optimizer/3.3
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Optimizer/3.3/MainFormTypeSelectionDialog.Designer.cs
r6827 r6841 81 81 this.rbSingleDocumentMainForm.TabIndex = 2; 82 82 this.rbSingleDocumentMainForm.TabStop = true; 83 this.rbSingleDocumentMainForm.Text = " Single Document";83 this.rbSingleDocumentMainForm.Text = "&Single Document"; 84 84 this.toolTip.SetToolTip(this.rbSingleDocumentMainForm, "Creates for each open document an own window"); 85 85 this.rbSingleDocumentMainForm.UseVisualStyleBackColor = true; … … 93 93 this.rbMultipleDocumentMainForm.TabIndex = 1; 94 94 this.rbMultipleDocumentMainForm.TabStop = true; 95 this.rbMultipleDocumentMainForm.Text = " Multiple Document";95 this.rbMultipleDocumentMainForm.Text = "&Multiple Document"; 96 96 this.toolTip.SetToolTip(this.rbMultipleDocumentMainForm, "Shows for each open document an own, nested window"); 97 97 this.rbMultipleDocumentMainForm.UseVisualStyleBackColor = true; … … 105 105 this.rbDockingMainForm.TabIndex = 0; 106 106 this.rbDockingMainForm.TabStop = true; 107 this.rbDockingMainForm.Text = " Docking";107 this.rbDockingMainForm.Text = "&Docking"; 108 108 this.toolTip.SetToolTip(this.rbDockingMainForm, "Displays open documents as tab pages. \r\nIf you have resizing issues in the user i" + 109 109 "nterface, please try the other options."); … … 131 131 this.Controls.Add(this.cancelButton); 132 132 this.Controls.Add(this.okButton); 133 this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog; 133 134 this.MaximizeBox = false; 134 135 this.MinimizeBox = false; … … 136 137 this.ShowIcon = false; 137 138 this.ShowInTaskbar = false; 139 this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Hide; 138 140 this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent; 139 141 this.Text = "Change MainForm Type"; -
trunk/sources/HeuristicLab.Optimizer/3.3/MenuItems/ChangeMainFormTypeMenuItem.cs
r6827 r6841 27 27 internal class ChangeMainFormTypeMenuItem : HeuristicLab.MainForm.WindowsForms.MenuItem, IOptimizerUserInterfaceItemProvider { 28 28 public override string Name { 29 get { return "Change MainForm Type..."; }29 get { return "Change &MainForm Type..."; } 30 30 } 31 31 public override IEnumerable<string> Structure {
Note: See TracChangeset
for help on using the changeset viewer.