InputPanel Class
[This documentation is for preview only, and is subject to change in later releases. Blank topics are included as placeholders.]
Controls the soft input panel (SIP) for entering data on Pocket PCs and other Windows Embedded CE-based devices.
Namespace: Microsoft.WindowsCE.Forms
Assembly: Microsoft.WindowsCE.Forms (in Microsoft.WindowsCE.Forms.dll)
The .NET Compact Framework provides the InputPanel component, which supplies a managed implementation of the SIP control in Windows Embedded CE. When you create a Windows-based application that targets the Pocket PC platform, Visual Studio automatically adds a MainMenu component to the Form1 file in your project. This component adds the lower menu bar with the SIP icon to your form. No programming is required to use the SIP; users can toggle the display of the SIP by tapping the icon. To program the SIP, drag the InputPanel component from the ToolBox to your form.
You can show the SIP programmatically by using the Enabled property, get its size by using the Bounds property, and determine the size of the form area that is not occupied by the SIP by using the VisibleDesktop property. Note that the Bounds property always returns a width of 240 pixels and a height of 80 pixels for Pocket PCs, regardless of whether the SIP is enabled. The EnabledChanged event occurs whenever the SIP is enabled or disabled, either by the user or programmatically. A typical reason for programming the SIP is to reposition or resize controls on the form when the SIP is enabled and disabled.
Note |
|---|
A few Pocket PC devices return a height greater than 80 pixels for the SIP. Use the Bounds property to determine the height. |
| Topic | Location |
|---|---|
| How to: Use the InputPanel Component | .NET Compact Framework |
| How to: Use the InputPanel Component | .NET Compact Framework |
| How to: Use the InputPanel Component | .NET Compact Framework |
The following example contains a text box on a page of a tab control. It displays the SIP when the text box receives the focus, and uses the EnabledChanged event to decrease the height of the tab control when the SIP is enabled and restore its original height when the SIP is disabled.
Note |
|---|
You must add a reference to the Microsoft.WindowsCE.Forms namespace to your project to build this example. |
System::MarshalByRefObject
System.ComponentModel::Component
Microsoft.WindowsCE.Forms::InputPanel
Windows CE, Windows Mobile for Pocket PC
The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Note