我想使用controlpaint.DrawReversibleLine方法绘制一条线并尝试传递system.windows.point,但它需要system.drawing.point输入。我有点困惑。它们之间有什么区别?或者除了明显的差异外,它们有何不同?
谢谢,
答案 0 :(得分:6)
System.Windows.Point
是WPF结构,而System.Drawing.Point
是WinForms结构。
通常,如果您正在编写WinForms应用程序,则不使用任何System.Windows
命名空间中的内容(System.Windows.Forms
除外)。这些命名空间中的资源是特定于WPF的,因此除非您打算连接WPF和WinForms,否则最好避免使用它们。
答案 1 :(得分:4)
System.Windows.Point
适用于WPF应用程序。
System.Windows命名空间包含Windows Presentation Foundation(WPF)应用程序中使用的类型,包括动画客户端,用户界面控件,数据绑定和类型转换
System.Drawing.Point
适用于WinForms应用程序。
System.Drawing命名空间提供对GDI +基本图形功能的访问。