Custom intellisense for server management?

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

for example, you can do this:

alt text http://www.yart.com.au/test/vs.gif

for own tag:

<MyCompany:MyTag ... 
+3
controls intellisense
source share
2 answers

You should get this for free (default management behavior). Are links used during user control input?

There is an attribute to hide properties from intellisense:

 [EditorBrowsableAttribute (EditorBrowsableState.Never)] 

Use the description attribute to provide additional assistance:

 [Description("My extra helpful description")] 

There are several other attributes that affect the intellisense and explorer properties that you might want to find ...

+3
source share

Bluevision has a good plugin for Visual Studio to do this for you. The last time I watched, it was free. (yes, he is still free!)

  • The IntellisenseAttribute class allows you to specify the elements for which intellisense characters will be generated.

  • Ability to generate default intellisense characters for assemblies when you do not have access to the source code.

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

  • Supports two visual views: Full Mode and Skin.

  • Full source code.

  • FREE!

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

+1
source share

All Articles