vote up 2 vote down star

Can you program/configure Visual Studio to produce custom intellisense for your own server controls.

eg can you get it to do this:

alt text

for a tag of your own like:

<MyCompany:MyTag ...
flag

38% accept rate
I'm confused, is intellisense not working for your control or do you want to limit the properties listed? – Slace Nov 21 '08 at 1:44
From the screen shot, I wonder if he's running VS2003 or something? Don't remember if it did intellisense for custom controls or not. – GalacticCowboy Nov 21 '08 at 2:05
I didn't know that attributes automatically get listed in intellisense! – Petras Nov 21 '08 at 4:32

2 Answers

vote up 1 vote down check

You should be getting this for free (default behavior of control). Are the references all in place while you are typing the custom control?

There is an attribute to hide properties from intellisense:

[EditorBrowsableAttribute (EditorBrowsableState.Never)]

Use the description attribute to provide additional help:

[Description("My extra helpful description")]

There are some other attributes that affect intellisense and the property explorer you might want to look up...

link|flag
vote up 0 vote down

Bluevision have a nice plugin for Visual Studio to do this for you. Last time I looked, it was free. (yep, it's still free!)

  • IntellisenseAttribute class allows you to specify members for which intellisense symbols will be generated.

  • Ability to generate default intellisense symbols for assemblies when you don't have access to the source code.

  • NEW Snaps right into the IDE so that intellisense generation can be automated during the build process.

  • Supports two visual views: Full Mode and Skin Mode.

  • Full source code.

  • FREE!

http://www.bluevisionsoftware.com/WebSite/ProductsAndServicesInfo.aspx?ID=9

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.