版博士V2.0程序
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

30 regels
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. }