版博士V2.0程序
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
 
 
 
 

23 lignes
505 B

  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Data;
  5. using System.Drawing;
  6. using System.Linq;
  7. using System.Text;
  8. using System.Threading.Tasks;
  9. using System.Windows.Forms;
  10. namespace MaiMuAOI.SysUI.SysSet
  11. {
  12. public partial class SysUpdataInfoFrm : Form
  13. {
  14. public SysUpdataInfoFrm(string info)
  15. {
  16. InitializeComponent();
  17. this.textBox1.Text = info;
  18. this.Activate();
  19. }
  20. }
  21. }