Get Child Controls at design-time

Ask a Question related to ASP.NET Building Controls, Design and Development.

  1. #1

    Default Get Child Controls at design-time

    I have a Webcontrol that was supposed to act like a panel control. I
    manipulated a TemplatedControlDesigner to make an "Edit mode". I save my
    template to the controls collection during design-time. Then I use
    GetPersistInnerHtml with ControlPersister to push the controls
    collection back to the aspx page. It works very well after edit mode.

    My problem is initialization. My control won't pick up the inner tags
    from the html in the aspx on the first go-round. Since it didn't pick
    them up, it pushes blank back out to the aspx, thus clearing my inner
    html. I've been fiddling with ParseChildren and PersistChildren and
    overriding my Controls property, setting the PersistenceMode and
    DesignerSerializationVisibility attributes all day. I can't quite find
    the right combination. This thing gets them perfectly during runtime.

    I need to know how to get them at design time. Any Ideas?

    *** Sent via Developersdex [url]http://www.developersdex.com[/url] ***
    Don't just participate in USENET...get rewarded for it!
    WALDO Guest

  2. Similar Questions and Discussions

    1. Skin not applied at design time for CompositeComponent child contr
      I am using Visual Studio 2008 and I have a very simple custom web server control class named TestControl. The class inherits from CompositeControl,...
    2. Control.Controls bug? Control's child controls missing at the run time.
      Hello, ..NET 1.1/VB.NET: I have a custom web control Public Class DatePicker Inherits Control Implements INamingContainer
    3. Add controls DESIGN Time.
      Hi All. I would like to know, HOW can I add control (textboxes) etc to my web form in design time? I have tried everything... someone @ MS should...
    4. Building child controls on Design Time
      Hi , I am trying to create a custom control similar to datagrid.Grid contain some thing like data column where i am able to add column during...
    5. Composite WebControl -- Child Control Property Persistance at Design-time
      Hi, I seen, this asked a number of times at this group but still have not seen any complete/rectified/fixed code. I have created a Composite...
  3. #2

    Default Re: Get Child Controls at design-time

    OK I figured it out.

    I approached it from a different angle. I said, "Well if
    System.Web.UI.WebControls.Table can do it, why am I having a problem?"

    I looked at the TableDesigner class and saw that it wasn't doing
    anything special, so I took a look at Table itself.

    I saw that it used
    ParseChildren(True, "Rows"), DefaultProperty("Rows")
    and didn't specify PersistChildren.

    I tried to do the same substituting "Controls" for "Rows". I got an
    error in design-time stating that the "Controls" property could not be
    programmatically set at design-time.

    So what did the Rows property on Table do? It ultimately is a surrogate
    property for the Controls Property. It returns a TableRowsCollection
    which inherits from ControlCollection. So basically it is the Controls
    Property being worked on by proxy.

    A-ha! :)

    OK, so what If I made a surrogate property called Content?
    All it did was return the Controls property. Would that work as
    expected? The answer is a resounding yes!

    [VB.Net]
    <ParseChildren(True, "Content"), PersistChildren(False), _
    DefaultProperty("Content"), Designer(GetType(MyDesigner))> _
    Public Class MyControl
    Inherits WebControl

    'Collect Controls from innerHtml, hide from UI/code.
    <PersistenceMode(PersistenceMode.InnerDefaultPrope rty), _
    MergableProperty(False), _
    Browsable(False), EditorBrowsable(EditorBrowsableState.Never)> _
    Public Readonly Property Content As ControlCollection
    Get
    Return Me.Controls
    End Get
    End Property

    End Class


    One of the weird things about this was setting PersistChildern to false.
    Intellisense states 'true to persist the child controls as server
    control tags; otherwise, false' which seems contradictory to what I
    wanted, but after thinking about it, I guess that worked out OK.

    *** Sent via Developersdex [url]http://www.developersdex.com[/url] ***
    Don't just participate in USENET...get rewarded for it!
    WALDO Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139