UIStatus UIStatus UIStatus UIStatus Enum
Definition
Indicates the status of the file picker UI.
public : enum class UIStatuspublic enum UIStatusPublic Enum UIStatus// You can use this enum in JavaScript.
- Attributes
| Device family |
Windows 10 (introduced v10.0.10240.0 - for Xbox, see UWP features that aren't yet supported on Xbox)
|
| API contract |
Windows.Foundation.UniversalApiContract (introduced v1)
|
Fields
| Complete Complete Complete Complete | The file picker is currently showing UI and all This indicates that UI is presently being shown, and that the app has finished responding to all FileUpdateRequested events. |
| Hidden Hidden Hidden Hidden | The file picker is not showing UI, but UI can be requested. If the app that provides updates requests UI by completing its response to a FileUpdateRequested event and setting the FileUpdateRequest.Status to FileUpdateStatus.UserInputNeeded, a UIRequested event will fire to indicate that UI will display immediately, and a new FileUpdateRequested event will fire (for the same file) so that the app can get the user's input and complete the request successfully. |
| Unavailable Unavailable Unavailable Unavailable | The file picker is not showing UI and UI can't be requested. If the app that provides updates requests UI by completing its response to a FileUpdateRequested event and setting the FileUpdateRequest.Status to FileUpdateStatus.UserInputNeeded, the app will be closed immediately and the failure may be reported to the app that triggered the updates. |
| Visible Visible Visible Visible | The file picker is currently showing UI because UI was requested by the app. |