Changeset 2917 for trunk/sources/HeuristicLab.Parameters.Views/3.3
- Timestamp:
- 03/03/10 06:46:30 (15 years ago)
- Location:
- trunk/sources/HeuristicLab.Parameters.Views/3.3
- Files:
-
- 12 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Parameters.Views/3.3/ConstrainedValueParameterView.Designer.cs
r2852 r2917 45 45 /// </summary> 46 46 private void InitializeComponent() { 47 this.components = new System.ComponentModel.Container();48 47 this.valueGroupBox = new System.Windows.Forms.GroupBox(); 49 48 this.viewHost = new HeuristicLab.Core.Views.ViewHost(); 50 this.toolTip = new System.Windows.Forms.ToolTip(this.components);51 49 this.valueComboBox = new System.Windows.Forms.ComboBox(); 52 50 ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit(); … … 54 52 this.SuspendLayout(); 55 53 // 54 // dataTypeLabel 55 // 56 this.dataTypeLabel.Location = new System.Drawing.Point(3, 55); 57 // 56 58 // dataTypeTextBox 57 59 // 58 this.dataTypeTextBox.Location = new System.Drawing.Point(80, 94);60 this.dataTypeTextBox.Location = new System.Drawing.Point(80, 52); 59 61 this.dataTypeTextBox.Size = new System.Drawing.Size(306, 20); 60 62 // … … 69 71 // 70 72 this.descriptionTextBox.Location = new System.Drawing.Point(80, 26); 71 this.descriptionTextBox.Size = new System.Drawing.Size(306, 62);73 this.descriptionTextBox.Size = new System.Drawing.Size(306, 20); 72 74 // 73 75 // valueGroupBox … … 78 80 this.valueGroupBox.Controls.Add(this.viewHost); 79 81 this.valueGroupBox.Controls.Add(this.valueComboBox); 80 this.valueGroupBox.Location = new System.Drawing.Point(0, 120);82 this.valueGroupBox.Location = new System.Drawing.Point(0, 78); 81 83 this.valueGroupBox.Name = "valueGroupBox"; 82 this.valueGroupBox.Size = new System.Drawing.Size(386, 195);84 this.valueGroupBox.Size = new System.Drawing.Size(386, 237); 83 85 this.valueGroupBox.TabIndex = 6; 84 86 this.valueGroupBox.TabStop = false; … … 93 95 this.viewHost.Location = new System.Drawing.Point(6, 46); 94 96 this.viewHost.Name = "viewHost"; 95 this.viewHost.Size = new System.Drawing.Size(374, 1 43);97 this.viewHost.Size = new System.Drawing.Size(374, 185); 96 98 this.viewHost.TabIndex = 0; 97 99 this.viewHost.ViewType = null; … … 135 137 private System.Windows.Forms.GroupBox valueGroupBox; 136 138 private HeuristicLab.Core.Views.ViewHost viewHost; 137 private System.Windows.Forms.ToolTip toolTip;138 139 private System.Windows.Forms.ComboBox valueComboBox; 139 140 } -
trunk/sources/HeuristicLab.Parameters.Views/3.3/ConstrainedValueParameterView.cs
r2870 r2917 31 31 /// The visual representation of a <see cref="Parameter"/>. 32 32 /// </summary> 33 [View("ConstrainedValueParameter View")] 33 34 [Content(typeof(ConstrainedValueParameter<>), true)] 34 35 public sealed partial class ConstrainedValueParameterView<T> : ParameterView where T : class, IItem { -
trunk/sources/HeuristicLab.Parameters.Views/3.3/LookupParameterView.Designer.cs
r2790 r2917 52 52 // dataTypeLabel 53 53 // 54 this.dataTypeLabel.Location = new System.Drawing.Point(3, 123);54 this.dataTypeLabel.Location = new System.Drawing.Point(3, 81); 55 55 this.dataTypeLabel.TabIndex = 6; 56 56 // 57 57 // dataTypeTextBox 58 58 // 59 this.dataTypeTextBox.Location = new System.Drawing.Point(80, 120);59 this.dataTypeTextBox.Location = new System.Drawing.Point(80, 78); 60 60 this.dataTypeTextBox.Size = new System.Drawing.Size(306, 20); 61 61 this.dataTypeTextBox.TabIndex = 7; … … 76 76 // 77 77 this.descriptionTextBox.Location = new System.Drawing.Point(80, 52); 78 this.descriptionTextBox.Size = new System.Drawing.Size(306, 62);78 this.descriptionTextBox.Size = new System.Drawing.Size(306, 20); 79 79 this.descriptionTextBox.TabIndex = 5; 80 80 // … … 105 105 this.Controls.Add(this.actualNameLabel); 106 106 this.Name = "LookupParameterView"; 107 this.Size = new System.Drawing.Size(386, 1 43);107 this.Size = new System.Drawing.Size(386, 105); 108 108 this.Controls.SetChildIndex(this.descriptionTextBox, 0); 109 this.Controls.SetChildIndex(this.dataTypeTextBox, 0); 109 110 this.Controls.SetChildIndex(this.descriptionLabel, 0); 110 this.Controls.SetChildIndex(this.dataType TextBox, 0);111 this.Controls.SetChildIndex(this.dataTypeLabel, 0); 111 112 this.Controls.SetChildIndex(this.actualNameLabel, 0); 112 this.Controls.SetChildIndex(this.dataTypeLabel, 0);113 113 this.Controls.SetChildIndex(this.nameTextBox, 0); 114 114 this.Controls.SetChildIndex(this.actualNameTextBox, 0); -
trunk/sources/HeuristicLab.Parameters.Views/3.3/LookupParameterView.cs
r2818 r2917 29 29 /// The visual representation of a <see cref="Parameter"/>. 30 30 /// </summary> 31 [View("LookupParameter View")] 31 32 [Content(typeof(LookupParameter<>), true)] 32 33 [Content(typeof(ILookupParameter<>), false)] -
trunk/sources/HeuristicLab.Parameters.Views/3.3/OptionalValueParameterView.Designer.cs
r2891 r2917 46 46 /// </summary> 47 47 private void InitializeComponent() { 48 this.components = new System.ComponentModel.Container();49 48 this.valueGroupBox = new System.Windows.Forms.GroupBox(); 50 49 this.valuePanel = new System.Windows.Forms.Panel(); … … 52 51 this.clearValueButton = new System.Windows.Forms.Button(); 53 52 this.setValueButton = new System.Windows.Forms.Button(); 54 this.toolTip = new System.Windows.Forms.ToolTip(this.components);55 53 ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit(); 56 54 this.valueGroupBox.SuspendLayout(); … … 58 56 this.SuspendLayout(); 59 57 // 58 // dataTypeLabel 59 // 60 this.dataTypeLabel.Location = new System.Drawing.Point(3, 55); 61 // 60 62 // dataTypeTextBox 61 63 // 62 this.dataTypeTextBox.Location = new System.Drawing.Point(80, 94);64 this.dataTypeTextBox.Location = new System.Drawing.Point(80, 52); 63 65 this.dataTypeTextBox.Size = new System.Drawing.Size(306, 20); 64 66 // … … 73 75 // 74 76 this.descriptionTextBox.Location = new System.Drawing.Point(80, 26); 75 this.descriptionTextBox.Size = new System.Drawing.Size(306, 62);77 this.descriptionTextBox.Size = new System.Drawing.Size(306, 20); 76 78 // 77 79 // valueGroupBox … … 83 85 this.valueGroupBox.Controls.Add(this.clearValueButton); 84 86 this.valueGroupBox.Controls.Add(this.setValueButton); 85 this.valueGroupBox.Location = new System.Drawing.Point(0, 120);87 this.valueGroupBox.Location = new System.Drawing.Point(0, 78); 86 88 this.valueGroupBox.Name = "valueGroupBox"; 87 this.valueGroupBox.Size = new System.Drawing.Size(386, 195);89 this.valueGroupBox.Size = new System.Drawing.Size(386, 237); 88 90 this.valueGroupBox.TabIndex = 6; 89 91 this.valueGroupBox.TabStop = false; … … 99 101 this.valuePanel.Location = new System.Drawing.Point(6, 49); 100 102 this.valuePanel.Name = "valuePanel"; 101 this.valuePanel.Size = new System.Drawing.Size(374, 1 40);103 this.valuePanel.Size = new System.Drawing.Size(374, 182); 102 104 this.valuePanel.TabIndex = 0; 103 105 this.valuePanel.DragOver += new System.Windows.Forms.DragEventHandler(this.valuePanel_DragEnterOver); … … 111 113 this.viewHost.Location = new System.Drawing.Point(0, 0); 112 114 this.viewHost.Name = "viewHost"; 113 this.viewHost.Size = new System.Drawing.Size(374, 1 40);115 this.viewHost.Size = new System.Drawing.Size(374, 182); 114 116 this.viewHost.TabIndex = 0; 117 this.viewHost.ViewType = null; 115 118 // 116 119 // clearValueButton … … 165 168 protected HeuristicLab.Core.Views.ViewHost viewHost; 166 169 protected System.Windows.Forms.Button setValueButton; 167 protected System.Windows.Forms.ToolTip toolTip;168 170 protected System.Windows.Forms.Button clearValueButton; 169 171 } -
trunk/sources/HeuristicLab.Parameters.Views/3.3/OptionalValueParameterView.cs
r2891 r2917 30 30 /// The visual representation of a <see cref="Parameter"/>. 31 31 /// </summary> 32 [View("OptionalValueParameter View")] 32 33 [Content(typeof(OptionalValueParameter<>), true)] 33 34 [Content(typeof(IValueParameter<>), false)] -
trunk/sources/HeuristicLab.Parameters.Views/3.3/ParameterView.Designer.cs
r2790 r2917 54 54 this.errorProvider.SetIconAlignment(this.nameTextBox, System.Windows.Forms.ErrorIconAlignment.MiddleLeft); 55 55 this.errorProvider.SetIconPadding(this.nameTextBox, 2); 56 this.nameTextBox.Location = new System.Drawing.Point(72, 0);57 56 this.nameTextBox.Size = new System.Drawing.Size(321, 20); 58 //59 // nameLabel60 //61 this.nameLabel.Location = new System.Drawing.Point(3, 3);62 //63 // descriptionLabel64 //65 this.descriptionLabel.Location = new System.Drawing.Point(3, 29);66 57 // 67 58 // descriptionTextBox 68 59 // 69 this.descriptionTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 70 | System.Windows.Forms.AnchorStyles.Right))); 71 this.descriptionTextBox.Location = new System.Drawing.Point(72, 26); 72 this.descriptionTextBox.Size = new System.Drawing.Size(321, 62); 60 this.descriptionTextBox.Size = new System.Drawing.Size(321, 20); 73 61 // 74 62 // dataTypeLabel 75 63 // 76 64 this.dataTypeLabel.AutoSize = true; 77 this.dataTypeLabel.Location = new System.Drawing.Point(3, 97);65 this.dataTypeLabel.Location = new System.Drawing.Point(3, 55); 78 66 this.dataTypeLabel.Name = "dataTypeLabel"; 79 67 this.dataTypeLabel.Size = new System.Drawing.Size(60, 13); … … 85 73 this.dataTypeTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 86 74 | System.Windows.Forms.AnchorStyles.Right))); 87 this.dataTypeTextBox.Location = new System.Drawing.Point(72, 94);75 this.dataTypeTextBox.Location = new System.Drawing.Point(72, 52); 88 76 this.dataTypeTextBox.Name = "dataTypeTextBox"; 89 77 this.dataTypeTextBox.ReadOnly = true; … … 98 86 this.Controls.Add(this.dataTypeTextBox); 99 87 this.Name = "ParameterView"; 100 this.Size = new System.Drawing.Size(393, 124);88 this.Size = new System.Drawing.Size(393, 79); 101 89 this.Controls.SetChildIndex(this.dataTypeTextBox, 0); 102 90 this.Controls.SetChildIndex(this.descriptionTextBox, 0); -
trunk/sources/HeuristicLab.Parameters.Views/3.3/ParameterView.cs
r2818 r2917 29 29 /// The visual representation of a <see cref="Parameter"/>. 30 30 /// </summary> 31 [View("Parameter View")] 31 32 [Content(typeof(Parameter), true)] 32 33 [Content(typeof(IParameter), false)] -
trunk/sources/HeuristicLab.Parameters.Views/3.3/ValueLookupParameterView.Designer.cs
r2796 r2917 46 46 /// </summary> 47 47 private void InitializeComponent() { 48 this.components = new System.ComponentModel.Container();49 48 this.valueGroupBox = new System.Windows.Forms.GroupBox(); 50 49 this.valuePanel = new System.Windows.Forms.Panel(); … … 52 51 this.clearValueButton = new System.Windows.Forms.Button(); 53 52 this.setValueButton = new System.Windows.Forms.Button(); 54 this.toolTip = new System.Windows.Forms.ToolTip(this.components);55 53 this.actualNameTextBox = new System.Windows.Forms.TextBox(); 56 54 this.actualNameLabel = new System.Windows.Forms.Label(); … … 62 60 // dataTypeLabel 63 61 // 64 this.dataTypeLabel.Location = new System.Drawing.Point(3, 123);62 this.dataTypeLabel.Location = new System.Drawing.Point(3, 81); 65 63 this.dataTypeLabel.TabIndex = 6; 66 64 // 67 65 // dataTypeTextBox 68 66 // 69 this.dataTypeTextBox.Location = new System.Drawing.Point(80, 120);67 this.dataTypeTextBox.Location = new System.Drawing.Point(80, 78); 70 68 this.dataTypeTextBox.Size = new System.Drawing.Size(306, 20); 71 69 this.dataTypeTextBox.TabIndex = 7; … … 86 84 // 87 85 this.descriptionTextBox.Location = new System.Drawing.Point(80, 52); 88 this.descriptionTextBox.Size = new System.Drawing.Size(306, 62);86 this.descriptionTextBox.Size = new System.Drawing.Size(306, 20); 89 87 this.descriptionTextBox.TabIndex = 5; 90 88 // … … 97 95 this.valueGroupBox.Controls.Add(this.clearValueButton); 98 96 this.valueGroupBox.Controls.Add(this.setValueButton); 99 this.valueGroupBox.Location = new System.Drawing.Point(0, 1 46);97 this.valueGroupBox.Location = new System.Drawing.Point(0, 104); 100 98 this.valueGroupBox.Name = "valueGroupBox"; 101 this.valueGroupBox.Size = new System.Drawing.Size(386, 169);99 this.valueGroupBox.Size = new System.Drawing.Size(386, 211); 102 100 this.valueGroupBox.TabIndex = 8; 103 101 this.valueGroupBox.TabStop = false; … … 113 111 this.valuePanel.Location = new System.Drawing.Point(6, 49); 114 112 this.valuePanel.Name = "valuePanel"; 115 this.valuePanel.Size = new System.Drawing.Size(374, 1 14);113 this.valuePanel.Size = new System.Drawing.Size(374, 156); 116 114 this.valuePanel.TabIndex = 0; 117 115 this.valuePanel.DragOver += new System.Windows.Forms.DragEventHandler(this.valuePanel_DragEnterOver); … … 125 123 this.viewHost.Location = new System.Drawing.Point(0, 0); 126 124 this.viewHost.Name = "viewHost"; 127 this.viewHost.Size = new System.Drawing.Size(374, 1 14);125 this.viewHost.Size = new System.Drawing.Size(374, 156); 128 126 this.viewHost.TabIndex = 0; 127 this.viewHost.ViewType = null; 129 128 // 130 129 // clearValueButton … … 202 201 protected HeuristicLab.Core.Views.ViewHost viewHost; 203 202 protected System.Windows.Forms.Button setValueButton; 204 protected System.Windows.Forms.ToolTip toolTip;205 203 protected System.Windows.Forms.Button clearValueButton; 206 204 protected System.Windows.Forms.TextBox actualNameTextBox; -
trunk/sources/HeuristicLab.Parameters.Views/3.3/ValueLookupParameterView.cs
r2818 r2917 30 30 /// The visual representation of a <see cref="Parameter"/>. 31 31 /// </summary> 32 [View("ValueLookupParameter View")] 32 33 [Content(typeof(ValueLookupParameter<>), true)] 33 34 [Content(typeof(IValueLookupParameter<>), false)] -
trunk/sources/HeuristicLab.Parameters.Views/3.3/ValueParameterView.Designer.cs
r2891 r2917 53 53 this.SuspendLayout(); 54 54 // 55 // dataTypeLabel 56 // 57 this.dataTypeLabel.Location = new System.Drawing.Point(3, 55); 58 // 55 59 // dataTypeTextBox 56 60 // 57 this.dataTypeTextBox.Location = new System.Drawing.Point(80, 94);61 this.dataTypeTextBox.Location = new System.Drawing.Point(80, 52); 58 62 this.dataTypeTextBox.Size = new System.Drawing.Size(306, 20); 59 63 // … … 68 72 // 69 73 this.descriptionTextBox.Location = new System.Drawing.Point(80, 26); 70 this.descriptionTextBox.Size = new System.Drawing.Size(306, 62);74 this.descriptionTextBox.Size = new System.Drawing.Size(306, 20); 71 75 // 72 76 // valueGroupBox … … 76 80 | System.Windows.Forms.AnchorStyles.Right))); 77 81 this.valueGroupBox.Controls.Add(this.valuePanel); 78 this.valueGroupBox.Location = new System.Drawing.Point(0, 120);82 this.valueGroupBox.Location = new System.Drawing.Point(0, 78); 79 83 this.valueGroupBox.Name = "valueGroupBox"; 80 this.valueGroupBox.Size = new System.Drawing.Size(386, 195);84 this.valueGroupBox.Size = new System.Drawing.Size(386, 237); 81 85 this.valueGroupBox.TabIndex = 6; 82 86 this.valueGroupBox.TabStop = false; … … 92 96 this.valuePanel.Location = new System.Drawing.Point(6, 19); 93 97 this.valuePanel.Name = "valuePanel"; 94 this.valuePanel.Size = new System.Drawing.Size(374, 170);98 this.valuePanel.Size = new System.Drawing.Size(374, 212); 95 99 this.valuePanel.TabIndex = 0; 96 100 this.valuePanel.DragOver += new System.Windows.Forms.DragEventHandler(this.valuePanel_DragEnterOver); … … 104 108 this.viewHost.Location = new System.Drawing.Point(0, 0); 105 109 this.viewHost.Name = "viewHost"; 106 this.viewHost.Size = new System.Drawing.Size(374, 170);110 this.viewHost.Size = new System.Drawing.Size(374, 212); 107 111 this.viewHost.TabIndex = 0; 108 112 this.viewHost.ViewType = null; -
trunk/sources/HeuristicLab.Parameters.Views/3.3/ValueParameterView.cs
r2891 r2917 30 30 /// The visual representation of a <see cref="Parameter"/>. 31 31 /// </summary> 32 [View("ValueParameter View")] 32 33 [Content(typeof(ValueParameter<>), true)] 33 34 public partial class ValueParameterView<T> : ParameterView where T : class, IItem {
Note: See TracChangeset
for help on using the changeset viewer.