Creating Control tutorials?

  • Thread starter Thread starter Lars Netzel
  • Start date Start date
L

Lars Netzel

Hello!

I don't really know what the right word is, but if I would to create a
control sort of like a Textbox, what is that called and does anyone have a
good link or know a good way of starting to learn how to do this?

I started looking at a User Control but that did'nt seem like the right
thing, or was it?

What's the differance between User Control and Custom Control?

Regards/
Lars
 
A user control is quite like a form and can be assembled using the IDE using
drag and drop. It makes a few assumptions that will make your life easier if
you're looking for a form-like way of creating a new control or harder if
you're looking to create a really competent Windows Forms control with all
the bells 'n whistles.

You have much more control over objects that you build by hand and which
derive from Control or ScrollableControl.

The best tutorials to get you started are Shawn Burkes guides which you can
read here...

(watch for line-wrap)

http://msdn.microsoft.com/library/d...ide/html/cpconenhancingdesign-timesupport.asp

HTH.

--
Bob Powell [MVP]
Visual C#, System.Drawing

The Image Transition Library wraps up and LED style instrumentation is
available in the June of Well Formed for C# or VB programmers
http://www.bobpowell.net/currentissue.htm

Answer those GDI+ questions with the GDI+ FAQ
http://www.bobpowell.net/gdiplus_faq.htm

The GDI+ FAQ RSS feed: http://www.bobpowell.net/faqfeed.xml
Windows Forms Tips and Tricks RSS: http://www.bobpowell.net/tipstricks.xml
Bob's Blog: http://bobpowelldotnet.blogspot.com/atom.xml
 
Thank you I will read it thru!

/Lars


Bob Powell said:
A user control is quite like a form and can be assembled using the IDE using
drag and drop. It makes a few assumptions that will make your life easier if
you're looking for a form-like way of creating a new control or harder if
you're looking to create a really competent Windows Forms control with all
the bells 'n whistles.

You have much more control over objects that you build by hand and which
derive from Control or ScrollableControl.

The best tutorials to get you started are Shawn Burkes guides which you can
read here...

(watch for line-wrap)

http://msdn.microsoft.com/library/d...ide/html/cpconenhancingdesign-timesupport.asp

HTH.

--
Bob Powell [MVP]
Visual C#, System.Drawing

The Image Transition Library wraps up and LED style instrumentation is
available in the June of Well Formed for C# or VB programmers
http://www.bobpowell.net/currentissue.htm

Answer those GDI+ questions with the GDI+ FAQ
http://www.bobpowell.net/gdiplus_faq.htm

The GDI+ FAQ RSS feed: http://www.bobpowell.net/faqfeed.xml
Windows Forms Tips and Tricks RSS: http://www.bobpowell.net/tipstricks.xml
Bob's Blog: http://bobpowelldotnet.blogspot.com/atom.xml
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top