maui-404418-form-items-overview.md
DevExpress Mobile UI for .NET MAUI contains a set of components called Form Items. You can incorporate these components into your app pages to create data entry forms, profile pages, navigation menus, action sheets, or settings panels.
Watch Video: Use Form Items to Implement Settings and Navigation Pages in Your .NET MAUI Application
View Example: DevExpress Form Items for .NET MAUI
The following picture shows the basic elements of a form item:
Before you proceed, read the following topic: Get Started with DevExpress Controls for .NET Multi-platform App UI (.NET MAUI).
The following code adds a namespace reference so you can work with Form Item controls:
<ContentPage
xmlns:dx="http://schemas.devexpress.com/maui">
<!--...-->
</ContentPage>
You can use any layout class to arrange form items on the form. The following example adds FormItem objects to a VerticalStackLayout. To combine form items into groups, you can use a special form item type - FormGroupItem:
<ScrollView>
<VerticalStackLayout>
<dx:FormGroupItem>
<dx:FormItem .../>
<dx:FormItem .../>
<!--...-->
</dx:FormGroupItem>
</VerticalStackLayout>
</ScrollView>
The following form items are available:
FormItemAllows users to display an image, title, description, arrow, and additional content. You can invoke an action when a user taps this item.FormCheckItemAllows users to select or clear a check box to change a Boolean property value.FormSwitchItemAllows users to toggle a switch to change a Boolean property value.FormListPickerItemAllows users to select options from a predefined list.FormGroupItemAllows users to combine form items into groups.