Ejemplo n.º 1
0
 private void InstantiateTemplate()
 {
     _container = new LayoutContainer();
     Layout.InstantiateIn(_container);
     First                = (ImageButton)_container.FindControl("First");
     Previous             = (ImageButton)_container.FindControl("Previous");
     Next                 = (ImageButton)_container.FindControl("Next");
     Last                 = (ImageButton)_container.FindControl("Last");
     Holder               = (Panel)_container.FindControl("Pager");
     this.First.Click    += new System.Web.UI.ImageClickEventHandler(this.First_Click);
     this.Last.Click     += new System.Web.UI.ImageClickEventHandler(this.Last_Click);
     this.Next.Click     += new System.Web.UI.ImageClickEventHandler(this.Next_Click);
     this.Previous.Click += new System.Web.UI.ImageClickEventHandler(this.Previous_Click);
 }
Ejemplo n.º 2
0
 private void InstantiateTemplate()
 {
     _container = new LayoutContainer();
     Layout.InstantiateIn(_container);
     First = (ImageButton)_container.FindControl("First");
     Previous = (ImageButton)_container.FindControl("Previous");
     Next = (ImageButton)_container.FindControl("Next");
     Last = (ImageButton)_container.FindControl("Last");
     Holder = (Panel)_container.FindControl("Pager");
     this.First.Click += new System.Web.UI.ImageClickEventHandler(this.First_Click);
     this.Last.Click += new System.Web.UI.ImageClickEventHandler(this.Last_Click);
     this.Next.Click += new System.Web.UI.ImageClickEventHandler(this.Next_Click);
     this.Previous.Click += new System.Web.UI.ImageClickEventHandler(this.Previous_Click);
 }