版博士V2.0程序
Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.
 
 
 
 

37 рядки
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. }