Posts by Sérgio Damasceno • 173 points
4 posts
-
2
votes1
answer71
viewsA: How to convert Enum to string?
In the example below I convert String to Enum and vice versa. I hope I helped. using System; namespace TestVoid { class Program { static void Main(string[] args) { var placeStr = "Home"; var place =…
c#answered Sérgio Damasceno 173 -
0
votes1
answer88
viewsA: How to scale images for apps?
I think you’ve confused the screen dimensions a little bit with image dimensions. 320, 720 and 1024 are the minimum design dimensions you should create to suit small, medium and large devices.…
-
1
votes1
answer47
viewsQ: UWP XAML Frame.Navigate to page with parameter
I have two pages and I want to navigate from one to the other. Only the second page has a parameter that should be received from the first. ... class MainPage { MainPage() { InitializaComponent(); }…
-
4
votes1
answer51
viewsQ: Path points in xaml
I am creating an application that will make an agent walk through an area with various obstacles as shown in the figure. The agent will walk from point S to point G, passing only through the…