コード例 #1
0
ファイル: HtmlField.cs プロジェクト: aicl/Cayita.HtmlWidgets
		public void AddHtmlTextInput(Action<HtmlTextInput> configAction ){
			HtmlTextInput hi = new  HtmlTextInput();
			configAction(hi);
			AddHtmlInput(hi);
		}
コード例 #2
0
ファイル: HtmlField.cs プロジェクト: aicl/Cayita.HtmlWidgets
		public void AddHtmlTextInput(Action<HtmlTextInput, HtmlParagragh> configAction ){
			HtmlTextInput hi = new  HtmlTextInput();
			HtmlParagragh p = new HtmlParagragh();
			configAction(hi, p);
			AddHtmlInput(hi, p);
		}