Ejemplo n.º 1
0
 private void Btn_BTImport_Click(object sender, EventArgs e)
 {
     if (this.Egv_TimesList.RowCount == 0)
     {
         CommFunc.PublicMessageAll("无法导入空的直线倍投!", true, MessageBoxIcon.Asterisk, "");
     }
     else
     {
         string        selectBTFN = this.GetSelectBTFN();
         List <string> bTList     = this.GetBTList();
         if (AppInfo.BTImport != null)
         {
             AppInfo.BTImport(selectBTFN, bTList);
         }
     }
 }