Posts by Odair José Gambert Nossa • 124 points
5 posts
-
0
votes1
answer400
viewsA: How to convert this Json to Objects in C#
An easy way to create a class that represents a Json (in Dotnet 4.5 or higher) is to copy Json content to the clipboard, create a new class, and use the menu command Edit > Paste Special >…
-
1
votes1
answer753
viewsA: View PDF document windows Forms
I had a similar problem recently and I’ve been researching something to view PDF in a Windowsforms application and ended up finding this project Moon PDF. This is a WPF control so you will need to…
-
4
votes2
answers4220
viewsA: Adjust Form layout according to monitor resolution
Making a responsive form is not difficult. There are several alternatives that can be used (Tabbledlayoutpanel, Anchor Properties and Dock of the controls, Flowlayoutpanel and the junction of all…
-
1
votes2
answers116
viewsA: Is that a Property, class attribute or what?
This is a GET method introduced in the latest versions of C#: public int X { get {return A + B;}} Amounts to this: public int X => A + B;…
-
1
votes0
answers51
viewsQ: Identify Child Control Resize
Hello. I am going through the following scenario. I have a Usercontrol that has dynamic width based on the text typed in a Textbox within it. For this in the Textchanged event of this Textbox, the…