本文整理汇总了C#中Form.CheckValidity方法的典型用法代码示例。如果您正苦于以下问题:C# Form.CheckValidity方法的具体用法?C# Form.CheckValidity怎么用?C# Form.CheckValidity使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Form
的用法示例。
在下文中一共展示了Form.CheckValidity方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: Execute
public static void Execute(Atom parent)
{
var form = new Form ();
new Fieldset (form, fs => {
new Legend (fs,"Legend");
new Label(fs, "LabelText");
new TextInput(fs, i=>{
i.Placeholder="type something";
i.Name="text";
});
new Span(fs, s=>{s.Text="Example block-level help text here"; s.ClassName="help-block";});
new CheckField(fs, cf=>{
cf.Name="allow";
cf.Input.Text="Check me";
cf.Input.Checked=true;
});
new SubmitButton(fs, b=>{
b.Text="Send";
b.Clicked+= (e) =>{
e.PreventDefault();
form.JQuery.Serialize().LogInfo();
};
});
form.Append(fs);
});
parent.JQuery.Append("Default styles".Header (3)).Append (form);
var sform = new Form ();
new TextInput (sform, i => {
i.Name="stext";
i.Placeholder="search for";
i.Required=true;
i.ClassName="input-medium search-query";
i.MaxLength=8;
i.MinLength=3;
});
new SubmitButton(sform, b=>{
b.Text="Search...";
b.Clicked+= (e) =>{
if(!sform.CheckValidity()) return ;
sform.JQuery.Serialize().LogInfo();
};
});
parent.JQuery.Append("Optional Layouts".Header (3)).Append("Search Form".Header(4)).Append (sform);
var lform = new Form ();
lform.SubmitHandler = f => f.JQuery.Serialize().LogInfo() ;
lform.ClassName = "form-inline";
new EmailInput (lform, i => {
i.Placeholder = "your email";
i.Required=true;
i.Name="email";
});
new PasswordInput (lform, i => {
i.Placeholder = "your password";
i.Required=true;
i.Name="password";
i.MinLength=4;
});
new CheckInput (lform,i =>{
i.Name="remember";
i.Text="Remember?";
i.Checked=true;
});
new SubmitButton (lform, b => b.Text = "submit");
parent.JQuery.Append("Inline Form".Header(4)).Append (lform);
new Form (f=>{
f.ClassName="form-horizontal";
new EmailField(f,i=>{
i.Text="Email";
i.Placeholder="your email";
i.Input.Required=true;
i.Name="email";
});
new PasswordField(f,i=>{
i.Text="Password";
i.Placeholder="your password";
i.Input.Required=true;
i.Input.MinLength=4;
i.Name="password";
});
new CheckField(f, i=>{
i.Input.Text="Remember";
i.Input.Checked=true;
i.Name="remember";
new SubmitButton(i.Controls, b=> b.Text="Login");
//.........这里部分代码省略.........