该文被密码保护。 阅读全文
posted @ 2017-12-20 10:22 沉迷在代码的程序员 阅读(5) 评论(0) 推荐(0)
摘要: List<Student> stus=new List<Student>(); double temp; for (int i = 0; i < stus.Count - 1; i++) { for (int j = i + 1; j < stus.Count; j++) { if (stus[i] 阅读全文
posted @ 2017-09-22 10:55 沉迷在代码的程序员 阅读(106) 评论(0) 推荐(0)
只有注册用户登录后才能阅读该文。 阅读全文
posted @ 2017-06-22 20:21 沉迷在代码的程序员 阅读(6) 评论(0) 推荐(0)
摘要: 1 public bool CheckInput() 2 { 3 if (txtLoginId.Text == "") 4 { 5 MessageBox.Show("请输入用户名!", "登录提示"); 6 txtLoginId.Focus(); 7 return false; 8 } 9 if ( 阅读全文
posted @ 2017-06-22 20:18 沉迷在代码的程序员 阅读(136) 评论(0) 推荐(0)
只有注册用户登录后才能阅读该文。 阅读全文
posted @ 2017-06-22 20:16 沉迷在代码的程序员 阅读(15) 评论(0) 推荐(0)
只有注册用户登录后才能阅读该文。 阅读全文
posted @ 2017-06-21 20:50 沉迷在代码的程序员 阅读(5) 评论(0) 推荐(0)
摘要: <Window.Resources> //对按钮的重写 <ControlTemplate x:Key="CornerButton" TargetType="{x:Type Button}"> <Border BorderBrush="Green" BorderThickness="1" Corner 阅读全文
posted @ 2017-05-25 20:39 沉迷在代码的程序员 阅读(210) 评论(0) 推荐(0)