40 lines
596 B
C#
40 lines
596 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 AyaNovaQBI
|
|
{
|
|
public partial class Waiting : Form
|
|
{
|
|
public Waiting()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
|
|
public string Ops
|
|
{
|
|
set
|
|
{
|
|
lblOps.Text = value;
|
|
this.Refresh();
|
|
}
|
|
}
|
|
|
|
public string Step
|
|
{
|
|
set
|
|
{
|
|
lblStep.Text = value;
|
|
this.Refresh();
|
|
}
|
|
}
|
|
|
|
}
|
|
}
|