123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- 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 OTSSysMgrApp
- {
- public partial class SwitchSystemValidation : Form
- {
-
- public bool UpdateFile
- {
- get;
- set;
- }
- public SwitchSystemValidation()
- {
- InitializeComponent();
- }
- private void SwitchSystemValidation_Load(object sender, EventArgs e)
- {
- }
- private void btn_OK_Click(object sender, EventArgs e)
- {
- this.DialogResult = DialogResult.OK;
- this.Close();
- }
- private void cB_updatefile_CheckedChanged(object sender, EventArgs e)
- {
- UpdateFile = cB_updatefile.Checked;
- }
- private void btn_CANCEL_Click(object sender, EventArgs e)
- {
- this.Close();
- }
- }
- }
|