You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

27 regels
508 B

  1. using System;
  2. using System.Windows.Forms;
  3. namespace StuMgmClient
  4. {
  5. public partial class StudentForm : Form
  6. {
  7. string m_token;
  8. public StudentForm(string token)
  9. {
  10. InitializeComponent();
  11. m_token = token;
  12. if (SystemCtrl.RefreshUserCourseInfo(token) != ErrCode.Success)
  13. throw new Exception("获取用户信息异常,请重新启动");
  14. }
  15. void GetStudentData()
  16. {
  17. }
  18. }
  19. }