CachedFileUpdaterUI.Title Property

Definition

Gets or sets the title to display in the top-left the file picker UI. The title identifies the location or context of the app's page (which is hosted in the file picker UI) for the user.

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 = cachedFileUpdaterUI.title;
cachedFileUpdaterUI.title = string;
Public Property Title As String

Property Value

String

Platform::String

winrt::hstring

The title to display in the top-left of the file picker UI.

Remarks

You should update the title to indicate the current context of your app within the file picker. For example, you could set the title to "Login" if user login is required, or "Resolve conflict" if there is a file conflict.

Applies to