/// <summary>
 ///    <para>
 ///       Initializes the designer.
 ///    </para>
 /// </summary>
 /// <param name='component'>
 ///    The control element being designed.
 /// </param>
 /// <remarks>
 ///    <para>
 ///       This is called by the designer host to establish the component being
 ///       designed.
 ///    </para>
 /// </remarks>
 /// <seealso cref='System.ComponentModel.Design.IDesigner'/>
 public override void Initialize(IComponent component)
 {
     Debug.Assert(component is System.Web.UI.MobileControls.Image,
                  "ImageDesigner.Initialize - Invalid Image Control");
     _image = (System.Web.UI.MobileControls.Image)component;
     base.Initialize(component);
 }
Ejemplo n.º 2
0
 /// <summary>
 ///    <para>
 ///       Initializes the designer.
 ///    </para>
 /// </summary>
 /// <param name='component'>
 ///    The control element being designed.
 /// </param>
 /// <remarks>
 ///    <para>
 ///       This is called by the designer host to establish the component being
 ///       designed.
 ///    </para>
 /// </remarks>
 /// <seealso cref='System.ComponentModel.Design.IDesigner'/>
 public override void Initialize(IComponent component)
 {
     Debug.Assert(component is System.Web.UI.MobileControls.Image,
                  "ImageDesigner.Initialize - Invalid Image Control");
     _image = (System.Web.UI.MobileControls.Image) component;
     base.Initialize(component);
 }