Files
csharpcode/patientman/PatientMan/Forms/frmShowSaveInfo.cs
2025-08-02 05:20:17 +07:00

25 lines
485 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
namespace PatientMan.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;
}
}
}