Posts by Elivelton Andreati Sorato • 34 points
3 posts
-
0
votes2
answers717
viewsA: Run command as Admin c#
Try placing the following command: myProcess.StartInfo.Verb = "runas";
c#answered Elivelton Andreati Sorato 34 -
1
votes2
answers179
viewsA: Consume Json and direct to a database using C#
The Class Requested the Attribute NumPedido must be Pedido. namespace ApiTeste.Models { public class Pedidos { public Pedido[] list { get; set; } //public List<Pedido> pedido { get; set; } }…
-
0
votes1
answer683
viewsA: Buttons with WPF images
To accomplish this in WPF, you will need 2 images, one for the standard effect and the other for the effect of Mouse Over. Here’s a link from Stackoverflow that can help solve this problem:…