Ask a Question related to ASP.NET Building Controls, Design and Development.
-
Ant #1
Inheriting a control
Hi,
Firstly, I'm not using ASP , I'm using winForms but I can't seem to find a
winforms building controls thread. If anybody knows of such a thread in this
forum I'd be most grateful.
The problem I'm having is I'm creating a control using a class library. This
class is inheriting a Checkbox. I want to create a simple Toggle Button
control.
After setting a reference to the windows forms dll, I inherit the checkbox
class in the normal fashion:
public class MyToggleButton : CheckBox{//code here}
I build ok.
When I add a reference to this assembly, it recognises the reference but no
control appears on my MyUserControls tab. Why is this so?
I have created controls using control libraries with no problems. Why can't
I inherit from a standard control & see it on MyUserControls?
Thanks for any clues in advance.
Ant
Ant Guest
-
Event Bubbling Custom Object not inheriting from control
One of the new things flash flex and xaml have are ways which the event easily bubbles up to a parent that knows how to handle the event. Similar... -
Allowing a new design property for control inheriting DataGrid
Hi, I created a custom control inheriting from DataGrid I would like to put a custom property for design time manipulation I added the... -
Inheriting Custom Control
Not sure I fully understand your question, but just like you would from any other control... e.g. public class NewControl : BaseControl -
Problem inheriting from the list control
Hello, I am trying to develop and ASP.NET custom control. I want to change the rendering of the list control. So I inherited from the list and I... -
inheriting toolbar control
Hi ... I trying to inherit from toolbar . '==clsMizUwg.vb== <Assembly: TagPrefix("ctlmizUwg.nmmizUwg", "miz")> Namespace nmmizUwg -
Ant #2
RE: Inheriting a control
Hi,
I worked out how to add it, by using the Add/Remove items on the tool box.
But this leaves me with a question.
Why do I need to add a referene to a control library from the project menu
but I need to use Add/Remove to add a class library control? what is the
difference?
Thanks for any thoughts
Ant
"Ant" wrote:
> Hi,
> Firstly, I'm not using ASP , I'm using winForms but I can't seem to find a
> winforms building controls thread. If anybody knows of such a thread in this
> forum I'd be most grateful.
>
> The problem I'm having is I'm creating a control using a class library. This
> class is inheriting a Checkbox. I want to create a simple Toggle Button
> control.
>
> After setting a reference to the windows forms dll, I inherit the checkbox
> class in the normal fashion:
>
> public class MyToggleButton : CheckBox{//code here}
>
> I build ok.
>
> When I add a reference to this assembly, it recognises the reference but no
> control appears on my MyUserControls tab. Why is this so?
>
> I have created controls using control libraries with no problems. Why can't
> I inherit from a standard control & see it on MyUserControls?
>
> Thanks for any clues in advance.
> AntAnt Guest



Reply With Quote

