Quit() public static method

Quits the program.
public static Quit ( ) : void
return void
コード例 #1
0
        /*	Window	*/

        public void OnWindowDelete(object o, DeleteEventArgs args)
        {
            bool quit = Base.Quit();

            args.RetVal = !quit; //True to keep the window open
        }
コード例 #2
0
 public void OnFileQuit(object o, EventArgs args)
 {
     Base.Quit();
 }