|
|||
|
You cannot hide the close button. However, you can prevent the main window from being closed by using the following method:
Code:
getMainWnd().onQueryClose = function ()
{
if (some condition)
// the main window can be closed only under some specific condition
return true;
return false;
}
|
![]() |
Was this information helpful? Yes No
| Thread Tools | |
| Display Modes | |
|
|