Changeset 9187 for branches/UnloadJobs
- Timestamp:
- 01/24/13 12:55:52 (12 years ago)
- Location:
- branches/UnloadJobs
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/UnloadJobs
- Property svn:mergeinfo changed
/trunk/sources merged: 9186
- Property svn:mergeinfo changed
-
branches/UnloadJobs/HeuristicLab.MainForm.WindowsForms/3.3/Controls/ViewContextMenuStrip.cs
r9184 r9187 22 22 using System; 23 23 using System.Collections.Generic; 24 using System.ComponentModel; 24 25 using System.Linq; 25 26 using System.Windows.Forms; … … 33 34 } 34 35 35 public ViewContextMenuStrip(object item) 36 : this() { 37 this.Item = item; 36 public ViewContextMenuStrip(IContainer container) 37 : base(container) { 38 InitializeComponent(); 39 this.menuItems = new Dictionary<Type, ToolStripMenuItem>(); 40 this.ignoredViewTypes = new List<Type>(); 38 41 } 39 42 -
branches/UnloadJobs/HeuristicLab.MainForm.WindowsForms/3.3/Controls/ViewHost.Designer.cs
r9184 r9187 48 48 this.messageLabel = new System.Windows.Forms.Label(); 49 49 this.viewsLabel = new System.Windows.Forms.Label(); 50 this.viewContextMenuStrip = new HeuristicLab.MainForm.WindowsForms.ViewContextMenuStrip( );50 this.viewContextMenuStrip = new HeuristicLab.MainForm.WindowsForms.ViewContextMenuStrip(this.components); 51 51 this.toolTip = new System.Windows.Forms.ToolTip(this.components); 52 52 this.configurationLabel = new System.Windows.Forms.Label();
Note: See TracChangeset
for help on using the changeset viewer.