コード例 #1
0
 private void NewUCNX500IVCConfig_Load(object sender, EventArgs e)
 {
     if (this.idexxInfo != null)
     {
         IDEXX_VetLab_StationConfig config = (IDEXX_VetLab_StationConfig)idexxInfo.Config;
         config.CurrentConnectType = ConnectType.Other;
         textBoxPDF.Text           = config.PDFPath;
         textBoxRequest.Text       = config.RequestPath;
         textBoxResult.Text        = config.ResultPath;
         comboBoxDate.SelectedItem = config.DateFormat;
     }
 }
コード例 #2
0
        /// <summary>
        /// 读取配置
        /// </summary>
        /// <param name="hasErrors"></param>
        /// <returns></returns>
        protected override Config GetConfig(out int hasErrors)
        {
            Config cf = base.GetConfig(out hasErrors);
            IDEXX_VetLab_StationConfig config = (IDEXX_VetLab_StationConfig)cf;

            config.CurrentConnectType = ConnectType.Other;
            config.PDFPath            = textBoxPDF.Text;
            config.RequestPath        = textBoxRequest.Text;
            config.ResultPath         = textBoxResult.Text;
            config.DateFormat         = comboBoxDate.SelectedItem.ToString();
            return(cf);
        }