Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

31 rader
630 B

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