- Timestamp:
- 12/29/11 04:17:02 (13 years ago)
- Location:
- trunk/sources/HeuristicLab.MainForm.WindowsForms/3.3/Controls
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.MainForm.WindowsForms/3.3/Controls/ViewHost.Designer.cs
r6342 r7244 46 46 private void InitializeComponent() { 47 47 this.components = new System.ComponentModel.Container(); 48 System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ViewHost));49 48 this.messageLabel = new System.Windows.Forms.Label(); 50 49 this.viewsLabel = new System.Windows.Forms.Label(); … … 73 72 this.viewsLabel.Size = new System.Drawing.Size(16, 16); 74 73 this.viewsLabel.TabIndex = 0; 75 this.toolTip.SetToolTip(this.viewsLabel, "Double-click to open a new window of the current view.\r\nRight-click to change cur" + 76 "rent view.\r\nDrag icon to copy or link content to another view."); 74 this.toolTip.SetToolTip(this.viewsLabel, 75 "Double-click to open a new window of the current view." + System.Environment.NewLine + 76 "Right-click to change current view." + System.Environment.NewLine + 77 "Drag icon to copy or link content to another view."); 77 78 this.viewsLabel.DoubleClick += new System.EventHandler(this.viewsLabel_DoubleClick); 78 79 this.viewsLabel.MouseDown += new System.Windows.Forms.MouseEventHandler(this.viewsLabel_MouseDown); … … 95 96 this.configurationLabel.Name = "configurationLabel"; 96 97 this.configurationLabel.Size = new System.Drawing.Size(16, 16); 97 this.configurationLabel.TabIndex = 0; 98 this.configurationLabel.TabIndex = 1; 99 this.toolTip.SetToolTip(this.configurationLabel, "Double-click to open view configuration."); 98 100 this.configurationLabel.Visible = false; 99 this.configurationLabel.MouseDoubleClick += new System.Windows.Forms.MouseEventHandler(this.configurationLabel_ MouseDoubleClick);101 this.configurationLabel.MouseDoubleClick += new System.Windows.Forms.MouseEventHandler(this.configurationLabel_DoubleClick); 100 102 // 101 103 // ViewHost … … 111 113 112 114 } 115 #endregion 113 116 114 #endregion115 117 private System.Windows.Forms.Label viewsLabel; 116 118 private System.Windows.Forms.Label messageLabel; -
trunk/sources/HeuristicLab.MainForm.WindowsForms/3.3/Controls/ViewHost.cs
r6951 r7244 293 293 } 294 294 295 private void configurationLabel_ MouseDoubleClick(object sender, MouseEventArgs e) {295 private void configurationLabel_DoubleClick(object sender, MouseEventArgs e) { 296 296 ((IConfigureableView)ActiveView).ShowConfiguration(); 297 297 }
Note: See TracChangeset
for help on using the changeset viewer.