- What’s the difference between
System.Drawing.Pointand theSystem.Windows.Point? - In what context should which one be used?
I’m working with WPF.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
System.Drawing.Pointrepresents a GDI point and is used in Windows Forms. It can only hold integer values.WPF doesn’t use GDI anymore, so it has its own
System.Windows.Pointtype to represents a point, which can have non integer values.