30 lines
741 B
C#
30 lines
741 B
C#
using DevExpress.XtraEditors;
|
|
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 HL_FristAidPlatform_Public
|
|
{
|
|
public partial class Form_Followupremind : XtraForm
|
|
{
|
|
string followUpRemindNeed = "";
|
|
public Form_Followupremind(string _followUpRemindNeed="")
|
|
{
|
|
InitializeComponent();
|
|
followUpRemindNeed = _followUpRemindNeed;
|
|
labelControl1.Text = followUpRemindNeed;
|
|
}
|
|
|
|
private void simpleButton1_Click(object sender, EventArgs e)
|
|
{
|
|
this.Close();
|
|
}
|
|
}
|
|
}
|