| 123456789101112131415161718192021222324252627282930313233343536 |
- using System;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.Drawing;
- using System.Data;
- using System.Linq;
- using System.Text;
- using System.Windows.Forms;
- namespace Core.StlMes.Client.PlnSaleOrd.Control
- {
- public partial class ContorlPlanStatusZy : UserControl
- {
- public string[] statusArr = new string[5] { "", "", "", "","" };//状态
- public ContorlPlanStatusZy()
- {
- InitializeComponent();
- if (chcStatus1.Checked) { statusArr[0] = "00"; }
- if (chcStatus2.Checked) { statusArr[1] = "10"; }
- if (chcStatus3.Checked) { statusArr[2] = "20"; }
- if (chcStatus4.Checked) { statusArr[3] = "30"; }
- if (chcStatus5.Checked) { statusArr[4] = "40"; }
- }
- private void chc_CheckedChanged(object sender, EventArgs e)
- {
- if (chcStatus1.Checked) { statusArr[0] = "00"; } else { statusArr[0] = ""; }
- if (chcStatus2.Checked) { statusArr[1] = "10"; } else { statusArr[1] = ""; }
- if (chcStatus3.Checked) { statusArr[2] = "20"; } else { statusArr[2] = ""; }
- if (chcStatus4.Checked) { statusArr[3] = "30"; } else { statusArr[3] = ""; }
- if (chcStatus5.Checked) { statusArr[4] = "40"; } else { statusArr[4] = ""; }
- }
-
- }
- }
|