您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

26 行
536 B

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