• 查找 TextBox 对象中非法数据的示例


    1. private void GetErrors(StringBuilder sb, DependencyObject obj){  
    2.             foreach (object child in LogicalTreeHelper.GetChildren(obj)){  
    3.                 TextBox element = child as TextBox;  
    4.                 if (element == null)   
    5.                     continue;  
    6.                 if (Validation.GetHasError(element)){  
    7.                     sb.Append(element.Text + " has errors: ");  
    8.                     foreach (ValidationError error in Validation.GetErrors(element)){  
    9.                         sb.Append(" " + error.ErrorContent.ToString());  
    10.                         sb.Append(" ");  
    11.                     }  
    12.                 }  
    13.             }  
    14.         }  
    15.   
    16.         private bool FromHasErrors(out string message){  
    17.             StringBuilder sb = new StringBuilder();  
    18.             GetErrors(sb, stackProductDetails);  
    19.             message = sb.ToString();  
    20.             return message != "";  
    21.         }  
    22.   
    23.         private void cmdOK_Click(object sender, RoutedEventArgs e){  
    24.             string message;  
    25.             if (FromHasErrors(out message)){  
    26.                 MessageBox.Show(message);  
    27.             }  
    28.             else{  
    29.                 // ...  
    30.             }  
    31.         }  
    32.     }  

     http://blog.csdn.net/iHuoBaby/article/details/8576165

  • 相关阅读:
    「Poetize7」Freda的访客
    「Poetize8」Divisible
    「Poetize5」Vani和Cl2捉迷藏
    1082. 员工的重要度
    1080. 最大的岛
    1079. 连续子串计数(经典)
    1078. 数组的度
    1071. 词典中最长的单词
    1068. 寻找数组的中心索引
    1062. 洪水填充(经典)
  • 原文地址:https://www.cnblogs.com/sjqq/p/8059233.html
Copyright © 2020-2023  润新知