PickerFlyoutBase
PickerFlyoutBase
PickerFlyoutBase
PickerFlyoutBase
Class
Definition
Represents a base class for picker controls.
public : class PickerFlyoutBase : FlyoutBase, IPickerFlyoutBase, IPickerFlyoutBaseOverridespublic class PickerFlyoutBase : FlyoutBase, IPickerFlyoutBase, IPickerFlyoutBaseOverridesPublic Class PickerFlyoutBase Inherits FlyoutBase Implements IPickerFlyoutBase, IPickerFlyoutBaseOverrides// This API is not available in Javascript.
- Inheritance
-
PickerFlyoutBasePickerFlyoutBasePickerFlyoutBasePickerFlyoutBase
- Attributes
| Device family |
Windows 10 (introduced v10.0.10240.0)
|
| API contract |
Windows.Foundation.UniversalApiContract (introduced v1)
|
Inherited Members
Inherited properties
Inherited methods
Inherited events
Constructors
PickerFlyoutBase() PickerFlyoutBase() PickerFlyoutBase() PickerFlyoutBase()
Provides base-class initialization behavior for classes that are derived from the PickerFlyoutBase class.
protected : PickerFlyoutBase()protected PickerFlyoutBase()Protected Sub New()// This API is not available in Javascript.
Properties
TitleProperty TitleProperty TitleProperty TitleProperty
Gets the identifier for the attached title property.
public : static DependencyProperty TitleProperty { get; }public static DependencyProperty TitleProperty { get; }Public Static ReadOnly Property TitleProperty As DependencyProperty// This API is not available in Javascript.
The identifier for the attached title property.
Methods
GetTitle(DependencyObject) GetTitle(DependencyObject) GetTitle(DependencyObject) GetTitle(DependencyObject)
Gets the title displayed on the picker control.
public : static PlatForm::String GetTitle(DependencyObject element)public static string GetTitle(DependencyObject element)Public Static Function GetTitle(element As DependencyObject) As string// This API is not available in Javascript.
The dependency object for which to get the title.
The title displayed on the picker control.
OnConfirmed() OnConfirmed() OnConfirmed() OnConfirmed()
Notifies PickerFlyoutBase subclasses when a user has confirmed a selection.
protected : virtual void OnConfirmed()protected virtual void OnConfirmed()Protected Overridable Function OnConfirmed() As void// This API is not available in Javascript.
SetTitle(DependencyObject, String) SetTitle(DependencyObject, String) SetTitle(DependencyObject, String) SetTitle(DependencyObject, String)
Sets the title displayed on a picker control.
public : static void SetTitle(DependencyObject element, PlatForm::String value)public static void SetTitle(DependencyObject element, String value)Public Static Function SetTitle(element As DependencyObject, value As String) As void// This API is not available in Javascript.
The dependency object for which to set the title.
- value
- PlatForm::String String String String
The title you want to display.
ShouldShowConfirmationButtons() ShouldShowConfirmationButtons() ShouldShowConfirmationButtons() ShouldShowConfirmationButtons()
Gets or sets whether confirmation buttons should be shown in the picker. Note: This method has no base class implementation and must be overridden in a derived class.
protected : virtual PlatForm::Boolean ShouldShowConfirmationButtons()protected virtual bool ShouldShowConfirmationButtons()Protected Overridable Function ShouldShowConfirmationButtons() As bool// This API is not available in Javascript.
True if confirmation buttons should be shown in the picker; Otherwise, false.
Remarks
This method has no base class implementation and must be overridden in a derived class.