Exemplo n.º 1
0
 public Form_AllSetUp(Class_AllParamSetUp class_AllParamSetUp)
 {
     InitializeComponent();
     this.class_AllParamSetUp = new Class_AllParamSetUp();
     if (class_AllParamSetUp != null)
     {
         this.class_AllParamSetUp = class_AllParamSetUp;
     }
     SetCompoment();
 }
Exemplo n.º 2
0
        /// <summary>
        /// 综合设置
        /// </summary>
        private void _AllSetUp()
        {
            Class_PublicMethod  class_PublicMethod  = new Class_PublicMethod();
            Class_AllParamSetUp class_AllParamSetUp = new Class_AllParamSetUp();

            class_AllParamSetUp = class_PublicMethod.FromXmlToAllParamSetUpObject <Class_AllParamSetUp>("Class_AllParamSetUp");
            Form_AllSetUp form_AllSetUp = new Form_AllSetUp(class_AllParamSetUp);

            if (form_AllSetUp.ShowDialog() == DialogResult.OK)
            {
                if (class_PublicMethod.DataBaseAllParamSetUpValueToXml("Class_AllParamSetUp", form_AllSetUp.class_AllParamSetUp))
                {
                    MessageBox.Show("已将参数默认值,保存到本地!", "温馨提示", MessageBoxButtons.OK, MessageBoxIcon.Information, MessageBoxDefaultButton.Button1);
                }
            }
            form_AllSetUp.Dispose();
        }