| 104 | } |
| 105 | |
| 106 | IAsyncAction MainPage::NotifyUser(const hstring& message) { |
| 107 | ContentDialog dialog; |
| 108 | dialog.Content(box_value(message)); |
| 109 | dialog.PrimaryButtonCommand(StandardUICommand{ StandardUICommandKind::Close }); |
| 110 | co_await dialog.ShowAsync(); |
| 111 | } |
| 112 | |
| 113 | IAsyncOperation<StorageFile> MainPage::CopyDefaultConfig(const IStorageFolder& configFolder, std::wstring_view path, const hstring& desiredName) |
| 114 | { |
nothing calls this directly
no outgoing calls
no test coverage detected