Changeset 2917 for trunk/sources/HeuristicLab.Core.Views
- Timestamp:
- 03/03/10 06:46:30 (15 years ago)
- Location:
- trunk/sources/HeuristicLab.Core.Views/3.3
- Files:
-
- 2 added
- 26 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Core.Views/3.3/EngineView.Designer.cs
r2916 r2917 45 45 /// </summary> 46 46 private void InitializeComponent() { 47 this.components = new System.ComponentModel.Container();48 47 this.executionTimeTextBox = new System.Windows.Forms.TextBox(); 49 48 this.executionTimeLabel = new System.Windows.Forms.Label(); 50 this.stopButton = new System.Windows.Forms.Button();51 this.startButton = new System.Windows.Forms.Button();52 this.toolTip = new System.Windows.Forms.ToolTip(this.components);53 49 this.logTextBox = new System.Windows.Forms.TextBox(); 50 this.logLabel = new System.Windows.Forms.Label(); 54 51 this.SuspendLayout(); 55 52 // 56 53 // executionTimeTextBox 57 54 // 58 this.executionTimeTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); 59 this.executionTimeTextBox.Location = new System.Drawing.Point(661, 620); 55 this.executionTimeTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 56 | System.Windows.Forms.AnchorStyles.Right))); 57 this.executionTimeTextBox.Location = new System.Drawing.Point(92, 0); 60 58 this.executionTimeTextBox.Name = "executionTimeTextBox"; 61 59 this.executionTimeTextBox.ReadOnly = true; 62 this.executionTimeTextBox.Size = new System.Drawing.Size( 141, 20);63 this.executionTimeTextBox.TabIndex = 5;60 this.executionTimeTextBox.Size = new System.Drawing.Size(338, 20); 61 this.executionTimeTextBox.TabIndex = 1; 64 62 // 65 63 // executionTimeLabel 66 64 // 67 this.executionTimeLabel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));68 65 this.executionTimeLabel.AutoSize = true; 69 this.executionTimeLabel.Location = new System.Drawing.Point( 572, 623);66 this.executionTimeLabel.Location = new System.Drawing.Point(3, 3); 70 67 this.executionTimeLabel.Name = "executionTimeLabel"; 71 68 this.executionTimeLabel.Size = new System.Drawing.Size(83, 13); 72 this.executionTimeLabel.TabIndex = 4;69 this.executionTimeLabel.TabIndex = 0; 73 70 this.executionTimeLabel.Text = "&Execution Time:"; 74 //75 // stopButton76 //77 this.stopButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));78 this.stopButton.Enabled = false;79 this.stopButton.Image = HeuristicLab.Common.Resources.VS2008ImageLibrary.Stop;80 this.stopButton.Location = new System.Drawing.Point(30, 616);81 this.stopButton.Name = "stopButton";82 this.stopButton.Size = new System.Drawing.Size(24, 24);83 this.stopButton.TabIndex = 2;84 this.toolTip.SetToolTip(this.stopButton, "Stop Engine");85 this.stopButton.UseVisualStyleBackColor = true;86 this.stopButton.Click += new System.EventHandler(this.stopButton_Click);87 //88 // startButton89 //90 this.startButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));91 this.startButton.Image = HeuristicLab.Common.Resources.VS2008ImageLibrary.Play;92 this.startButton.Location = new System.Drawing.Point(0, 616);93 this.startButton.Name = "startButton";94 this.startButton.Size = new System.Drawing.Size(24, 24);95 this.startButton.TabIndex = 1;96 this.toolTip.SetToolTip(this.startButton, "Start Engine");97 this.startButton.UseVisualStyleBackColor = true;98 this.startButton.Click += new System.EventHandler(this.startButton_Click);99 71 // 100 72 // logTextBox … … 103 75 | System.Windows.Forms.AnchorStyles.Left) 104 76 | System.Windows.Forms.AnchorStyles.Right))); 105 this.logTextBox.Location = new System.Drawing.Point(0, 0);77 this.logTextBox.Location = new System.Drawing.Point(0, 39); 106 78 this.logTextBox.Multiline = true; 107 79 this.logTextBox.Name = "logTextBox"; 108 80 this.logTextBox.ReadOnly = true; 109 81 this.logTextBox.ScrollBars = System.Windows.Forms.ScrollBars.Both; 110 this.logTextBox.Size = new System.Drawing.Size( 802, 610);111 this.logTextBox.TabIndex = 6;82 this.logTextBox.Size = new System.Drawing.Size(430, 315); 83 this.logTextBox.TabIndex = 3; 112 84 this.logTextBox.WordWrap = false; 85 // 86 // logLabel 87 // 88 this.logLabel.AutoSize = true; 89 this.logLabel.Location = new System.Drawing.Point(3, 23); 90 this.logLabel.Name = "logLabel"; 91 this.logLabel.Size = new System.Drawing.Size(28, 13); 92 this.logLabel.TabIndex = 2; 93 this.logLabel.Text = "&Log:"; 113 94 // 114 95 // EngineView … … 118 99 this.Controls.Add(this.logTextBox); 119 100 this.Controls.Add(this.executionTimeTextBox); 120 this.Controls.Add(this. stopButton);101 this.Controls.Add(this.logLabel); 121 102 this.Controls.Add(this.executionTimeLabel); 122 this.Controls.Add(this.startButton);123 103 this.Name = "EngineView"; 124 this.Size = new System.Drawing.Size( 802, 640);104 this.Size = new System.Drawing.Size(430, 354); 125 105 this.ResumeLayout(false); 126 106 this.PerformLayout(); … … 132 112 protected System.Windows.Forms.TextBox executionTimeTextBox; 133 113 protected System.Windows.Forms.Label executionTimeLabel; 134 protected System.Windows.Forms.Button stopButton;135 protected System.Windows.Forms.Button startButton;136 protected System.Windows.Forms.ToolTip toolTip;137 114 protected System.Windows.Forms.TextBox logTextBox; 115 protected System.Windows.Forms.Label logLabel; 138 116 139 117 } -
trunk/sources/HeuristicLab.Core.Views/3.3/EngineView.cs
r2916 r2917 28 28 /// Base class for editors of engines. 29 29 /// </summary> 30 [View("Engine View")] 30 31 [Content(typeof(Engine), true)] 31 32 [Content(typeof(IEngine), false)] … … 85 86 protected override void OnContentChanged() { 86 87 base.OnContentChanged(); 87 stopButton.Enabled = false;88 88 logTextBox.Clear(); 89 89 if (Content == null) { 90 90 logTextBox.Enabled = false; 91 startButton.Enabled = false;92 91 executionTimeTextBox.Enabled = false; 93 92 } else { 94 93 logTextBox.Enabled = true; 95 startButton.Enabled = !Content.Finished;96 94 UpdateExecutionTimeTextBox(); 97 95 executionTimeTextBox.Enabled = true; … … 104 102 Invoke(new EventHandler(Content_Prepared), sender, e); 105 103 else { 106 startButton.Enabled = !Content.Finished;107 stopButton.Enabled = false;108 104 UpdateExecutionTimeTextBox(); 109 105 logTextBox.Clear(); … … 116 112 Invoke(new EventHandler(Content_Started), sender, e); 117 113 else { 118 startButton.Enabled = false;119 stopButton.Enabled = true;120 114 UpdateExecutionTimeTextBox(); 121 115 Log("Engine started"); … … 126 120 Invoke(new EventHandler(Content_Stopped), sender, e); 127 121 else { 128 startButton.Enabled = !Content.Finished;129 stopButton.Enabled = false;130 122 UpdateExecutionTimeTextBox(); 131 123 if (Content.Finished) Log("Engine finished"); … … 145 137 else 146 138 Log(Auxiliary.BuildErrorMessage(e.Value)); 147 }148 #endregion149 150 #region Button events151 protected virtual void startButton_Click(object sender, EventArgs e) {152 Content.Start();153 }154 protected virtual void stopButton_Click(object sender, EventArgs e) {155 Content.Stop();156 139 } 157 140 #endregion -
trunk/sources/HeuristicLab.Core.Views/3.3/HeuristicLab.Core.Views-3.3.csproj
r2903 r2917 87 87 <ItemGroup> 88 88 <None Include="HeuristicLabCoreViewsPlugin.cs.frame" /> 89 <Compile Include="TextDialog.cs"> 90 <SubType>Form</SubType> 91 </Compile> 92 <Compile Include="TextDialog.Designer.cs"> 93 <DependentUpon>TextDialog.cs</DependentUpon> 94 </Compile> 89 95 <Compile Include="OperatorTreeView.cs"> 90 96 <SubType>UserControl</SubType> -
trunk/sources/HeuristicLab.Core.Views/3.3/ItemArrayView.cs
r2870 r2917 32 32 /// The visual representation of all variables in a specified scope. 33 33 /// </summary> 34 [View("ItemArray View")] 34 35 [Content(typeof(ItemArray<>), true)] 35 36 [Content(typeof(IObservableArray<>), false)] -
trunk/sources/HeuristicLab.Core.Views/3.3/ItemCollectionView.cs
r2892 r2917 28 28 29 29 namespace HeuristicLab.Core.Views { 30 [View("ItemCollection View")] 30 31 [Content(typeof(ItemCollection<>), true)] 31 32 [Content(typeof(IObservableCollection<>), false)] -
trunk/sources/HeuristicLab.Core.Views/3.3/ItemListView.cs
r2870 r2917 32 32 /// The visual representation of all variables in a specified scope. 33 33 /// </summary> 34 [View("ItemList View")] 34 35 [Content(typeof(ItemList<>), true)] 35 36 [Content(typeof(IObservableList<>), false)] -
trunk/sources/HeuristicLab.Core.Views/3.3/ItemSetView.cs
r2818 r2917 26 26 27 27 namespace HeuristicLab.Core.Views { 28 [View("ItemSet View")] 28 29 [Content(typeof(ItemSet<>), true)] 29 30 [Content(typeof(IObservableSet<>), false)] -
trunk/sources/HeuristicLab.Core.Views/3.3/ItemView.cs
r2818 r2917 28 28 /// Base class for all visual representations. 29 29 /// </summary> 30 [View("Item View")] 30 31 [Content(typeof(Item), false)] 31 32 [Content(typeof(IItem), false)] -
trunk/sources/HeuristicLab.Core.Views/3.3/NamedItemCollectionView.cs
r2818 r2917 26 26 27 27 namespace HeuristicLab.Core.Views { 28 [View("NamedItemCollection View")] 28 29 [Content(typeof(NamedItemCollection<>), true)] 29 30 public partial class NamedItemCollectionView<T> : ItemCollectionView<T> where T : class, INamedItem { -
trunk/sources/HeuristicLab.Core.Views/3.3/NamedItemView.Designer.cs
r2790 r2917 51 51 this.descriptionTextBox = new System.Windows.Forms.TextBox(); 52 52 this.errorProvider = new System.Windows.Forms.ErrorProvider(this.components); 53 this.toolTip = new System.Windows.Forms.ToolTip(this.components); 53 54 ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit(); 54 55 this.SuspendLayout(); … … 86 87 // descriptionTextBox 87 88 // 88 this.descriptionTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 89 | System.Windows.Forms.AnchorStyles.Left) 89 this.descriptionTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 90 90 | System.Windows.Forms.AnchorStyles.Right))); 91 91 this.descriptionTextBox.Location = new System.Drawing.Point(72, 26); 92 this.descriptionTextBox.Multiline = true;93 92 this.descriptionTextBox.Name = "descriptionTextBox"; 94 93 this.descriptionTextBox.ScrollBars = System.Windows.Forms.ScrollBars.Vertical; 95 this.descriptionTextBox.Size = new System.Drawing.Size(279, 86);94 this.descriptionTextBox.Size = new System.Drawing.Size(279, 20); 96 95 this.descriptionTextBox.TabIndex = 3; 96 this.descriptionTextBox.DoubleClick += new System.EventHandler(this.descriptionTextBox_DoubleClick); 97 97 this.descriptionTextBox.Validated += new System.EventHandler(this.descriptionTextBox_Validated); 98 98 // … … 111 111 this.Controls.Add(this.nameLabel); 112 112 this.Name = "NamedItemView"; 113 this.Size = new System.Drawing.Size(351, 112);113 this.Size = new System.Drawing.Size(351, 52); 114 114 ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit(); 115 115 this.ResumeLayout(false); … … 125 125 protected System.Windows.Forms.TextBox descriptionTextBox; 126 126 protected System.Windows.Forms.ErrorProvider errorProvider; 127 protected System.Windows.Forms.ToolTip toolTip; 127 128 } 128 129 } -
trunk/sources/HeuristicLab.Core.Views/3.3/NamedItemView.cs
r2916 r2917 23 23 using System.ComponentModel; 24 24 using System.Windows.Forms; 25 using HeuristicLab.Common; 25 26 using HeuristicLab.MainForm; 26 27 … … 29 30 /// The visual representation of a <see cref="Variable"/>. 30 31 /// </summary> 32 [View("NamedItem View")] 31 33 [Content(typeof(NamedItem), false)] 32 34 [Content(typeof(INamedItem), false)] … … 67 69 descriptionTextBox.Text = ""; 68 70 descriptionTextBox.Enabled = false; 71 toolTip.SetToolTip(descriptionTextBox, string.Empty); 69 72 } else { 70 73 Caption = Content.Name + " (" + Content.GetType().Name + ")"; … … 75 78 descriptionTextBox.ReadOnly = !Content.CanChangeDescription; 76 79 descriptionTextBox.Enabled = true; 80 toolTip.SetToolTip(descriptionTextBox, Content.Description); 77 81 } 78 82 } … … 87 91 if (InvokeRequired) 88 92 Invoke(new EventHandler(Content_DescriptionChanged), sender, e); 89 else 93 else { 90 94 descriptionTextBox.Text = Content.Description; 95 toolTip.SetToolTip(descriptionTextBox, Content.Description); 96 } 91 97 } 92 98 … … 118 124 Content.Description = descriptionTextBox.Text; 119 125 } 126 127 protected void descriptionTextBox_DoubleClick(object sender, EventArgs e) { 128 using (TextDialog dialog = new TextDialog("Description of " + Content.Name, Content.Description, !Content.CanChangeDescription)) { 129 if (dialog.ShowDialog(this) == DialogResult.OK) 130 Content.Description = dialog.Content; 131 } 132 } 120 133 } 121 134 } -
trunk/sources/HeuristicLab.Core.Views/3.3/OperatorCollectionView.cs
r2818 r2917 4 4 5 5 namespace HeuristicLab.Core.Views { 6 [View("OperatorCollection View")] 6 7 [Content(typeof(OperatorCollection), true)] 7 8 [Content(typeof(IObservableCollection<IOperator>), false)] -
trunk/sources/HeuristicLab.Core.Views/3.3/OperatorGraphView.cs
r2818 r2917 30 30 /// The visual representation of an <see cref="OperatorGraph"/>. 31 31 /// </summary> 32 [View("OperatorGraph View (Tree)")] 32 33 [Content(typeof(OperatorGraph), true)] 33 34 public partial class OperatorGraphView : ItemView { -
trunk/sources/HeuristicLab.Core.Views/3.3/OperatorListView.cs
r2818 r2917 4 4 5 5 namespace HeuristicLab.Core.Views { 6 [View("OperatorList View")] 6 7 [Content(typeof(OperatorList), true)] 7 8 [Content(typeof(IObservableList<IOperator>), false)] -
trunk/sources/HeuristicLab.Core.Views/3.3/OperatorSetView.cs
r2818 r2917 4 4 5 5 namespace HeuristicLab.Core.Views { 6 [View("OperatorSet View")] 6 7 [Content(typeof(OperatorSet), true)] 7 8 [Content(typeof(IObservableSet<IOperator>), false)] -
trunk/sources/HeuristicLab.Core.Views/3.3/OperatorTreeView.cs
r2818 r2917 32 32 /// The visual representation of an <see cref="OperatorGraph"/>. 33 33 /// </summary> 34 [View("Operator View (Successors)")] 34 35 [Content(typeof(IOperator), false)] 35 36 public sealed partial class OperatorTreeView : ItemView { -
trunk/sources/HeuristicLab.Core.Views/3.3/OperatorsSidebar.cs
r2818 r2917 22 22 using System; 23 23 using System.Windows.Forms; 24 using HeuristicLab.MainForm; 24 25 25 26 namespace HeuristicLab.Core.Views { 27 [View("Operators Sidebar")] 26 28 public partial class OperatorsSidebar : HeuristicLab.MainForm.WindowsForms.View { 27 29 public OperatorsSidebar() { -
trunk/sources/HeuristicLab.Core.Views/3.3/ParameterCollectionView.cs
r2818 r2917 26 26 27 27 namespace HeuristicLab.Core.Views { 28 [View("ParameterCollection View")] 28 29 [Content(typeof(ParameterCollection), true)] 29 30 [Content(typeof(IObservableKeyedCollection<string, IParameter>), false)] -
trunk/sources/HeuristicLab.Core.Views/3.3/ParameterizedNamedItemView.Designer.cs
r2845 r2917 57 57 // descriptionTextBox 58 58 // 59 this.descriptionTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 60 | System.Windows.Forms.AnchorStyles.Right))); 61 this.descriptionTextBox.Size = new System.Drawing.Size(418, 87); 59 this.descriptionTextBox.Size = new System.Drawing.Size(418, 20); 62 60 // 63 61 // parameterCollectionView … … 67 65 | System.Windows.Forms.AnchorStyles.Right))); 68 66 this.parameterCollectionView.Caption = "ParameterCollection"; 69 this.parameterCollectionView.Location = new System.Drawing.Point(0, 119); 67 this.parameterCollectionView.Content = null; 68 this.parameterCollectionView.Location = new System.Drawing.Point(0, 52); 70 69 this.parameterCollectionView.Name = "parameterCollectionView"; 71 this.parameterCollectionView.Size = new System.Drawing.Size(490, 234);70 this.parameterCollectionView.Size = new System.Drawing.Size(490, 301); 72 71 this.parameterCollectionView.TabIndex = 4; 73 72 // -
trunk/sources/HeuristicLab.Core.Views/3.3/ParameterizedNamedItemView.cs
r2870 r2917 26 26 /// The base class for visual representations of items. 27 27 /// </summary> 28 [View("ParameterizedNamedItem View")] 28 29 [Content(typeof(ParameterizedNamedItem), true)] 29 30 [Content(typeof(IParameterizedNamedItem), false)] -
trunk/sources/HeuristicLab.Core.Views/3.3/ScopeListView.cs
r2818 r2917 3 3 4 4 namespace HeuristicLab.Core.Views { 5 [View("ScopeList View")] 5 6 [Content(typeof(ScopeList), true)] 6 7 [Content(typeof(IObservableList<IScope>), false)] -
trunk/sources/HeuristicLab.Core.Views/3.3/ScopeView.cs
r2818 r2917 30 30 /// The visual represenation of <see cref="Scope"/>. 31 31 /// </summary> 32 [View("Scope View")] 32 33 [Content(typeof(Scope), true)] 33 34 [Content(typeof(IScope), false)] -
trunk/sources/HeuristicLab.Core.Views/3.3/ValueParameterCollectionView.cs
r2818 r2917 26 26 27 27 namespace HeuristicLab.Core.Views { 28 [View("ValueParameterCollection View")] 28 29 [Content(typeof(ValueParameterCollection), true)] 29 30 [Content(typeof(IObservableKeyedCollection<string, IValueParameter>), false)] -
trunk/sources/HeuristicLab.Core.Views/3.3/VariableCollectionView.cs
r2818 r2917 3 3 4 4 namespace HeuristicLab.Core.Views { 5 [View("VariableCollection View")] 5 6 [Content(typeof(VariableCollection), true)] 6 7 [Content(typeof(IObservableKeyedCollection<string, IVariable>), false)] -
trunk/sources/HeuristicLab.Core.Views/3.3/VariableView.Designer.cs
r2833 r2917 46 46 /// </summary> 47 47 private void InitializeComponent() { 48 this.components = new System.ComponentModel.Container();49 48 this.dataTypeLabel = new System.Windows.Forms.Label(); 50 49 this.dataTypeTextBox = new System.Windows.Forms.TextBox(); … … 54 53 this.clearValueButton = new System.Windows.Forms.Button(); 55 54 this.setValueButton = new System.Windows.Forms.Button(); 56 this.toolTip = new System.Windows.Forms.ToolTip(this.components);57 55 ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit(); 58 56 this.valueGroupBox.SuspendLayout(); … … 68 66 // descriptionTextBox 69 67 // 70 this.descriptionTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 71 | System.Windows.Forms.AnchorStyles.Right))); 72 this.descriptionTextBox.Size = new System.Drawing.Size(287, 62); 68 this.descriptionTextBox.Size = new System.Drawing.Size(287, 20); 73 69 // 74 70 // dataTypeLabel 75 71 // 76 72 this.dataTypeLabel.AutoSize = true; 77 this.dataTypeLabel.Location = new System.Drawing.Point(3, 97);73 this.dataTypeLabel.Location = new System.Drawing.Point(3, 55); 78 74 this.dataTypeLabel.Name = "dataTypeLabel"; 79 75 this.dataTypeLabel.Size = new System.Drawing.Size(60, 13); … … 85 81 this.dataTypeTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 86 82 | System.Windows.Forms.AnchorStyles.Right))); 87 this.dataTypeTextBox.Location = new System.Drawing.Point(72, 94);83 this.dataTypeTextBox.Location = new System.Drawing.Point(72, 52); 88 84 this.dataTypeTextBox.Name = "dataTypeTextBox"; 89 85 this.dataTypeTextBox.ReadOnly = true; … … 99 95 this.valueGroupBox.Controls.Add(this.clearValueButton); 100 96 this.valueGroupBox.Controls.Add(this.setValueButton); 101 this.valueGroupBox.Location = new System.Drawing.Point(0, 120);97 this.valueGroupBox.Location = new System.Drawing.Point(0, 78); 102 98 this.valueGroupBox.Name = "valueGroupBox"; 103 this.valueGroupBox.Size = new System.Drawing.Size(359, 1 54);99 this.valueGroupBox.Size = new System.Drawing.Size(359, 196); 104 100 this.valueGroupBox.TabIndex = 7; 105 101 this.valueGroupBox.TabStop = false; … … 115 111 this.valuePanel.Location = new System.Drawing.Point(6, 49); 116 112 this.valuePanel.Name = "valuePanel"; 117 this.valuePanel.Size = new System.Drawing.Size(347, 99);113 this.valuePanel.Size = new System.Drawing.Size(347, 141); 118 114 this.valuePanel.TabIndex = 2; 119 115 this.valuePanel.DragOver += new System.Windows.Forms.DragEventHandler(this.valuePanel_DragEnterOver); … … 127 123 this.viewHost.Location = new System.Drawing.Point(0, 0); 128 124 this.viewHost.Name = "viewHost"; 129 this.viewHost.Size = new System.Drawing.Size(347, 99);125 this.viewHost.Size = new System.Drawing.Size(347, 141); 130 126 this.viewHost.TabIndex = 0; 127 this.viewHost.ViewType = null; 131 128 // 132 129 // clearValueButton … … 183 180 protected ViewHost viewHost; 184 181 protected System.Windows.Forms.Button clearValueButton; 185 protected System.Windows.Forms.ToolTip toolTip;186 182 protected System.Windows.Forms.Button setValueButton; 187 183 protected System.Windows.Forms.Panel valuePanel; -
trunk/sources/HeuristicLab.Core.Views/3.3/VariableView.cs
r2818 r2917 29 29 /// The visual representation of a <see cref="Variable"/>. 30 30 /// </summary> 31 [View("Variable View")] 31 32 [Content(typeof(Variable), true)] 32 33 [Content(typeof(IVariable), false)]
Note: See TracChangeset
for help on using the changeset viewer.