Exemplo n.º 1
0
        void PosBaseWindow_DeleteEvent(object o, DeleteEventArgs args)
        {
            Hide();

            //Pos
            if (SourceWindow != null)
            {
                SourceWindow.ShowAll();
            }
            //Startup Window
            else
            {
                LogicPos.Quit(this);
            };

            //Prevent Window Destroy, When user Uses Close
            args.RetVal = true;
        }
Exemplo n.º 2
0
        //:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
        //Event: touchButtonPosToolbarApplicationClose

        void touchButtonPosToolbarApplicationClose_Clicked(object sender, EventArgs e)
        {
            LogicPos.Quit(this);
        }
Exemplo n.º 3
0
 void ButtonKeyQuit_Clicked(object sender, EventArgs e)
 {
     LogicPos.Quit(this);
 }