What is the difference between System.Drawing.Point and System.Windows.Point?
- What's the difference between
System.Drawing.Point
and theSystem.Windows.Point
? - In what context should wh开发者_Python百科ich one be used?
I'm working with WPF.
System.Drawing.Point
represents 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.Point
type to represents a point, which can have non integer values.
One is used with the classes in System.Drawing namespaces, and one is used with WPF.
The System.Drawing.Point is not so surprisingly used with the classes in the System.Drawing namespaces. The System.Windows.Point is used with WPF.
精彩评论