Introduction
This knowledge based article assists you with adding a floating keyboard on a custom screen in iVend Retail on the Point of Sale (POS).
Overview
The iVend Retail Add-on Extensibility Framework allows to the developer to add a floating keyboard to a custom screen on the iVend Retail POS. Developers can add the floating keyboard on any custom screen that contains 62 keys to assist with carrying out smooth business operations.
Purpose
The main purpose of creating a floating keyboard to a custom screen is to enhance the functionality and the interface of the POS, making it quick and easy for the user to interact for a seamless operation at the POS.
Showing floating screen on custom screen
The following code snippet can be used to display a floating keyboard in any event on the custom screen.
OnScreenKeyBoard floatingKeyboard = new OnScreenKeyBoard();
floatingKeyboard.TopMost = true;
floatingKeyboard.MaximizeBox = false;
floatingKeyboard.Size = new System.Drawing.Size(790, 380);
floatingKeyboard.Show();