C # traversal sub-Control of WPF

Source: Internet
Author: User
/// <Summary> /// check non-empty fields /// </Summary> /// <Param name = "isok"> </param> /// <Param name = "textboxes"> </param> private void checktextboxnotnull (ref bool isok, params textbox [] textboxes) {foreach (textbox txtbox in textboxes) {txtbox. background = brushes. white; If (txtbox. text. length <= 0) {isok = false; txtbox. background = brushes. red;} else {txtbox. background = NULL ;}}}

 

/// <Summary> /// set the control /// </Summary> /// <Param name = "Isen"> </param> /// <Param name = "isnull"> </param> private void setcontrol (bool Isen, bool isnull) {foreach (uielement C in grd_userinfo.children) {If (C is textbox) {C. isenabled = Isen; If (isnull) {(textbox) c ). TEXT = "" ;}} if (C is ComboBox) {C. isenabled = Isen; If (isnull) {(ComboBox) c ). selectedindex =-1 ;}}if (C is datepicker) {C. isenabled = Isen; If (isnull) {(datepicker) c ). selecteddate = NULL ;}} btn_choosephoto.isenabled = Isen ;}

 

/// <Summary> /// verify whether the email address input is valid /// </Summary> /// <Param name = "strin"> </param> // <returns> </returns> private bool isvalidemail (string strin) {return RegEx. ismatch (strin, @ "^ ([\ W-\.] +) @ (\ [0-9] {1, 3 }\. [0-9] {1, 3 }\. [0-9] {1, 3 }\.) | ([\ W-] + \.) +) ([A-Za-Z] {2, 4} | [0-9] {1, 3}) (\]?) $ ");}

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.