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 Construction.BatchCreateMap { public partial class FormProcess : Form { public FormProcess() { InitializeComponent(); } private void FormProcess_Load(object sender, EventArgs e) { PgbDoing.Value = 0; } private int _Step = 0; public int Step { get { _Step = PgbDoing.Value; return _Step; } set { _Step = value; } } } }