Files
cms_thermo_active/Step.UI/Views/OpeningLayer.cs
T
Nicola Carminati 4213c2480f First commit
2019-03-29 18:00:18 +01:00

30 lines
644 B
C#

using System;
using System.Windows.Forms;
using System.Threading;
namespace Step.UI.Views
{
public partial class OpeningLayer : UserControl
{
public OpeningLayer()
{
InitializeComponent();
}
private void OpeningLayer_Load(object sender, EventArgs e)
{
statusLabel.Text = "";
Thread th = new Thread(() =>
{
for (int i = 0; i <= 100; i++)
{
//metroProgressSpinner.Value = i;
if (i == 100)
i = 0;
}
});
}
}
}