本文整理汇总了C++中win::dow::Handle::PostMsg方法的典型用法代码示例。如果您正苦于以下问题:C++ Handle::PostMsg方法的具体用法?C++ Handle::PostMsg怎么用?C++ Handle::PostMsg使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类win::dow::Handle
的用法示例。
在下文中一共展示了Handle::PostMsg方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: OnCreate
bool TopCtrl::OnCreate (Win::CreateData const * create, bool & success) throw ()
{
Win::Dow::Handle win = GetWindow ();
try
{
win.SetText ("Unit Test");
Win::EditMaker editMaker (_h, 1);
editMaker.Style ()
<< Win::Edit::Style::MultiLine
<< Win::Edit::Style::AutoVScroll
<< Win::Style::Ex::ClientEdge
<< Win::Style::AddVScrollBar;
_output.Reset (editMaker.Create ());
_watch.reset (new Watch (win));
_timer.Attach (win);
win.PostMsg (_initMsg);
success = true;
}
catch (Win::Exception e)
{
TheOutput.Display (e);
success = false;
}
catch (...)
{
Win::ClearError ();
TheOutput.Display ("Initialization -- Unknown Error", Out::Error);
success = false;
}
TheOutput.SetParent (win);
_ready = true;
return true;
}
示例2: OnCreate
bool TopCtrl::OnCreate (Win::CreateData const * create, bool & success)
{
Win::Dow::Handle win = GetWindow ();
ResString caption (win.GetInstance (), ID_CAPTION);
try
{
TheOutput.Init (caption);
win.SetText (caption);
_commander.reset (new Commander (win));
_commander->SetModelessManager (&_modelessMan);
_cmdVector.reset (new CmdVector (Cmd::Table, _commander.get ()));
Accel::Maker accelMaker (Accel::Keys, *_cmdVector);
_kbdAccel.reset (new Accel::Handler (win, accelMaker.Create ()));
_msgPrepro.SetKbdAccelerator (_kbdAccel.get ());
_menu.reset (new Menu::DropDown (Menu::barItems, *_cmdVector));
_menu->AttachToWindow (win);
_view.reset (new View (win));
RegisterAsDropTarget(win);
win.PostMsg (_initMsg);
success = true;
}
catch (Win::Exception e)
{
TheOutput.Display (e);
success = false;
}
catch (...)
{
Win::ClearError ();
TheOutput.Display ("Initialization -- Unknown Error", Out::Error);
success = false;
}
TheOutput.SetParent (win);
_ready = true;
return true;
}