L
Lee Crowe
Hi
I am in the middle of creating a control and wondered if someone could
help me with a problem I have.
My control is based on an existing control but I have added at least
twenty properties to this control and would like to put them in a
seperate section in the property window.
The code below puts the TableCssClass property under the "Custom
Properties" category as expected.
[
Browsable(true),
Description("css class for table to use in presentation mode."),
Category("Custom Properties"),
DefaultValue("")
]
public string TableCssClass
{
get { return _tableClass; }
set { _tableClass = value; }
}
But say for example I wanted to put the TableCssClass property into a
category named "Style" under the category named "Custom Properties".
How would I do this I'm sure it is possible because in the
"Appearance" category you see "Font" which expands to get at size
properties e.t.c.
HAS ANYBODY GOT ANY IDEAS
Thanks in advance
Lee Crowe
I am in the middle of creating a control and wondered if someone could
help me with a problem I have.
My control is based on an existing control but I have added at least
twenty properties to this control and would like to put them in a
seperate section in the property window.
The code below puts the TableCssClass property under the "Custom
Properties" category as expected.
[
Browsable(true),
Description("css class for table to use in presentation mode."),
Category("Custom Properties"),
DefaultValue("")
]
public string TableCssClass
{
get { return _tableClass; }
set { _tableClass = value; }
}
But say for example I wanted to put the TableCssClass property into a
category named "Style" under the category named "Custom Properties".
How would I do this I'm sure it is possible because in the
"Appearance" category you see "Font" which expands to get at size
properties e.t.c.
HAS ANYBODY GOT ANY IDEAS
Thanks in advance
Lee Crowe