Controls in the .NET Compact Framework
The following table lists the controls, components, and types for developing Windows Forms applications that are provided by the .NET Compact Framework, with implementation notes where applicable.
You can load and create instances of data and controls in the constructor of the form, but positioning the control and setting other properties is best performed in the Load event handler.
The .NET Compact Framework version 2.0 added support for the BackColor property on most common controls.
Control or component | Pocket PC | Smartphone | Notes |
---|---|---|---|
Yes |
No |
For information about creating custom button controls, see Custom Control Development. |
|
Yes |
Yes |
|
|
Yes |
Yes |
Supported in version 2.0. |
|
Yes |
Yes |
The default value for the DropDownStyle property is DropDownList. |
|
Yes |
No |
A shortcut menu created for a child form remains displayed when the child form is destroyed. |
|
Yes |
Yes |
You can use this control as a base for custom controls. |
|
Yes |
Yes |
The .NET Compact Framework supports only the Current property for a Cursor, and the WaitCursor and Default cursors. |
|
Yes |
Yes |
The DataGrid class for the .NET Compact Framework is in a separate assembly. You must add a reference to System.Windows.Forms.DataGrid.dll in your project to use it. For more information, see Using the DataGrid in the .NET Compact Framework. |
|
Yes |
Yes |
This control requires Windows Mobile version 5.0 for Smartphone. For more information, see How to: Use the DateTimePicker Class in the .NET Compact Framework. |
|
Yes |
No |
Displays and manages documents. See How to: Use a DocumentList Control. This control is available only in the .NET Compact Framework. |
|
Yes |
Yes |
The Height property resizes the control, unlike in the full .NET Framework. This control does not perform input validation. The SelectedItemChanged event occurs only when you click the up or down arrows, not when you type text into the control. |
|
Yes |
Yes |
On the Pocket PC, the FormBorderStyle property supports only the None and FixedSingle values. On the Smartphone, the FormBorderStyle property is not available. Although the .NET Compact Framework supports the Icon property for a form, the icon does not appear in Pocket PC and Smartphone applications by design. |
|
Yes |
No |
Provides override capabilities for buttons on the Pocket PC hardware. See How to: Use the HardwareButton Component. |
|
Yes |
No |
Displays HTML Help files used for Pocket PC help. See How to: Display User Help. |
|
Yes |
Yes |
|
|
Yes |
Yes |
|
|
Yes |
No |
Manipulates the soft input panel (SIP) on a Pocket PC. See How to: Use the InputPanel Component. This control is available only in the .NET Compact Framework. |
|
Yes |
No |
Provides access to all input method software installed on a Pocket PC. This control is available only in the .NET Compact Framework. |
|
No |
Yes |
See How to: Set Smartphone Input Modes. This control is available only in the .NET Compact Framework. |
|
Yes |
No |
Limited support of a basic hyperlink automatically formatted as underlined and blue. |
|
Yes |
Yes |
|
|
ListBox and ListControl |
Yes |
Yes |
If there are no items in the list, the Text property cannot be set. In the full .NET Framework, the value is retained but ignored. The .NET Compact Framework does not support selecting multiple items. Setting the System.Windows.Forms.ListControl.SelectedValue property works only if the control is data bound. |
Yes |
Yes |
The .NET Compact Framework does not support the Sort method. To work around this issue, see How to: Sort ListView Items. The .NET Compact Framework does not support selecting multiple items. |
|
Yes |
Yes |
Defines a logical font (LogFont) structure for text effects such as angled text. For a code example, see Rotated Text Using LogFont Sample. This class is available only in the .NET Compact Framework. |
|
Yes |
Yes |
You cannot add a menu item at the ordinal location of a menu separator. The .NET Compact Framework throws an exception and the full .NET Framework ignores this action. You cannot display an ampersand (&) in menu item text. |
|
Yes |
Yes |
Windows Mobile for Smartphone supports only 1-button or 2-button message boxes. |
|
Yes |
Yes |
Provides the capability to generate and receive Windows messages. For an example, see How to: Use the MessageWindow Class. This class is available only in the .NET Compact Framework. |
|
Yes |
Yes |
|
|
Yes |
No |
Displays and responds to user notifications. For an example, see How to: Send a Notification. |
|
Yes |
Yes |
This class provides the Hibernate event, which provides an opportunity to release cached resources. This class is available only in the .NET Compact Framework. |
|
Yes |
Yes |
The Height property resizes the control, unlike in the full .NET Framework. Unlike in the full .NET Framework, this control does not perform input validation. The ValueChanged event occurs only when you click the up or down arrows. Decimal values are treated as integers. A specification of 10.25 or 10.75, for example, is truncated to 10. Values greater than a 16-bit signed integer are not supported on a Pocket PC. Each time you get the Value property, the value returned is a multiple of the specified Increment property value. For example, if Increment is 3, Minimum is 0, and Maximum is 100, the subsequent values after selecting the up arrow are 3, 6, 9, 12, and so on. When the value approaches the minimum or maximum, it will always be set to that value and can never go beyond it. When the value is 100 and you click the down arrow, a value of 97 might be expected (100 – 3). However, because 97 is not a multiple of the increment value of 3, the control continues decrementing until it finds a multiple of 3, thus setting the value to 96. |
|
Yes |
No |
The initial directory is restricted to the My Documents folder and its subfolders. This restriction is imposed by the Pocket PC operating system to help users organize their files in the standard directories. |
|
Yes |
Yes |
|
|
Yes |
Yes |
|
|
Yes |
Yes |
|
|
Yes |
No |
|
|
Yes |
No |
|
|
Yes |
Yes |
Allows you to change the screen orientation value to 90, 180, or 270 without resetting the device. For more information, see How to: Handle Orientation and Resolution Changes. This class requires Windows Mobile version 5.0 software for Pocket PCs and Smartphones. This class is available only in the .NET Compact Framework. |
|
Yes |
No |
|
|
Yes |
No |
Always docks to the bottom of the form. Its size cannot be changed. |
|
Yes |
No |
The TabControl is initially sized to occupy the full client area of the form. Undock the control to resize it. |
|
Yes |
No |
|
|
Yes |
Yes |
Single-line TextBox controls, specified by the Multiline property, support only left alignment. Multiline text box controls can be aligned left, right, or center. If Multiline is false, the .NET Compact Framework sizes the control to the Height specification, but only the first line in the TextBox is usable. The full .NET Framework keeps the height to one line. The PasswordChar property is always an asterisk (*), regardless of what is specified. The Smartphone does not support the BorderStyle property. |
|
Yes |
Yes |
|
|
Yes |
No |
A Form supports only one ToolBar. An attempt to add an additional ToolBar throws a NotSupportedException. Setting the image index of a ToolBar button before setting the ImageList property of the ToolBar is not supported. |
|
Yes |
No |
|
|
Yes |
Yes |
The .NET Compact Framework does not support the Click event for a TreeView. An alternative is to use the AfterSelect event. To obtain functionality from the native TreeView control, see How to: Subclass a TreeView by Using Native Callbacks. |
|
Yes |
Yes |
Cannot be set to the maximum value, because similar to the NumericUpDown control, the maximum achievable value is the first empty row above the thumb. More specifically, this equates to: Maximum minus LargeChange plus 1. |
|
Yes |
Yes |
See How to: Use the WebBrowser Control in the .NET Compact Framework. |