Explore tens of thousands of sets crafted by our community.
Xamarin Forms Controls
30
Flashcards
0/30
Label
A control used to display text to the user. Common properties include Text, TextColor, and FontAttributes.
Button
A control that can be clicked by users. Common properties include Command, Text, and Clicked event.
Entry
A single-line text input control. Common properties include Text, Placeholder, and Keyboard.
Editor
A multi-line text input control. Common properties include Text, FontSize, and AutoSize.
Picker
A control for selecting an item from a list. Common properties include ItemsSource, SelectedItem, and Title.
DatePicker
A control for selecting a date. Common properties include Date, Format, and MinimumDate.
TimePicker
A control for selecting a time. Common properties include Time, Format, and Is24HourView.
Switch
A toggle control for two states: on and off. Common properties include IsToggled, OnColor, and Toggled event.
Slider
A control that allows selection of a value from a continuous range. Common properties include Minimum, Maximum, and Value.
Stepper
A control allowing users to increase or decrease a value. Common properties include Increment, Minimum, and Maximum.
ListView
A control for presenting lists of data. Common properties include ItemsSource, ItemTemplate, and ItemSelected event.
CollectionView
An optimized control for presenting lists of data using different layout specifications. Common properties include ItemsSource, ItemsLayout, and SelectionMode.
ScrollView
A layout that enables scrolling of its child elements. Common properties include Orientation, Content, and HorizontalScrollBarVisibility.
Frame
A container control with a border and optional shadow. Common properties include Content, BorderColor, and CornerRadius.
BoxView
A simple control used for drawing rectangles of a solid color or gradient. Common properties include Color, CornerRadius, and WidthRequest.
ActivityIndicator
A control that indicates that something is ongoing. Common properties include IsRunning, Color, and IsVisible.
ProgressBar
A control for showing determinate progress. Common properties include Progress, ProgressColor, and ProgressTo method.
Image
A control that displays an image. Common properties include Source, Aspect, and IsOpaque.
WebView
A control for displaying web content. Common properties include Source, CanGoBack, and CanGoForward.
CarouselView
A control that presents items in a scrollable horizontal list. Common properties include ItemsSource, Loop, and ItemTemplate.
RadioButton
A control that allows the user to select one option from a set. Common properties include IsChecked, GroupName, and Content.
CheckBox
A control that allows the user to toggle a value between two states. Common properties include IsChecked, Color, and Content.
SearchBar
A control that provides a user interface for entering search queries. Common properties include Text, Placeholder, and SearchCommand.
TabbedPage
A multi-page container for organizing content across different tabs. Common properties include Children, CurrentPage, and BarBackgroundColor.
NavigationPage
A page that manages the navigation and user-experience of a stack of other pages. Common properties include BarBackgroundColor, BarTextColor, and BackButtonTitle.
MasterDetailPage
A page that manages two panes: a master list and a detail page. Common properties include Master, Detail, and IsPresented.
Shell
A modern replacement for the master-detail page, navigation page, tabbed page, etc. Common properties include FlyoutHeader, FlyoutItemTemplate, and Route.
ContentPage
A simple page that displays a single view, often used as a child page in page containers like NavigationPage or TabbedPage. Common properties include Content, Title, and Padding.
AbsoluteLayout
A layout that positions and sizes children based on explicit relationships to its boundaries. Common properties include Children, LayoutBounds, and LayoutFlags.
FlexLayout
A layout that distributes space and aligns child elements in a single direction or multiple directions. Common properties include Direction, JustifyContent, and AlignItems.
© Hypatia.Tech. 2024 All rights reserved.