版博士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.
 
 
 
 

37 regels
817 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 AssistClient
  11. {
  12. public partial class FrmLoading2 : Form
  13. {
  14. public string data { get; set; }
  15. public FrmLoading2()
  16. {
  17. InitializeComponent();
  18. }
  19. public FrmLoading2(string _data)
  20. {
  21. InitializeComponent();
  22. this.data = _data;
  23. }
  24. private void FrmLoading2_Load(object sender, EventArgs e)
  25. {
  26. if (this.Owner != null)
  27. {
  28. this.Size = this.Owner.Size;
  29. this.Location = this.Owner.Location;
  30. }
  31. }
  32. }
  33. }