.NET Framework 2.0で書かれた表コントロールのSourceGridがv4.8がリリースされている。
SourceGridのサイトはこちら
4.7→4.8の変更点
Updated the DevAgeSourcePack references to version 4.8 to fix some bugs (see DevAgeSourcePack History section for details)
Renamed IBindedList to IBoundList
Renamed BindedListBase to BoundListBase
Renamed BindedList to BoundList
Renamed BindedDataView to BoundDataView
Fixed a bug in the TextBoxUITypeEditor when the text is not valid, especially for the DateTime editor (1615918).
Fixed a bug in the AutoSize and Measure of merged cells that caused the merged cells to not autosize correctly (1601792).
Signed SourceGrid assemblies with the .snk file
Replaced the BindedListBase with the IBoundList interface in the DataGrid implementation
Added a Visible property to the ColumnInfo and RowInfo class to show or hide columns or rows. For example you can hide a column with this code: grid1.Columns[0].Visible = false;. See form 50 for an example. (1569378)
Fixed a bug in the CellControl.UnBindToGrid method, used when removing or replacing CellControl cells.
Added support for nullable checkbox value. Now when the value of a checkbox is null the Undefined checkbox status is used. The Checked property now returns a Nullable bool value (bool?).
Fixed documentation English errors
Added HeaderHeight property in the DataGridRows class, which can be used to set the header height of the DataGrid control. (1604395)
Comments