Posts by JonesVG • 233 points
4 posts
-
2
votes0
answers40
viewsQ: Work with two treeviews and their WPF items
I have two similar treeviews, but with different items, in this case, one of them brings a dialogue in Portuguese while the other should bring the same dialogue in English. I have two text boxes,…
-
9
votes1
answer832
viewsQ: How to copy a file from the network to my computer using C#?
I have a desktop application that needs to copy media files from a server, videos and images. The server is on the same network as the terminal on which the program will be installed. The problem…
-
0
votes3
answers1866
viewsA: Bringing Winform Window Forward
To leave your application in front of all the others in the terminal, or form in front of everything put this.TopMost = true, this way will always leave this application in front of ALL. Ai to work…
-
12
votes2
answers618
viewsA: How to list methods of a class in C#?
Dude, use the Type.GetMethods, I took the answer from Stackoverflow gringo himself and it works, at least here. Stackoverflow Gringo using System; using System.Linq; class Test { static void Main()…