Questions tagged [composite-controls]

In User Interface frameworks, a composite control is a control _composed_ of other existing child controls.

In User Interface frameworks, a composite control is a control composed of other existing child controls (a control being a UI element that the user can interact with such as a slider or a button).

The idea is create a custom control without having to develop the rendering of the control: it is delegated to the child controls. A composite control can itself be re-used as a child control of a higher composite control, thus making a hierarchy of controls.

.NET reference documentation about composite controls: http://msdn.microsoft.com/en-us/library/aa719968(v=vs.71).aspx

96 questions
0
votes
3 answers

what is composite control in asp.net?How we create composite control?

Possible Duplicate: ASP.NET Custom Controls - Composites How to make and use composite control in asp.net?
Vivek
  • 570
  • 8
  • 21
0
votes
0 answers

user controls VB2010 express

I am creating an application, which displays data from 4 or more stations. The data to be displayed is text and it can have variable number of sub-stations in it. So I plan to create 2 levels of User controls. UserControl1 for displaying the…
0
votes
1 answer

Is it possible to add a UserControl to a Composite control?

I'm trying to build a CompositeControl that's flexible. Depending on some of it's parameters, I would like my CompositeControl to load different user controls in it's CreateChildControls method. The exact UserControls aren't know at design time. …
srmark
  • 7,942
  • 13
  • 63
  • 74
0
votes
2 answers

Design time issues with Composite Control with Devexpress control

i am creating a composite control class with several devexpress aspx control within it. However there is a issues in design time that is: whenever i change the child controls properties that i expose, the child control is lost its interface/skin (as…
SakaiE
  • 33
  • 5
0
votes
1 answer

Calling javascript function after composite control rendering

Is there any way to call a javascript function after composite control rendering.I need to place four movable anchors on top of the image control. I am planning to implement the anchors using html Img control. I have already embedded a javascript…
Senan
  • 411
  • 2
  • 6
  • 16
0
votes
2 answers

Control HTML rendered by CompositeControl Templated Server Controls

I'm building my first custom server control which inherits from CompositeControl The reason for the control is to be able to have a consistent content area (HTML elements) for multiple online applications that we develop. So instead of having to…
Jacques
  • 6,936
  • 8
  • 43
  • 102
1 2 3 4 5 6
7