1. more corrections for ref counted editors/renderers (doesn't crash any more,

might leak memory though)
2. attempt to add parameters to renderers - failed.


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@6357 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2000-02-29 18:36:04 +00:00
parent 39bcce60fe
commit 0b190b0f6a
3 changed files with 237 additions and 44 deletions

View File

@@ -231,6 +231,16 @@ GridFrame::GridFrame()
grid->SetColSize(4, 120);
grid->SetColMinimalWidth(4, 120);
grid->SetColFormatFloat(5);
grid->SetCellValue(0, 5, "3.1415");
grid->SetCellValue(1, 5, "1415");
grid->SetCellValue(2, 5, "12345.67890");
grid->SetColFormatFloat(6, 6, 2);
grid->SetCellValue(0, 6, "3.1415");
grid->SetCellValue(1, 6, "1415");
grid->SetCellValue(2, 6, "12345.67890");
wxBoxSizer *topSizer = new wxBoxSizer( wxVERTICAL );
topSizer->Add( grid,
1,
@@ -1096,5 +1106,8 @@ BugsGridFrame::BugsGridFrame()
grid->SetMargins(0, 0);
grid->Fit();
Fit();
wxSize size = grid->GetSize();
size.x += 10;
size.y += 10;
SetClientSize(size);
}