版博士V2.0程序
No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
 
 
 
 

30 líneas
707 B

  1. using MaiMuAOI.SysCtrl;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.ComponentModel;
  5. using System.Data;
  6. using System.Drawing;
  7. using System.Linq;
  8. using System.Text;
  9. using System.Threading.Tasks;
  10. using System.Windows.Forms;
  11. namespace MaiMuAOI.SysUI.SysSet
  12. {
  13. public partial class SysInfoFrm : Form
  14. {
  15. public SysInfoFrm()
  16. {
  17. InitializeComponent();
  18. UIStyle.SetUIStyle(this);
  19. this.uiTitel1.FatherForm = this;
  20. }
  21. private void SysInfoFrm_Load(object sender, EventArgs e)
  22. {
  23. this.BackColor = Color.White;
  24. this.label_info.Text = SysUpdata.Info;
  25. }
  26. }
  27. }