Adding Floating Keyboard on Custom Screen

Adding Floating Keyboard on Custom Screen

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();
    • Related Articles

    • Floating Keyboard

      Introduction iVend Add-on Framework is used for writing Custom Business Logic independently by a programmer. iVend Addon allows to extend business logic either in Management Console or at the Terminal POS.The addon framework allows deployment of ...
    • Floating Keyboard

      Introduction: iVend Add-on Framework is used for writing Custom Business Logic independently by a programmer. iVend Addon allows to extend business logic either in Management Console or at the Terminal POS. The addon framework allows deployment of ...
    • Touchscreen Control on Custom Screen

      Introduction This knowledge base article will assist developers about how to customise a Touchscreen Control in a Custom Screen used in the iVend Retail Point of Sale (POS) using the iVend Retail Add-on Extensibility Framework.Sale. Environment: ...
    • POS - Using Touch screen controls like 'on screen Keyboard', 'Date and Number Entry Controls' on Custom Screens

      Introduction: iVend Add-on Framework is used for writing Custom Business Logic independently by a programmer. iVend Addon allows to extend business logic either in Management Console or at the Terminal POS. The addon framework allows deployment of ...
    • POS - Using Touch screen controls like 'on screen Keyboard', 'Date and Number Entry Controls' on Custom Screens

      Introduction iVend Add-on Framework is used for writing Custom Business Logic independently by a programmer. iVend Addon allows to extend business logic either in Management Console or at the Terminal POS.The addon framework allows deployment of ...