02:05 PictureBox 02:15 Set properties to the PictureBox 02:50 Make a function to attract where is mouse pointer on the PictureBox 03:35 Coordinate system for PictureBox 04:20 Get a DPI 05:30 Convert point to a PointF 06:16 Current position 07:23 Pixels to millimeters
@김해찬-v8m2 жыл бұрын
I like your video! Also the atmosphere. Thank you :)
@LeeDean-19 ай бұрын
Greate! Amazing! please more....
@joseantoniocarreraescobar58565 ай бұрын
amazing video, thank you so much for create it
@norbertjaworowski6314 Жыл бұрын
You're doing a great job!
@imtiazhussain50272 жыл бұрын
Assalamo Alaikum. Excellent. Dear you have a very good hand at Autocad programming in C#. Would you mind telling me your location. Thanks.
@programadoremcsharp49822 жыл бұрын
Brazil
@afshinsalehi21365 ай бұрын
دمت گرم با مرام
@TrueRMS-li4hm5 ай бұрын
C# Drawing! 🎉
@vorapobautomation9760Ай бұрын
How to import the .DXF file with layor name on CAD file into the C# form ?
@citoyenx1470 Жыл бұрын
Thanks you very much
@citoyenx1470 Жыл бұрын
Please sir, how can I contact u ?
@citoyenx1470 Жыл бұрын
Thanks
@mridul_SIL10 ай бұрын
hi, I am developing something similar and would like to get in touch with you to clear some of the doubts I have. Let me know if it would be possible.
@MjSharp10 ай бұрын
Hi, You can email me.
@citoyenx1470 Жыл бұрын
Thanks you
@ayseverda1107 Жыл бұрын
Is it possible to draw representative 3D? like cylinder, sphere
@MjSharp Жыл бұрын
Yes, in the future.
@ayseverda1107 Жыл бұрын
@@MjSharp so my teacher wants it....
@springbertstudios7005 Жыл бұрын
Can someone please point me in a direction where I can find out where code is used for the graphics instead of whatever they're doing in the beginning because I want to use code to make graphics so I can guarantee it will work and also I don't know how to get that version of whatever they're using just to know that I'm using visual studio code
@Kitejrpaladin5 ай бұрын
He's using visual studio. You could use the community edition if you want to follow along. He's making a CAD system it seems like, but from what I've seen this is the basics. When you are drawing stuff whether it be in a game, in an image app, on a label, A CAD system. You typically are modeling something real so if you want things to be precise. You need to create a coordinate system and pick an internal unit of measure. When drawing on a computer everything is in pixels, but the real world isn't measured in pixels. A concrete example is if you are printing a label, everything is measured in dots and dots per inch or dots per millimeter. Trying to figure out where a line gets drawn starting at point (200,200) in pixels you wouldn't know how that relates on a piece of paper after it gets printed. if you can measure it in millimeters or inches and have an accurate conversation then it becomes easier for your drawing to be precise. Same with games, easier to verify equations are right if it's in non-pixel units1
@programadoremcsharp49822 жыл бұрын
public class Color { public static readonly Color Black = new Color(0, 0, 0); public static readonly Color White = new Color(255, 255, 255); public static readonly Color Red = new Color(255, 0, 0); public static readonly Color Green = new Color(0, 255, 0); public static readonly Color Blue = new Color(0, 0, 255); private byte r, g, b; public Color(byte r, byte g, byte b) { this.r = r; this.g = g; this.b = b; } } add class Color
@GlobalYoung7 Жыл бұрын
thank you❤
@_trusamurai14 күн бұрын
+rep
@programadoremcsharp49822 жыл бұрын
let's see a place for us to exchange codes and experiences, see one where we connect or let's make a siye just for us to share codes in c# sharp to make your project grow ok then you help me with some codes and i'll help you with yours project ok