Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

31 linhas
667 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. public StudentForm(short job_id, int token)
  9. {
  10. if (SystemCtrl.RefreshUserCourseInfo(job_id, token) != ErrCode.Success)
  11. throw new Exception("获取用户信息异常,请重新启动");
  12. InitializeComponent();
  13. studentTree.Job_id = job_id;
  14. studentTree.Token = token;
  15. }
  16. void GetStudentData()
  17. {
  18. }
  19. private void btnPersonalData_Click(object sender, EventArgs e)
  20. {
  21. }
  22. }
  23. }