Class PickerToolbarItem
Allows picking a specific item from a collection of items.
Inheritance
Inherited Members
Namespace: Telerik.XamarinForms.RichTextEditor
Assembly: Telerik.XamarinForms.RichTextEditor.dll
Syntax
public class PickerToolbarItem : RichTextEditorToolbarItem, ILayoutControlPanelChild
Constructors
PickerToolbarItem()
Declaration
public PickerToolbarItem()
Fields
DisplayMemberPathProperty
Identifies the DisplayMemberPath property.
Declaration
public static readonly BindableProperty DisplayMemberPathProperty
Field Value
Xamarin.Forms.BindableProperty
|
DisplayStringFormatProperty
Identifies the DisplayStringFormat property.
Declaration
public static readonly BindableProperty DisplayStringFormatProperty
Field Value
Xamarin.Forms.BindableProperty
|
DisplayValueConverterProperty
Identifies the DisplayValueConverter property.
Declaration
public static readonly BindableProperty DisplayValueConverterProperty
Field Value
Xamarin.Forms.BindableProperty
|
ItemsLayoutTemplateProperty
Identifies the ItemsLayoutTemplate property.
Declaration
public static readonly BindableProperty ItemsLayoutTemplateProperty
Field Value
Xamarin.Forms.BindableProperty
|
ItemsSourceProperty
Identifies the ItemsSource property.
Declaration
public static readonly BindableProperty ItemsSourceProperty
Field Value
Xamarin.Forms.BindableProperty
|
ItemStyleProperty
Identifies the ItemStyle property.
Declaration
public static readonly BindableProperty ItemStyleProperty
Field Value
Xamarin.Forms.BindableProperty
|
ItemTemplateProperty
Identifies the ItemTemplate property.
Declaration
public static readonly BindableProperty ItemTemplateProperty
Field Value
Xamarin.Forms.BindableProperty
|
PickerPopupPlacementProperty
Identifies the PickerPopupPlacement property.
Declaration
public static readonly BindableProperty PickerPopupPlacementProperty
Field Value
Xamarin.Forms.BindableProperty
|
PopupContentHeightProperty
Identifies the PopupContentHeight property.
Declaration
public static readonly BindableProperty PopupContentHeightProperty
Field Value
Xamarin.Forms.BindableProperty
|
PopupContentStyleProperty
Identifies the PopupContentStyle property.
Declaration
public static readonly BindableProperty PopupContentStyleProperty
Field Value
Xamarin.Forms.BindableProperty
|
SelectedItemProperty
Identifies the SelectedItem property.
Declaration
public static readonly BindableProperty SelectedItemProperty
Field Value
Xamarin.Forms.BindableProperty
|
SelectedItemStyleProperty
Identifies the SelectedItemStyle property.
Declaration
public static readonly BindableProperty SelectedItemStyleProperty
Field Value
Xamarin.Forms.BindableProperty
|
SelectedItemTemplateProperty
Identifies the SelectedItemTemplate property.
Declaration
public static readonly BindableProperty SelectedItemTemplateProperty
Field Value
Xamarin.Forms.BindableProperty
|
Properties
DisplayMemberPath
Gets or sets a path to the property used to display the items of the PopupContentView.
Declaration
public string DisplayMemberPath { get; set; }
Property Value
System.String
|
DisplayStringFormat
Gets or sets the string format used to display the items of the PopupContentView.
Declaration
public string DisplayStringFormat { get; set; }
Property Value
System.String
|
DisplayValueConverter
Gets or sets a Xamarin.Forms.IValueConverter used to display the items of the PopupContentView.
Declaration
public IValueConverter DisplayValueConverter { get; set; }
Property Value
Xamarin.Forms.IValueConverter
|
ItemsLayoutTemplate
Gets or sets a Xamarin.Forms.DataTemplate for the item layout.
Declaration
public DataTemplate ItemsLayoutTemplate { get; set; }
Property Value
Xamarin.Forms.DataTemplate
|
ItemsSource
Gets or sets a collection of items to pick from.
Declaration
public IEnumerable ItemsSource { get; set; }
Property Value
System.Collections.IEnumerable
|
ItemStyle
Gets or sets a Xamarin.Forms.Style to apply to the items.
Declaration
public Style ItemStyle { get; set; }
Property Value
Xamarin.Forms.Style
|
ItemTemplate
Gets or sets a Xamarin.Forms.DataTemplate for the items.
Declaration
public DataTemplate ItemTemplate { get; set; }
Property Value
Xamarin.Forms.DataTemplate
|
PickerPopupPlacement
Gets or sets a PlacementMode used for the popup.
Declaration
public PlacementMode PickerPopupPlacement { get; set; }
Property Value
PlacementMode
|
PopupContentHeight
Gets or sets the height of the PopupContentView.
Declaration
public double PopupContentHeight { get; set; }
Property Value
System.Double
|
PopupContentStyle
Gets or sets a Xamarin.Forms.Style to apply to the PopupContentView.
Declaration
public Style PopupContentStyle { get; set; }
Property Value
Xamarin.Forms.Style
|
SelectedItem
Gets or sets the currently selected item.
Declaration
public object SelectedItem { get; set; }
Property Value
System.Object
|
SelectedItemStyle
Gets or sets a Xamarin.Forms.Style to apply to the selected items.
Declaration
public Style SelectedItemStyle { get; set; }
Property Value
Xamarin.Forms.Style
|
SelectedItemTemplate
Gets or sets a Xamarin.Forms.DataTemplate for the selected items.
Declaration
public DataTemplate SelectedItemTemplate { get; set; }
Property Value
Xamarin.Forms.DataTemplate
|
Methods
OnPropertyChanged(String)
Declaration
protected override void OnPropertyChanged(string propertyName = null)
Parameters
System.String
propertyName
|
Overrides
Events
SelectedItemChanged
Raised when the SelectedItem property has changed.
Declaration
public event EventHandler<RadValueChangedEventArgs<object>> SelectedItemChanged
Event Type
System.EventHandler<RadValueChangedEventArgs<System.Object>>
|