Upload to server
uploading
This commit is contained in:
24
omegapro/Omega/Forms/frmShowSaveInfo.cs
Normal file
24
omegapro/Omega/Forms/frmShowSaveInfo.cs
Normal file
@@ -0,0 +1,24 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
|
||||
namespace Omega.Forms
|
||||
{
|
||||
public partial class frmShowSaveInfo : DevExpress.XtraEditors.XtraForm
|
||||
{
|
||||
private int i = 0;
|
||||
public frmShowSaveInfo()
|
||||
{
|
||||
InitializeComponent();
|
||||
}
|
||||
|
||||
private void timer_Tick(object sender, EventArgs e)
|
||||
{
|
||||
if (i > 10)
|
||||
{
|
||||
Close();
|
||||
}
|
||||
i = i + 1;
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user