예제 #1
0
파일: frame.cpp 프로젝트: jonntd/dynamica
void wxFrame::HandleResized( double timestampsec )
{
    // according to the other ports we handle this within the OS level
    // resize event, not within a wxSizeEvent

    PositionBars();

    wxNonOwnedWindow::HandleResized( timestampsec );
}
예제 #2
0
파일: frame.cpp 프로젝트: mark711/Cafu
void wxFrame::OnSize(wxSizeEvent& event)
{
    PositionBars();
    
    event.Skip();
}