SettingsFlyout.Title Property

Definition

Gets or sets the title of the SettingsFlyout control when displayed.

public:
 property Platform::String ^ Title { Platform::String ^ get(); void set(Platform::String ^ value); };
winrt::hstring Title();

void Title(winrt::hstring value);
public string Title { get; set; }
var string = settingsFlyout.title;
settingsFlyout.title = string;
Public Property Title As String
<SettingsFlyout Title="string"/>

Property Value

String

Platform::String

winrt::hstring

The title of the SettingsFlyout control. This typically appears in the SettingsFlyout control header area. The default is an empty string.

Remarks

Note

Even though the default property value is an empty string, the Microsoft Visual Studio Settings Flyout item template sets the Title to the name of your settings flyout class (for example, Title="AccountSettingsFlyout").

Applies to