CachedFileUpdaterUI.Title Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
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.