Free cookie consent management tool by TermsFeed Policy Generator

Changeset 342 for branches


Ignore:
Timestamp:
06/26/08 12:21:57 (16 years ago)
Author:
gkronber
Message:

added comments why we need round-trip formatting in the dataGrids (ticket #175)

Location:
branches/Ticket175Branch/HeuristicLab.DataAnalysis
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/Ticket175Branch/HeuristicLab.DataAnalysis/DatasetView.cs

    r340 r342  
    4444          { manipulator.Execute(Dataset); }));
    4545      }
    46 
     46     
     47      // format all cells with the round-trip formatter to make sure that values that are exported and imported to
     48      // another C# app (HL2) have the same numeric value
    4749      dataGridView.DefaultCellStyle.Format = "r";
    4850    }
  • branches/Ticket175Branch/HeuristicLab.DataAnalysis/ManualScalingControl.cs

    r340 r342  
    1818      cancelButton.Visible = editingAllowed;
    1919      cancelButton.Text = "Cancel";
     20
     21      // format all cells with the round-trip formatter to make sure that exported and imported values have
     22      // the same numeric value
    2023      dataGridView.DefaultCellStyle.Format = "r";
    2124    }
Note: See TracChangeset for help on using the changeset viewer.