Tag uwp

[Solved] Promoting my GitHub repo [closed]

Karl Fogel’s Producing Open Source Software has a chapter on this. It includes posting on relevant mailing lists, having a good project page, and a communication infrastructure (e.g., mailing list). 4 solved Promoting my GitHub repo [closed]

[Solved] Album art of mp3 music file [duplicate]

You could use StorageFile.GetThumbnailAsync method to do this. If you want to get more info, please refer to the Scenario2 of official sample. XAML code: <Grid> <StackPanel> <Button Content=”Load Album art” Click=”Button_Click”/> <Image x:Name=”ImageControl”/> </StackPanel> </Grid> Code behind: private async…

[Solved] how to post string to URL in UWP

You can upload a file with the HttpClient (which replaces the WebClient in UWP) Code: private async Task<string> UploadImage(byte[] file, Uri url) { using (var client = new HttpClient()) { MultipartFormDataContent form = new MultipartFormDataContent(); var content = new StreamContent(new…

[Solved] How can I get the file type of a download?

Put aside background transfer APIs, I think the first question actually you should know is “how to get the file extension from a download Uri”. For this,we need to consider several scenarios about the “Uri”. The download Uri does have…

[Solved] Async Wait issues with view updation in UWP

Since calling Bindings.Update() fixed your issue, your binding expressions should be correct, but somehow the property change notification fails. I am not going to guess what really went wrong here but to explain when you should be using Bindings.Update(), and…