Example #1
0
 /// <summary>
 /// Initializes a RootElement that renders the summary based on the radio settings of the contained elements. 
 /// </summary>
 /// <param name="caption">
 /// The caption to ender
 /// </param>
 /// <param name="group">
 /// The group that contains the checkbox or radio information.  This is used to display
 /// the summary information when a RootElement is rendered inside a section.
 /// </param>
 public RootElement(string caption, Group group)
     : base(caption)
 {
     this.group = group;
 }
Example #2
0
		public JsonElement (string caption, Group group, string url) : base (caption, group)
		{
			Url = url;
		}
Example #3
0
 public ThemedRootElement(string caption, Group group)
     : base(caption, group)
 {
 }
Example #4
0
		public RootElement (string caption, Group group, string cssClass) : base (caption)
		{
			this.group = group;
			this.CssClass = cssClass;
		}
		public TaggedRootElement (string caption, Group group, object tag) : base(caption, group)
		{
			this.Tag = tag;
			this.IsMandatory = false;
		}
Example #6
0
 public BTRootElement(string caption, Group group)
     : base(caption, @group)
 {
 }
 public StyledTranslationRootElement(string caption, Group group)
     : base(caption, group)
 {
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="DietCalculator.iOS.DietRootElement"/> class.
 /// </summary>
 /// <param name="caption">Caption.</param>
 /// <param name="group">Group.</param>
 public DietRootElement(string caption, Group group)
     : base(caption, group)
 {
 }