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

29 行
539 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. public StudentForm(DataSet ds)
  13. {
  14. InitializeComponent();
  15. //登陆身份缓存数据
  16. studentTree.Ds= ds;
  17. }
  18. private void StudentForm_Load(object sender, EventArgs e)
  19. {
  20. }
  21. }
  22. }