You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

39 lines
783 B
C#

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;
}
}
}
}