internal TemplateGroupCollection(TemplateGroup[] verbs)
 {
     for (int i = 0; i < verbs.Length; i++)
     {
         this.Add(verbs[i]);
     }
 }
		public TemplateModeChangedEventArgs (TemplateGroup newTemplateGroup)
		{
			this.group = newTemplateGroup;
		}
示例#3
0
 public int IndexOf(TemplateGroup group)
 {
     throw new NotImplementedException();
 }
示例#4
0
 public bool Contains(TemplateGroup group)
 {
     throw new NotImplementedException();
 }
 public bool Contains(TemplateGroup group)
 {
     return(this.InternalList.Contains(group));
 }
 public void Insert(int index, TemplateGroup group)
 {
     this.InternalList.Insert(index, group);
 }
 public void CopyTo(TemplateGroup[] array, int index)
 {
     this.InternalList.CopyTo(array, index);
 }
 public int Add(TemplateGroup group)
 {
     return this.InternalList.Add(group);
 }
		public void CopyTo (TemplateGroup[] array, int index)
		{
			throw new NotImplementedException ();
		}
示例#10
0
		public bool Contains (TemplateGroup group)
		{
			throw new NotImplementedException ();
		}
示例#11
0
		public void Remove (TemplateGroup group)
		{
			throw new NotImplementedException ();
		}
示例#12
0
		public void Insert (int index, TemplateGroup group)
		{
			throw new NotImplementedException ();
		}
 public void Remove(TemplateGroup group)
 {
     this.InternalList.Remove(group);
 }
 public void Insert(int index, TemplateGroup group)
 {
     this.InternalList.Insert(index, group);
 }
 public int IndexOf(TemplateGroup group)
 {
     return(this.InternalList.IndexOf(group));
 }
 public TemplateModeChangedEventArgs(TemplateGroup newTemplateGroup)
 {
     this._newTemplateGroup = newTemplateGroup;
 }
示例#17
0
		public int IndexOf (TemplateGroup group)
		{
			throw new NotImplementedException ();
		}
 internal TemplateGroup CreateZoneTemplateGroup()
 {
     TemplateGroup group = new TemplateGroup("ZoneTemplate", ((WebControl) base.ViewControl).ControlStyle);
     group.AddTemplateDefinition(new System.Web.UI.Design.TemplateDefinition(this, "ZoneTemplate", base.Component, "ZoneTemplate", ((WebControl) base.ViewControl).ControlStyle));
     return group;
 }
 public bool Contains(TemplateGroup group)
 {
     return this.InternalList.Contains(group);
 }
示例#20
0
 public void Insert(int index, TemplateGroup group)
 {
     throw new NotImplementedException();
 }
 public int IndexOf(TemplateGroup group)
 {
     return this.InternalList.IndexOf(group);
 }
示例#22
0
 public void Remove(TemplateGroup group)
 {
     throw new NotImplementedException();
 }
 public void Remove(TemplateGroup group)
 {
     this.InternalList.Remove(group);
 }
 public int Add(TemplateGroup group)
 {
     return(this.InternalList.Add(group));
 }