Exemple #1
0
 private void Btn_Click(object sender, RoutedEventArgs e)
 {
     if (low.Text.Length > 30)
     {
         popup1.IsOpen = true;
     }
     else if (mid.Text.Length > 30)
     {
         popup2.IsOpen = true;
     }
     else if (hight.Text.Length > 30)
     {
         popup3.IsOpen = true;
     }
     else
     {
         int i = dbUtill.EditComment(low.Text, mid.Text, hight.Text);
         if (i > 0)
         {
             MessageBox.Show("修改成功", "提示");
             Close();
         }
         else
         {
             MessageBox.Show("修改失败", "提示");
         }
     }
 }