Changeset 11000
- Timestamp:
- 06/11/14 15:33:04 (10 years ago)
- Location:
- branches/DataPreprocessing
- Files:
-
- 2 deleted
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/DataPreprocessing/HeuristicLab.Data.Views/3.3/StringConvertibleMatrixView.cs
r9505 r11000 36 36 public partial class StringConvertibleMatrixView : AsynchronousContentView { 37 37 protected int[] virtualRowIndices; 38 pr ivateList<KeyValuePair<int, SortOrder>> sortedColumnIndices;38 protected List<KeyValuePair<int, SortOrder>> sortedColumnIndices; 39 39 private RowComparer rowComparer; 40 40 … … 261 261 262 262 #region DataGridView Events 263 pr ivatevoid dataGridView_CellValidating(object sender, DataGridViewCellValidatingEventArgs e) {263 protected virtual void dataGridView_CellValidating(object sender, DataGridViewCellValidatingEventArgs e) { 264 264 if (!dataGridView.ReadOnly) { 265 265 string errorMessage; … … 270 270 } 271 271 } 272 pr ivatevoid dataGridView_CellParsing(object sender, DataGridViewCellParsingEventArgs e) {272 protected virtual void dataGridView_CellParsing(object sender, DataGridViewCellParsingEventArgs e) { 273 273 if (!dataGridView.ReadOnly) { 274 274 string value = e.Value.ToString(); … … 364 364 } 365 365 366 pr ivatevoid PasteValuesToDataGridView() {366 protected virtual void PasteValuesToDataGridView() { 367 367 string[,] values = SplitClipboardString(Clipboard.GetText()); 368 368 int rowIndex = 0; … … 432 432 } 433 433 434 pr ivatevoid Sort() {434 protected void Sort() { 435 435 virtualRowIndices = Sort(sortedColumnIndices); 436 436 UpdateSortGlyph(); … … 542 542 } 543 543 544 pr ivatevoid dataGridView_SelectionChanged(object sender, EventArgs e) {544 protected virtual void dataGridView_SelectionChanged(object sender, EventArgs e) { 545 545 string stringFormat = "{0,20:0.0000}"; 546 546 statisticsTextBox.Text = string.Empty; -
branches/DataPreprocessing/HeuristicLab.DataPreprocessing.Views/3.4/DataGridContentView.cs
r10998 r11000 26 26 using System.Windows.Forms; 27 27 using HeuristicLab.Data; 28 using HeuristicLab.Data.Views; 28 29 using HeuristicLab.DataPreprocessing.Filter; 29 30 using HeuristicLab.MainForm; … … 32 33 [View("Data Grid Content View")] 33 34 [Content(typeof(IDataGridContent), true)] 34 public partial class DataGridContentView : PreprocessingStringConvertibleMatrixView {35 public partial class DataGridContentView : StringConvertibleMatrixView { 35 36 36 37 private bool notOwnEvent = true; … … 137 138 } 138 139 139 #region methods which override/modify methods from PreprocessingStringConvertibleMatrixView140 141 140 protected override void dataGridView_SelectionChanged(object sender, EventArgs e) { 142 141 base.dataGridView_SelectionChanged(sender, e); … … 186 185 base.ClearSorting(); 187 186 } 188 189 #endregion190 187 191 188 private void dataGridView_ColumnHeaderMouseClick(object sender, DataGridViewCellMouseEventArgs e) { -
branches/DataPreprocessing/HeuristicLab.DataPreprocessing.Views/3.4/HeuristicLab.DataPreprocessing.Views-3.4.csproj
r10987 r11000 185 185 <DependentUpon>StatisticsView.cs</DependentUpon> 186 186 </Compile> 187 <Compile Include="PreprocessingStringConvertibleMatrixView.cs">188 <SubType>UserControl</SubType>189 </Compile>190 <Compile Include="PreprocessingStringConvertibleMatrixView.Designer.cs">191 <DependentUpon>PreprocessingStringConvertibleMatrixView.cs</DependentUpon>192 </Compile>193 187 <Compile Include="TransformationView.cs"> 194 188 <SubType>UserControl</SubType>
Note: See TracChangeset
for help on using the changeset viewer.