Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/HeuristicLab.Data.Views/3.3/StringConvertibleMatrixView.cs @ 17840

Last change on this file since 17840 was 17840, checked in by mkommend, 3 years ago

#3104: Fixed copying of values from a StringConvertibleMatrixView.

File size: 23.7 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) Heuristic and Evolutionary Algorithms Laboratory (HEAL)
4 *
5 * This file is part of HeuristicLab.
6 *
7 * HeuristicLab is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation, either version 3 of the License, or
10 * (at your option) any later version.
11 *
12 * HeuristicLab is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>.
19 */
20#endregion
21
22using System;
23using System.Collections.Generic;
24using System.ComponentModel;
25using System.Drawing;
26using System.Linq;
27using System.Text;
28using System.Windows.Forms;
29using HeuristicLab.Common;
30using HeuristicLab.MainForm;
31using HeuristicLab.MainForm.WindowsForms;
32
33namespace HeuristicLab.Data.Views {
34  [View("StringConvertibleMatrix View")]
35  [Content(typeof(IStringConvertibleMatrix), true)]
36  public partial class StringConvertibleMatrixView : AsynchronousContentView {
37    protected int[] virtualRowIndices;
38    protected List<KeyValuePair<int, SortOrder>> sortedColumnIndices;
39    private RowComparer rowComparer;
40
41    public new IStringConvertibleMatrix Content {
42      get { return (IStringConvertibleMatrix)base.Content; }
43      set { base.Content = value; }
44    }
45
46    public DataGridView DataGridView {
47      get { return dataGridView; }
48    }
49
50    public override bool ReadOnly {
51      get {
52        if ((Content != null) && Content.ReadOnly) return true;
53        return base.ReadOnly;
54      }
55      set { base.ReadOnly = value; }
56    }
57
58    private bool showRowsAndColumnsTextBox;
59    public bool ShowRowsAndColumnsTextBox {
60      get { return showRowsAndColumnsTextBox; }
61      set {
62        showRowsAndColumnsTextBox = value;
63        UpdateVisibilityOfTextBoxes();
64      }
65    }
66
67    private bool showStatisticalInformation;
68    public bool ShowStatisticalInformation {
69      get { return showStatisticalInformation; }
70      set {
71        showStatisticalInformation = value;
72        UpdateVisibilityOfStatisticalInformation();
73      }
74    }
75
76    public StringConvertibleMatrixView() {
77      InitializeComponent();
78      ShowRowsAndColumnsTextBox = true;
79      ShowStatisticalInformation = true;
80      errorProvider.SetIconAlignment(rowsTextBox, ErrorIconAlignment.MiddleLeft);
81      errorProvider.SetIconPadding(rowsTextBox, 2);
82      errorProvider.SetIconAlignment(columnsTextBox, ErrorIconAlignment.MiddleLeft);
83      errorProvider.SetIconPadding(columnsTextBox, 2);
84      sortedColumnIndices = new List<KeyValuePair<int, SortOrder>>();
85      rowComparer = new RowComparer();
86    }
87
88    protected override void DeregisterContentEvents() {
89      Content.ItemChanged -= new EventHandler<EventArgs<int, int>>(Content_ItemChanged);
90      Content.Reset -= new EventHandler(Content_Reset);
91      Content.ColumnNamesChanged -= new EventHandler(Content_ColumnNamesChanged);
92      Content.RowNamesChanged -= new EventHandler(Content_RowNamesChanged);
93      base.DeregisterContentEvents();
94    }
95    protected override void RegisterContentEvents() {
96      base.RegisterContentEvents();
97      Content.ItemChanged += new EventHandler<EventArgs<int, int>>(Content_ItemChanged);
98      Content.Reset += new EventHandler(Content_Reset);
99      Content.ColumnNamesChanged += new EventHandler(Content_ColumnNamesChanged);
100      Content.RowNamesChanged += new EventHandler(Content_RowNamesChanged);
101    }
102
103    protected override void OnContentChanged() {
104      base.OnContentChanged();
105      if (Content == null) {
106        rowsTextBox.Text = "";
107        columnsTextBox.Text = "";
108        dataGridView.Rows.Clear();
109        dataGridView.Columns.Clear();
110        virtualRowIndices = new int[0];
111      } else if (!dataGridView.IsCurrentCellInEditMode) {
112        UpdateData();
113      }
114    }
115
116    protected override void SetEnabledStateOfControls() {
117      base.SetEnabledStateOfControls();
118      rowsTextBox.Enabled = Content != null;
119      columnsTextBox.Enabled = Content != null;
120      dataGridView.Enabled = Content != null;
121      rowsTextBox.ReadOnly = ReadOnly;
122      columnsTextBox.ReadOnly = ReadOnly;
123      dataGridView.ReadOnly = ReadOnly;
124    }
125
126    protected virtual void UpdateData() {
127      rowsTextBox.Text = Content.Rows.ToString();
128      rowsTextBox.Enabled = true;
129      columnsTextBox.Text = Content.Columns.ToString();
130      columnsTextBox.Enabled = true;
131      virtualRowIndices = Enumerable.Range(0, Content.Rows).ToArray();
132
133
134      dataGridView.RowCount = 0;
135
136      DataGridViewColumn[] columns = new DataGridViewColumn[Content.Columns];
137      for (int i = 0; i < columns.Length; ++i) {
138        var column = new DataGridViewTextBoxColumn();
139        column.SortMode = DataGridViewColumnSortMode.Programmatic;
140        column.FillWeight = 1;
141        columns[i] = column;
142      }
143      dataGridView.Columns.Clear();
144
145      if (Content.Columns != 0) {
146        dataGridView.Columns.AddRange(columns);
147        dataGridView.RowCount = Content.Rows;
148      }
149
150      ClearSorting();
151      UpdateColumnHeaders();
152      UpdateRowHeaders();
153
154      dataGridView.AutoResizeColumns(DataGridViewAutoSizeColumnsMode.ColumnHeader);
155      dataGridView.AutoResizeRowHeadersWidth(DataGridViewRowHeadersWidthSizeMode.AutoSizeToDisplayedHeaders);
156      dataGridView.Enabled = true;
157    }
158
159    public virtual void UpdateColumnHeaders() {
160      HashSet<string> invisibleColumnNames = new HashSet<string>(dataGridView.Columns.OfType<DataGridViewColumn>()
161      .Where(c => !c.Visible && !string.IsNullOrEmpty(c.HeaderText)).Select(c => c.HeaderText));
162
163      for (int i = 0; i < dataGridView.ColumnCount; i++) {
164        if (i < Content.ColumnNames.Count())
165          dataGridView.Columns[i].HeaderText = Content.ColumnNames.ElementAt(i);
166        else
167          dataGridView.Columns[i].HeaderText = "Column " + (i + 1);
168        dataGridView.Columns[i].Visible = !invisibleColumnNames.Contains(dataGridView.Columns[i].HeaderText);
169      }
170    }
171    public virtual void UpdateRowHeaders() {
172      int index = dataGridView.FirstDisplayedScrollingRowIndex;
173      if (index == -1) index = 0;
174      int updatedRows = 0;
175      int count = dataGridView.DisplayedRowCount(true);
176
177      while (updatedRows < count) {
178        if (virtualRowIndices[index] < Content.RowNames.Count())
179          dataGridView.Rows[index].HeaderCell.Value = Content.RowNames.ElementAt(virtualRowIndices[index]);
180        else
181          dataGridView.Rows[index].HeaderCell.Value = "Row " + (index + 1);
182        if (dataGridView.Rows[index].Visible)
183          updatedRows++;
184        index++;
185      }
186    }
187
188    private void Content_RowNamesChanged(object sender, EventArgs e) {
189      if (InvokeRequired)
190        Invoke(new EventHandler(Content_RowNamesChanged), sender, e);
191      else
192        UpdateRowHeaders();
193    }
194    private void Content_ColumnNamesChanged(object sender, EventArgs e) {
195      if (InvokeRequired)
196        Invoke(new EventHandler(Content_ColumnNamesChanged), sender, e);
197      else
198        UpdateColumnHeaders();
199    }
200    private void Content_ItemChanged(object sender, EventArgs<int, int> e) {
201      if (InvokeRequired)
202        Invoke(new EventHandler<EventArgs<int, int>>(Content_ItemChanged), sender, e);
203      else
204        dataGridView.InvalidateCell(e.Value2, e.Value);
205    }
206    private void Content_Reset(object sender, EventArgs e) {
207      if (InvokeRequired)
208        Invoke(new EventHandler(Content_Reset), sender, e);
209      else
210        UpdateData();
211    }
212
213    #region TextBox Events
214    private void rowsTextBox_Validating(object sender, CancelEventArgs e) {
215      if (ReadOnly || Locked)
216        return;
217      int i = 0;
218      if (!int.TryParse(rowsTextBox.Text, out i) || (i <= 0)) {
219        e.Cancel = true;
220        errorProvider.SetError(rowsTextBox, "Invalid Number of Rows (Valid values are positive integers larger than 0)");
221        rowsTextBox.SelectAll();
222      }
223    }
224    private void rowsTextBox_Validated(object sender, EventArgs e) {
225      if (!Content.ReadOnly) Content.Rows = int.Parse(rowsTextBox.Text);
226      errorProvider.SetError(rowsTextBox, string.Empty);
227    }
228    private void rowsTextBox_KeyDown(object sender, KeyEventArgs e) {
229      if (e.KeyCode == Keys.Enter || e.KeyCode == Keys.Return)
230        rowsLabel.Focus();  // set focus on label to validate data
231      if (e.KeyCode == Keys.Escape) {
232        rowsTextBox.Text = Content.Rows.ToString();
233        rowsLabel.Focus();  // set focus on label to validate data
234      }
235    }
236    private void columnsTextBox_Validating(object sender, CancelEventArgs e) {
237      if (ReadOnly || Locked)
238        return;
239      int i = 0;
240      if (!int.TryParse(columnsTextBox.Text, out i) || (i <= 0)) {
241        e.Cancel = true;
242        errorProvider.SetError(columnsTextBox, "Invalid Number of Columns (Valid values are positive integers larger than 0)");
243        columnsTextBox.SelectAll();
244      }
245    }
246    private void columnsTextBox_Validated(object sender, EventArgs e) {
247      if (!Content.ReadOnly) Content.Columns = int.Parse(columnsTextBox.Text);
248      errorProvider.SetError(columnsTextBox, string.Empty);
249    }
250    private void columnsTextBox_KeyDown(object sender, KeyEventArgs e) {
251      if (e.KeyCode == Keys.Enter || e.KeyCode == Keys.Return)
252        columnsLabel.Focus();  // set focus on label to validate data
253      if (e.KeyCode == Keys.Escape) {
254        columnsTextBox.Text = Content.Columns.ToString();
255        columnsLabel.Focus();  // set focus on label to validate data
256      }
257    }
258    #endregion
259
260    #region DataGridView Events
261
262    protected virtual void dataGridView_CellValidating(object sender, DataGridViewCellValidatingEventArgs e) {
263      if (dataGridView.ReadOnly) return;
264      if (Content == null) return;
265      if (Content.Rows <= e.RowIndex || Content.Columns <= e.ColumnIndex) return;
266
267      string errorMessage;
268      if (!Content.Validate(e.FormattedValue.ToString(), out errorMessage)) {
269        e.Cancel = true;
270        dataGridView.Rows[e.RowIndex].ErrorText = errorMessage;
271      }
272    }
273
274    protected virtual void dataGridView_CellParsing(object sender, DataGridViewCellParsingEventArgs e) {
275      if (!dataGridView.ReadOnly) {
276        string value = e.Value.ToString();
277        int rowIndex = virtualRowIndices[e.RowIndex];
278        e.ParsingApplied = Content.SetValue(value, rowIndex, e.ColumnIndex);
279        if (e.ParsingApplied) e.Value = Content.GetValue(rowIndex, e.ColumnIndex);
280      }
281    }
282    private void dataGridView_CellEndEdit(object sender, DataGridViewCellEventArgs e) {
283      dataGridView.Rows[e.RowIndex].ErrorText = string.Empty;
284    }
285    protected virtual void dataGridView_CellValueNeeded(object sender, DataGridViewCellValueEventArgs e) {
286      if (Content != null && e.RowIndex < Content.Rows && e.ColumnIndex < Content.Columns) {
287        int rowIndex = virtualRowIndices[e.RowIndex];
288        e.Value = Content.GetValue(rowIndex, e.ColumnIndex);
289      }
290    }
291
292    private void dataGridView_Scroll(object sender, System.Windows.Forms.ScrollEventArgs e) {
293      this.UpdateRowHeaders();
294    }
295    private void dataGridView_Resize(object sender, EventArgs e) {
296      this.UpdateRowHeaders();
297    }
298
299    protected virtual void dataGridView_KeyDown(object sender, KeyEventArgs e) {
300      if (!ReadOnly && e.Control && e.KeyCode == Keys.V)
301        PasteValuesToDataGridView();
302      else if (e.Control && e.KeyCode == Keys.C)
303        CopyValuesFromDataGridView();
304    }
305
306    private void CopyValuesFromDataGridView() {
307      if (dataGridView.SelectedCells.Count == 0) return;
308
309      //if not all cells are selected use the built-in functionality for copying values to the clipboard
310      if (!dataGridView.AreAllCellsSelected(false)) {
311        dataGridView.ClipboardCopyMode = DataGridViewClipboardCopyMode.EnableWithoutHeaderText;
312        var data = dataGridView.GetClipboardContent();
313        Clipboard.SetDataObject(data);
314        return;
315      }
316
317      //Ff all cells are selected we want to include row and column headers if they are set in the content.
318      //This is not possible with the built-in functionality, because only both headers can be added.
319      //Furthermore, the current implementation of the view with the virtual datagridview does set
320      //rowheaders only when they are displayed (see UpdateRowHeaders) and otherwise leaves them empty.
321
322      StringBuilder s = new StringBuilder();
323
324      bool addColumnNames = Content.ColumnNames.Any();
325      bool addRowNames = Content.RowNames.Any();
326
327      //add first row with column headers
328      if (addColumnNames) {
329        var columnNames = Content.ColumnNames.ToArray();
330        if (addRowNames) s.Append('\t'); //there is no column header for the row headers
331        DataGridViewColumn column = dataGridView.Columns.GetFirstColumn(DataGridViewElementStates.Visible);
332        while (column != null) {
333          s.Append(columnNames[column.Index]);
334          s.Append('\t');
335
336          column = dataGridView.Columns.GetNextColumn(column, DataGridViewElementStates.Visible, DataGridViewElementStates.None);
337        }
338        s.Append(Environment.NewLine);
339      }
340
341      var rowNames = Content.RowNames.ToArray();
342      for (int r = 0; r < dataGridView.RowCount; r++) {
343        if (!dataGridView.Rows[r].Visible) continue; //skip invisible rows
344
345        int rowIndex = virtualRowIndices[r];
346        if (addRowNames) {
347          s.Append(rowNames[rowIndex]);
348          s.Append('\t');
349        }
350
351        DataGridViewColumn column = dataGridView.Columns.GetFirstColumn(DataGridViewElementStates.Visible);
352        while (column != null) {
353          s.Append(Content.GetValue(rowIndex, column.Index));
354          s.Append('\t');
355
356          column = dataGridView.Columns.GetNextColumn(column, DataGridViewElementStates.Visible, DataGridViewElementStates.None);
357        }
358
359        s.Remove(s.Length - 1, 1); //remove last tab
360        s.Append(Environment.NewLine);
361      }
362
363      Clipboard.SetText(s.ToString());
364    }
365
366    protected virtual void PasteValuesToDataGridView() {
367      string[,] values = SplitClipboardString(Clipboard.GetText());
368      int rowIndex = 0;
369      int columnIndex = 0;
370      if (dataGridView.CurrentCell != null) {
371        rowIndex = dataGridView.CurrentCell.RowIndex;
372        columnIndex = dataGridView.CurrentCell.ColumnIndex;
373      }
374      if (Content.Rows < values.GetLength(1) + rowIndex) Content.Rows = values.GetLength(1) + rowIndex;
375      if (Content.Columns < values.GetLength(0) + columnIndex) Content.Columns = values.GetLength(0) + columnIndex;
376
377      for (int row = 0; row < values.GetLength(1); row++) {
378        for (int col = 0; col < values.GetLength(0); col++) {
379          Content.SetValue(values[col, row], row + rowIndex, col + columnIndex);
380        }
381      }
382      ClearSorting();
383    }
384    protected string[,] SplitClipboardString(string clipboardText) {
385      if (clipboardText.EndsWith(Environment.NewLine))
386        clipboardText = clipboardText.Remove(clipboardText.Length - Environment.NewLine.Length);  //remove last newline constant
387      string[,] values = null;
388      string[] lines = clipboardText.Split(new string[] { Environment.NewLine }, StringSplitOptions.None);
389      string[] cells;
390      for (int i = 0; i < lines.Length; i++) {
391        cells = lines[i].Split('\t');
392        if (values == null)
393          values = new string[cells.Length, lines.Length];
394        for (int j = 0; j < cells.Length; j++)
395          values[j, i] = string.IsNullOrEmpty(cells[j]) ? string.Empty : cells[j];
396      }
397      return values;
398    }
399
400    protected virtual void dataGridView_ColumnHeaderMouseClick(object sender, DataGridViewCellMouseEventArgs e) {
401      if (Content != null) {
402        if (e.Button == MouseButtons.Left && Content.SortableView) {
403          SortColumn(e.ColumnIndex);
404        }
405      }
406    }
407
408    protected virtual void ClearSorting() {
409      virtualRowIndices = Enumerable.Range(0, Content.Rows).ToArray();
410      sortedColumnIndices.Clear();
411      UpdateSortGlyph();
412    }
413
414    protected void Sort() {
415      virtualRowIndices = Sort(sortedColumnIndices);
416      UpdateSortGlyph();
417      UpdateRowHeaders();
418      dataGridView.Invalidate();
419    }
420
421    protected virtual void SortColumn(int columnIndex) {
422      bool addToSortedIndices = (Control.ModifierKeys & Keys.Control) == Keys.Control;
423      SortOrder newSortOrder = SortOrder.Ascending;
424      if (sortedColumnIndices.Any(x => x.Key == columnIndex)) {
425        SortOrder oldSortOrder = sortedColumnIndices.Where(x => x.Key == columnIndex).First().Value;
426        int enumLength = Enum.GetValues(typeof(SortOrder)).Length;
427        newSortOrder = oldSortOrder = (SortOrder)Enum.Parse(typeof(SortOrder), ((((int)oldSortOrder) + 1) % enumLength).ToString());
428      }
429
430      if (!addToSortedIndices)
431        sortedColumnIndices.Clear();
432
433      if (sortedColumnIndices.Any(x => x.Key == columnIndex)) {
434        int sortedIndex = sortedColumnIndices.FindIndex(x => x.Key == columnIndex);
435        if (newSortOrder != SortOrder.None)
436          sortedColumnIndices[sortedIndex] = new KeyValuePair<int, SortOrder>(columnIndex, newSortOrder);
437        else
438          sortedColumnIndices.RemoveAt(sortedIndex);
439      } else
440        if (newSortOrder != SortOrder.None)
441        sortedColumnIndices.Add(new KeyValuePair<int, SortOrder>(columnIndex, newSortOrder));
442      Sort();
443    }
444
445    protected virtual int[] Sort(IEnumerable<KeyValuePair<int, SortOrder>> sortedColumns) {
446      int[] newSortedIndex = Enumerable.Range(0, Content.Rows).ToArray();
447      if (sortedColumns.Count() != 0) {
448        rowComparer.SortedIndices = sortedColumns;
449        rowComparer.Matrix = Content;
450        Array.Sort(newSortedIndex, rowComparer);
451      }
452      return newSortedIndex;
453    }
454    private void UpdateSortGlyph() {
455      foreach (DataGridViewColumn col in this.dataGridView.Columns)
456        col.HeaderCell.SortGlyphDirection = SortOrder.None;
457      foreach (KeyValuePair<int, SortOrder> p in sortedColumnIndices)
458        this.dataGridView.Columns[p.Key].HeaderCell.SortGlyphDirection = p.Value;
459    }
460    #endregion
461
462    public int GetRowIndex(int originalIndex) {
463      return virtualRowIndices[originalIndex];
464    }
465
466    public class RowComparer : IComparer<int> {
467      public RowComparer() {
468      }
469
470      private List<KeyValuePair<int, SortOrder>> sortedIndices;
471      public IEnumerable<KeyValuePair<int, SortOrder>> SortedIndices {
472        get { return this.sortedIndices; }
473        set { sortedIndices = new List<KeyValuePair<int, SortOrder>>(value); }
474      }
475      private IStringConvertibleMatrix matrix;
476      public IStringConvertibleMatrix Matrix {
477        get { return this.matrix; }
478        set { this.matrix = value; }
479      }
480
481      public int Compare(int x, int y) {
482        int result = 0;
483        double double1, double2;
484        DateTime dateTime1, dateTime2;
485        TimeSpan timeSpan1, timeSpan2;
486        string string1, string2;
487
488        if (matrix == null)
489          throw new InvalidOperationException("Could not sort IStringConvertibleMatrix if the matrix member is null.");
490        if (sortedIndices == null)
491          return 0;
492
493        foreach (KeyValuePair<int, SortOrder> pair in sortedIndices.Where(p => p.Value != SortOrder.None)) {
494          string1 = matrix.GetValue(x, pair.Key);
495          string2 = matrix.GetValue(y, pair.Key);
496          if (double.TryParse(string1, out double1) && double.TryParse(string2, out double2))
497            result = double1.CompareTo(double2);
498          else if (DateTime.TryParse(string1, out dateTime1) && DateTime.TryParse(string2, out dateTime2))
499            result = dateTime1.CompareTo(dateTime2);
500          else if (TimeSpan.TryParse(string1, out timeSpan1) && TimeSpan.TryParse(string2, out timeSpan2))
501            result = timeSpan1.CompareTo(timeSpan2);
502          else {
503            if (string1 != null)
504              result = string1.CompareTo(string2);
505            else if (string2 != null)
506              result = string2.CompareTo(string1) * -1;
507          }
508          if (pair.Value == SortOrder.Descending)
509            result *= -1;
510          if (result != 0)
511            return result;
512        }
513        return result;
514      }
515    }
516
517    protected virtual void dataGridView_MouseClick(object sender, System.Windows.Forms.MouseEventArgs e) {
518      if (Content == null) return;
519      if (e.Button == MouseButtons.Right && Content.ColumnNames.Count() != 0)
520        contextMenu.Show(MousePosition);
521    }
522    protected virtual void ShowHideColumns_Click(object sender, EventArgs e) {
523      new StringConvertibleMatrixColumnVisibilityDialog(this.dataGridView.Columns.Cast<DataGridViewColumn>()).ShowDialog();
524      columnsTextBox.Text = dataGridView.Columns.GetColumnCount(DataGridViewElementStates.Visible).ToString();
525    }
526
527    private void UpdateVisibilityOfTextBoxes() {
528      rowsTextBox.Visible = columnsTextBox.Visible = showRowsAndColumnsTextBox;
529      rowsLabel.Visible = columnsLabel.Visible = showRowsAndColumnsTextBox;
530      UpdateDataGridViewSizeAndLocation();
531    }
532
533    private void UpdateVisibilityOfStatisticalInformation() {
534      statisticsTextBox.Visible = showStatisticalInformation;
535      UpdateDataGridViewSizeAndLocation();
536    }
537
538    private void UpdateDataGridViewSizeAndLocation() {
539      int headerSize = columnsTextBox.Location.Y + columnsTextBox.Size.Height +
540       columnsTextBox.Margin.Bottom + dataGridView.Margin.Top;
541
542      int offset = showRowsAndColumnsTextBox ? headerSize : 0;
543      dataGridView.Location = new Point(0, offset);
544
545      int statisticsTextBoxHeight = showStatisticalInformation ? statisticsTextBox.Height + statisticsTextBox.Margin.Top + statisticsTextBox.Margin.Bottom : 0;
546      dataGridView.Size = new Size(Size.Width, Size.Height - offset - statisticsTextBoxHeight);
547    }
548
549    protected virtual void dataGridView_SelectionChanged(object sender, EventArgs e) {
550      statisticsTextBox.Text = string.Empty;
551      if (dataGridView.SelectedCells.Count > 1) {
552        List<double> selectedValues = new List<double>();
553        foreach (DataGridViewCell cell in dataGridView.SelectedCells) {
554          double value;
555          if (!double.TryParse(cell.Value.ToString(), out value)) return;
556          selectedValues.Add(value);
557        }
558        if (selectedValues.Count > 1) {
559          statisticsTextBox.Text = CreateStatisticsText(selectedValues);
560        }
561      }
562    }
563
564    protected virtual string CreateStatisticsText(ICollection<double> values) {
565      string stringFormat = "{0,20:0.0000}";
566      int overallCount = values.Count;
567      values = values.Where(x => !double.IsNaN(x)).ToList();
568      if (!values.Any()) {
569        return "";
570      }
571      StringBuilder statisticsText = new StringBuilder();
572      statisticsText.Append("Count: " + values.Count + "    ");
573      statisticsText.Append("Sum: " + string.Format(stringFormat, values.Sum()) + "    ");
574      statisticsText.Append("Min: " + string.Format(stringFormat, values.Min()) + "    ");
575      statisticsText.Append("Max: " + string.Format(stringFormat, values.Max()) + "    ");
576      statisticsText.Append("Average: " + string.Format(stringFormat, values.Average()) + "    ");
577      statisticsText.Append("Standard Deviation: " + string.Format(stringFormat, values.StandardDeviation()) + "    ");
578      if (overallCount > 0)
579        statisticsText.Append("Missing Values: " + string.Format(stringFormat, ((overallCount - values.Count) / (double)overallCount) * 100) + "%    ");
580      return statisticsText.ToString();
581    }
582  }
583}
Note: See TracBrowser for help on using the repository browser.