Add reference for System.Drawing.Drawing2D
Mon, 09/06/2010 - 14:13
Hello can you make so we can add System.Drawing.Drawing2D as a reference, please.
Glad to see you've made progress on this. Used a few months ago and you were talking about adding windows forms.
Wed, 09/08/2010 - 21:26
#2
Oh thanks. I thought I was
Oh thanks. I thought I was getting a bug by not having that as a reference but found it was me :). But I will add the using statement to make using it easier.
Thu, 09/09/2010 - 09:53
#3
It can be confusing with the
It can be confusing with the .net libraries, as many of them have the same name as their name spaces.
Happy to help :)
You can,
System.Drawing.Drawing2D is a namespace within the System.Drawing library.
So add System.Drawing as a reference, and you can use System.Drawing.Drawing2D
You may want to use an import statement at the top of your code:
VB.net:
Imports System.Drawing.Drawing2D
C#:
using System.Drawing.Drawing2D;
-----------------
Tim Speed
Compilr Developer and CTO