|
- using HKLib.DB;
- using HKCardManager.UserPages;
-
- namespace HKCardManager
- {
- public partial class Form1 : Form
- {
- public Form1()
- {
- InitializeComponent();
- splitContainer1.SplitterDistance = 240;
- Task.Factory.StartNew(() =>
- {
- DbContext.InitTable();
- });
- ShowPage(new PersonnelEntryPage());
- this.SizeChanged += Form1_SizeChanged;
- this.button1.SizeChanged += Button1_SizeChanged;
- MessageLogNotify.GetInstance.Info = new Action<string>((s) =>
- {
- this.Invoke(() =>
- {
- if (listBox1.Items.Count > 0)
- listBox1.Items.Insert(0, $"{DateTime.Now.ToString("HH:mm:ss")}:{s}");
- else
- listBox1.Items.Add($"{DateTime.Now.ToString("HH:mm:ss")}:{s}");
- });
- });
- }
-
- private void Button1_SizeChanged(object? sender, EventArgs e)
- {
- groupBox1.Width = button1.Width;
- groupBox2.Width = button1.Width;
- groupBox3.Width = button1.Width;
- groupBox4.Width = button1.Width;
-
- button2.Left = 10;
- button2.Width = (groupBox1.Width - 20);
-
- button3.Left = 10;
- button3.Width = (groupBox1.Width - 20);
-
- button4.Left = 10;
- button4.Width = (groupBox2.Width - 20);
-
- button5.Left = 10;
- button5.Width = (groupBox2.Width - 20);
-
- button6.Left = 10;
- button6.Width = (groupBox2.Width - 20);
-
- button7.Left = 10;
- button7.Width = (groupBox2.Width - 20);
-
- button9.Left = 10;
- button9.Width = (groupBox3.Width - 20);
-
- button10.Left = 10;
- button10.Width = (groupBox3.Width - 20);
-
- button11.Left = 10;
- button11.Width = (groupBox3.Width - 20);
-
- button12.Left = 10;
- button12.Width = (groupBox4.Width - 20);
- }
-
-
-
- UserControl tempUserControl;
- private void Form1_SizeChanged(object? sender, EventArgs e)
- {
- if (tempUserControl != null)
- {
- tempUserControl.Width = this.panel1.Width;
- tempUserControl.Height = this.panel1.Height;
- }
- splitContainer1.SplitterDistance = 240;
- }
-
- private void 人员录入ToolStripMenuItem_Click(object sender, EventArgs e)
- {
- new PersonnelEntry().ShowDialog();
- }
-
- private void 机构录入ToolStripMenuItem_Click(object sender, EventArgs e)
- {
- new InstitutionalEntry().ShowDialog();
- }
-
- private void 发卡ToolStripMenuItem_Click(object sender, EventArgs e)
- {
- new Hairpin().ShowDialog();
- }
-
- private void 销户ToolStripMenuItem_Click(object sender, EventArgs e)
- {
- Cancellation cancellation = new Cancellation();
- cancellation.Text = "销户";
- cancellation.ShowDialog();
- }
-
- private void 挂失ToolStripMenuItem_Click(object sender, EventArgs e)
- {
- Cancellation cancellation = new Cancellation();
- cancellation.Text = "挂失";
- cancellation.ShowDialog();
- }
-
- private void 解挂ToolStripMenuItem_Click(object sender, EventArgs e)
- {
- Cancellation cancellation = new Cancellation();
- cancellation.Text = "解挂";
- cancellation.ShowDialog();
- }
-
- private void 月餐段汇总表ToolStripMenuItem_Click(object sender, EventArgs e)
- {
- DailyConsumptionTable dailyConsumptionTable = new DailyConsumptionTable();
- dailyConsumptionTable.Text = "月餐段汇总表";
- dailyConsumptionTable.ShowDialog();
- }
-
- private void 计次就餐天消费表ToolStripMenuItem_Click(object sender, EventArgs e)
- {
- DailyConsumptionTable dailyConsumptionTable = new DailyConsumptionTable();
- dailyConsumptionTable.Text = "计次就餐天消费表";
- dailyConsumptionTable.ShowDialog();
- }
-
- private void 计次就餐消费明细表ToolStripMenuItem_Click(object sender, EventArgs e)
- {
- DailyConsumptionTable dailyConsumptionTable = new DailyConsumptionTable();
- dailyConsumptionTable.Text = "计次就餐消费明细表";
- dailyConsumptionTable.ShowDialog();
- }
-
- private void 餐段设置ToolStripMenuItem_Click(object sender, EventArgs e)
- {
- new MealSegmentSet().ShowDialog();
- }
-
- //人员录入
- private void button2_Click(object sender, EventArgs e)
- {
- ShowPage(new PersonnelEntryPage());
- }
-
- //机构录入
- private void button3_Click(object sender, EventArgs e)
- {
- ShowPage(new InstitutionalEntryPage());
- }
-
- //发卡
- private void button5_Click(object sender, EventArgs e)
- {
- ShowPage(new CarMangerPage());
- }
-
- //销户,挂失,解挂
- private void button4_Click(object sender, EventArgs e)
- {
- ShowPage(new CancellationPage(), ((Button)sender)?.Tag.ToString());
- }
-
- //月餐段汇总表
- private void button11_Click(object sender, EventArgs e)
- {
- ShowPage(new ReportFormPage(), ((Button)sender)?.Tag.ToString());
- }
-
- //餐段设置
- private void button12_Click(object sender, EventArgs e)
- {
- ShowPage(new MealSegmentSetPage());
- }
-
- private void ShowPage(UserControl userControl, string? name = "")
- {
- panel1.Controls.Clear();
- userControl.Width = panel1.Width;
- userControl.Height = panel1.Height;
- tempUserControl = userControl;
- userControl.Tag = name;
- userControl.Show();
- panel1.Controls.Add(userControl);
- }
- }
- }
|