Новости версии 0.8.7

Поддержка WPF

Начиная с версии 0.8.7 ReoGrid поддерживает платформу WPF, to implement this, the UI rendering and spreadsheet content management has been separated into two modules in 0.8.7. ReoGrid uses an abstract rendering interface to implement that render to both Windows Form and WPF platform.

reogrid_087_construction

The controls on two platforms use the same spreadsheet content management code library, provide same APIs and class library. One spreadsheet template (ReoGrid Format XML) file or Excel file (available from 0.8.8) could be displayed on two platforms.

155

APIs of Control and Worksheet have been separated

Almost all of methods in the spreadsheet control in 0.8.6 have been moved to worksheet object, a new object in 0.8.7, which is accessible from both control Windows Form and WPF edition.

reogrid_087_usage

Since the APIs have been moved into the worksheet object, all of calls to the ReoGridControl in 0.8.6 should be changed to call worksheet, for example:

C#: 0.8.6

// merge and set cell text
grid.MergeRange(new ReoGridRange("A1:D3"));
grid["A1"] = "hello world";
grid.Cells["A1"].Style.BackColor = Color.LightYellow;

C#: 0.8.7

// get current worksheet
var sheet = grid.CurrentWorksheet;

// объединение ячеек и добавление текста в полученную ячейку
sheet.MergeRange("A1:D3");
sheet["A1"] = "привет, мир";
sheet.Cells["A1"].Style.BackColor = Color.LightYellow;

VB.NET: 0.8.6

grid.MergeRange(New ReoGridRange("A1:D3"))
grid("A1") = "привет, мир"
grid.Cells("A1").Style.BackColor = Color.LightYellow

VB.NET: 0.8.7

'получаем текущий лист
Dim sheet = grid.CurrentWorksheet

sheet.MergeRange("A1:D3")
sheet("A1") = "привет, мир"
sheet.Cells("A1").Style.BackColor = Color.LightYellow

Notice that var sheet = grid.CurrentWorksheet sentence is the key of upgrading to 0.8.7. Sometimes to decrease the modify work, change the control name to gridControl and declare a new variable as the old name grid will greatly help to save time.

var gridControl = new ReoGridControl() { ... };
var grid = gridControl.CurrentWorksheet;
grid...

[include]/var/local/wordpress/uploads/reogrid.net/2014/08/wpf-features.html[/include]

Фильтрация и сортировка по столбцу

Now column filter and sort (optional GUI) is available from 0.8.7.

156

Performance improvement on cells updating

For getting better performance during column filter and sort, we tried to improve the cells updating process, a new delay updating mechanism has been added into 0.8.7 , it gives 50% up on performance improvement compare to the old version 0.8.6 during cells updating.

reogrid_087_performance_up

Подробнее о версии 0.8.7

 Загрузка

Оставить комментарий