Changeset 4867
- Timestamp:
- 11/20/10 01:26:20 (14 years ago)
- Location:
- trunk/sources/HeuristicLab.Core.Views/3.3
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Core.Views/3.3/TypeSelector.Designer.cs
r3588 r4867 47 47 private void InitializeComponent() { 48 48 this.components = new System.ComponentModel.Container(); 49 System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(TypeSelector));50 49 this.typesTreeView = new System.Windows.Forms.TreeView(); 51 50 this.imageList = new System.Windows.Forms.ImageList(this.components); … … 58 57 this.setTypeParameterButton = new System.Windows.Forms.Button(); 59 58 this.typeParametersListView = new System.Windows.Forms.ListView(); 59 this.columnHeader1 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); 60 60 this.descriptionTextBox = new System.Windows.Forms.TextBox(); 61 61 this.toolTip = new System.Windows.Forms.ToolTip(this.components); 62 this.columnHeader1 = new System.Windows.Forms.ColumnHeader();63 62 this.typesGroupBox.SuspendLayout(); 64 63 this.splitContainer.Panel1.SuspendLayout(); … … 84 83 this.typesTreeView.ShowNodeToolTips = true; 85 84 this.typesTreeView.Size = new System.Drawing.Size(219, 287); 86 this.typesTreeView.TabIndex = 0; 85 this.typesTreeView.TabIndex = 2; 86 this.typesTreeView.ItemDrag += new System.Windows.Forms.ItemDragEventHandler(this.typesTreeView_ItemDrag); 87 this.typesTreeView.AfterSelect += new System.Windows.Forms.TreeViewEventHandler(this.typesTreeView_AfterSelect); 87 88 this.typesTreeView.VisibleChanged += new System.EventHandler(this.typesTreeView_VisibleChanged); 88 this.typesTreeView.AfterSelect += new System.Windows.Forms.TreeViewEventHandler(this.typesTreeView_AfterSelect);89 this.typesTreeView.ItemDrag += new System.Windows.Forms.ItemDragEventHandler(this.typesTreeView_ItemDrag);90 89 // 91 90 // imageList … … 122 121 this.splitContainer.Size = new System.Drawing.Size(225, 595); 123 122 this.splitContainer.SplitterDistance = 471; 124 this.splitContainer.TabIndex = 2;123 this.splitContainer.TabIndex = 0; 125 124 // 126 125 // typeParametersSplitContainer … … 152 151 this.searchLabel.Name = "searchLabel"; 153 152 this.searchLabel.Size = new System.Drawing.Size(20, 20); 154 this.searchLabel.TabIndex = 1;153 this.searchLabel.TabIndex = 0; 155 154 this.toolTip.SetToolTip(this.searchLabel, "Enter string to search for types"); 156 155 // … … 162 161 this.searchTextBox.Name = "searchTextBox"; 163 162 this.searchTextBox.Size = new System.Drawing.Size(193, 20); 164 this.searchTextBox.TabIndex = 2;163 this.searchTextBox.TabIndex = 1; 165 164 this.toolTip.SetToolTip(this.searchTextBox, "Enter string to search for types"); 166 165 this.searchTextBox.TextChanged += new System.EventHandler(this.searchTextBox_TextChanged); -
trunk/sources/HeuristicLab.Core.Views/3.3/TypeSelector.cs
r4826 r4867 129 129 imageList.Images.Add(type.FullName, item.ItemImage); 130 130 typeNode.ImageIndex = imageList.Images.IndexOfKey(type.FullName); 131 } catch (Exception) { } 131 } 132 catch (Exception) { } 132 133 } 133 134 typeNode.SelectedImageIndex = typeNode.ImageIndex; -
trunk/sources/HeuristicLab.Core.Views/3.3/TypeSelectorDialog.Designer.cs
r3588 r4867 79 79 this.typeSelector.Name = "typeSelector"; 80 80 this.typeSelector.Size = new System.Drawing.Size(584, 520); 81 this.typeSelector.TabIndex = 3;81 this.typeSelector.TabIndex = 0; 82 82 this.typeSelector.SelectedTypeChanged += new System.EventHandler(this.typeSelector_SelectedTypeChanged); 83 83 //
Note: See TracChangeset
for help on using the changeset viewer.