|
<< Click to Display Table of Contents >> Navigation: Developers' Guide > Customizing User Interface > FAQs > Samples > Handling POS User Menu Item Events |
Navigation: Developers' Guide > Customizing User Interface > FAQs > Samples >
Handling POS User Menu Item Events
This topic contains sample code for handling user menu item events in Point of Sale (POS).
Refer to the "SampleAddForPOSUserMenuEvents" project file on CitiXsys Knowledge Portal.
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using CXS.Retail.Extensibility.Modules.Transaction; using System.Windows.Forms;
namespace SampleAddForPOSUserMenuEvents { /// <summary> /// Open User Menu->Click "Open Cash Drawer" 1 or 2 from Store Operations menu. /// </summary> class CashDrawerModule : POSUserMenuModuleBase { public override void OnOpenCashDrawerOne() { MessageBox.Show("Cash Drawer one");
}
public override void OnOpenCashDrawerTwo() { MessageBox.Show("Cash Drawer two"); } } } |