Changeset 15280 for branches/Async/HeuristicLab.Data.Views/3.3
- Timestamp:
- 07/23/17 00:52:14 (7 years ago)
- Location:
- branches/Async
- Files:
-
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/Async
- Property svn:mergeinfo changed
-
branches/Async/HeuristicLab.Data.Views
- Property svn:mergeinfo changed
/trunk/sources/HeuristicLab.Data.Views (added) merged: 13397,13425,13570,13695
- Property svn:mergeinfo changed
-
branches/Async/HeuristicLab.Data.Views/3.3
- Property svn:mergeinfo changed
/trunk/sources/HeuristicLab.Data.Views/3.3 (added) merged: 13397,13425,13570,13695
- Property svn:mergeinfo changed
-
branches/Async/HeuristicLab.Data.Views/3.3/EnhancedStringConvertibleMatrixView.cs
r12151 r15280 69 69 } 70 70 71 p rotectedoverride void UpdateColumnHeaders() {71 public override void UpdateColumnHeaders() { 72 72 base.UpdateColumnHeaders(); 73 73 if (columnVisibility != null && Content != null && columnVisibility.Count() == dataGridView.ColumnCount) { … … 79 79 } 80 80 } 81 p rotectedoverride void UpdateRowHeaders() {81 public override void UpdateRowHeaders() { 82 82 if (Content == null) return; 83 83 if (rowVisibility != null && rowVisibility.Count() != dataGridView.RowCount) return; -
branches/Async/HeuristicLab.Data.Views/3.3/HeuristicLab.Data.Views-3.3.csproj
r12682 r15280 189 189 <DependentUpon>BoolValueView.cs</DependentUpon> 190 190 </Compile> 191 191 <Compile Include="BoolMatrixView.cs"> 192 192 <SubType>UserControl</SubType> 193 193 </Compile> -
branches/Async/HeuristicLab.Data.Views/3.3/StringConvertibleArrayView.cs
r12012 r15280 80 80 lengthTextBox.Enabled = Content != null; 81 81 dataGridView.Enabled = Content != null; 82 lengthTextBox.ReadOnly = ReadOnly ;82 lengthTextBox.ReadOnly = ReadOnly || (Content != null && !Content.Resizable); 83 83 dataGridView.ReadOnly = ReadOnly; 84 84 } … … 103 103 } 104 104 105 p rotectedvirtual void UpdateRowHeaders() {105 public virtual void UpdateRowHeaders() { 106 106 int i = 0; 107 107 foreach (string elementName in Content.ElementNames) { -
branches/Async/HeuristicLab.Data.Views/3.3/StringConvertibleMatrixView.cs
r12983 r15280 160 160 } 161 161 162 p rotectedvirtual void UpdateColumnHeaders() {162 public virtual void UpdateColumnHeaders() { 163 163 HashSet<string> invisibleColumnNames = new HashSet<string>(dataGridView.Columns.OfType<DataGridViewColumn>() 164 164 .Where(c => !c.Visible && !string.IsNullOrEmpty(c.HeaderText)).Select(c => c.HeaderText)); … … 172 172 } 173 173 } 174 p rotectedvirtual void UpdateRowHeaders() {174 public virtual void UpdateRowHeaders() { 175 175 int index = dataGridView.FirstDisplayedScrollingRowIndex; 176 176 if (index == -1) index = 0; -
branches/Async/HeuristicLab.Data.Views/3.3/StringConvertibleValueView.Designer.cs
r12012 r15280 63 63 this.valueTextBox.Location = new System.Drawing.Point(17, 0); 64 64 this.valueTextBox.Name = "valueTextBox"; 65 this.valueTextBox.Size = new System.Drawing.Size(13 5, 20);65 this.valueTextBox.Size = new System.Drawing.Size(132, 20); 66 66 this.valueTextBox.TabIndex = 2; 67 67 this.valueTextBox.KeyDown += new System.Windows.Forms.KeyEventHandler(this.valueTextBox_KeyDown);
Note: See TracChangeset
for help on using the changeset viewer.