Click here to Skip to main content
15,918,808 members
Home / Discussions / C#
   

C#

 
AnswerRe: barcode generator Pin
Christian Graus9-Jan-07 22:52
protectorChristian Graus9-Jan-07 22:52 
GeneralRe: barcode generator Pin
cellardoor07169-Jan-07 22:58
cellardoor07169-Jan-07 22:58 
GeneralRe: barcode generator Pin
Christian Graus9-Jan-07 23:30
protectorChristian Graus9-Jan-07 23:30 
GeneralRe: barcode generator Pin
cellardoor07169-Jan-07 23:37
cellardoor07169-Jan-07 23:37 
GeneralRe: barcode generator Pin
GaryWoodfine 10-Jan-07 5:36
professionalGaryWoodfine 10-Jan-07 5:36 
AnswerRe: barcode generator Pin
Luc Pattyn10-Jan-07 8:46
sitebuilderLuc Pattyn10-Jan-07 8:46 
Questionusercontrol property Pin
Marc Soleda9-Jan-07 22:32
Marc Soleda9-Jan-07 22:32 
AnswerRe: usercontrol property Pin
Luc Pattyn9-Jan-07 23:17
sitebuilderLuc Pattyn9-Jan-07 23:17 
Hi Marc,

While developping your UserControl, add a property the way you always do it.

Then add XML comments (triple slashed) if you want these
Then add attributes for the future users of your UserControl

When using your UserControl, the Designer will:
- show the description you gave as a help text (at bottom of pane)
- use "Category" to group properties (when in grouped rather than alphabetical order)
in the Properties panel of your UserControl,

An unfortunate consequence seems to be, if you want both XML and Designer help,
you end up repeating the same textual description.

like so:

/// <summary>
/// Gets or sets a flag to indicate ...
/// </summary>
[Category("MyUserControl"), Description("Gets or sets a flag to "+
				 "indicate ...")]
public bool SomeFlag {get {return someFlag;} set {someFlag=value;}}


Smile | :)




Luc Pattyn

QuestionAbout MCTS exams Pin
mrcooll9-Jan-07 22:28
mrcooll9-Jan-07 22:28 
AnswerRe: About MCTS exams Pin
Christian Graus9-Jan-07 22:40
protectorChristian Graus9-Jan-07 22:40 
AnswerRe: About MCTS exams Pin
Ravi Bhavnani10-Jan-07 2:30
professionalRavi Bhavnani10-Jan-07 2:30 
QuestionProblem in WebBrowser.Print() Method Pin
stancrm9-Jan-07 22:22
stancrm9-Jan-07 22:22 
AnswerRe: Problem in WebBrowser.Print() Method Pin
blackjack215010-Jan-07 0:02
blackjack215010-Jan-07 0:02 
AnswerRe: Problem in WebBrowser.Print() Method Pin
TrooperIronMan10-Jan-07 3:31
TrooperIronMan10-Jan-07 3:31 
QuestionMulti Threading - All the threads are not completing Pin
jk_just9-Jan-07 22:01
jk_just9-Jan-07 22:01 
AnswerRe: Multi Threading - All the threads are not completing Pin
Luc Pattyn9-Jan-07 22:38
sitebuilderLuc Pattyn9-Jan-07 22:38 
Questionmodify control properties in usercontrol Pin
Marc Soleda9-Jan-07 20:44
Marc Soleda9-Jan-07 20:44 
GeneralRe: modify control properties in usercontrol Pin
Martin#9-Jan-07 21:06
Martin#9-Jan-07 21:06 
GeneralRe: modify control properties in usercontrol Pin
Marc Soleda9-Jan-07 21:40
Marc Soleda9-Jan-07 21:40 
GeneralRe: modify control properties in usercontrol Pin
Luc Pattyn9-Jan-07 22:46
sitebuilderLuc Pattyn9-Jan-07 22:46 
Questionmarshalling mechanism Pin
s o v a n n9-Jan-07 20:31
s o v a n n9-Jan-07 20:31 
QuestionHow to give application upgrading by .net for the window application,which is done by visual c#? Pin
illusionarylife9-Jan-07 20:28
illusionarylife9-Jan-07 20:28 
AnswerRe: How to give application upgrading by .net for the window application,which is done by visual c#? Pin
Christian Graus9-Jan-07 20:41
protectorChristian Graus9-Jan-07 20:41 
QuestionProblem with assignment using properties... maybe because of IClonable interface Pin
fordge9-Jan-07 20:13
fordge9-Jan-07 20:13 
AnswerRe: Problem with assignment using properties... maybe because of IClonable interface Pin
Stefan Troschuetz9-Jan-07 21:42
Stefan Troschuetz9-Jan-07 21:42 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.