AOI_V1/MaiMuAOI/AssistClient/FrmLoading.cs

37 lines
817 B
C#
Raw Permalink Normal View History

2024-03-07 14:34:59 +08:00
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace AssistClient
{
public partial class FrmLoading2 : Form
{
public string data { get; set; }
public FrmLoading2()
{
InitializeComponent();
}
public FrmLoading2(string _data)
{
InitializeComponent();
this.data = _data;
}
private void FrmLoading2_Load(object sender, EventArgs e)
{
if (this.Owner != null)
{
this.Size = this.Owner.Size;
this.Location = this.Owner.Location;
}
}
}
}