//private void RefreshSever() //{ // List<ServerVo> voList = new List<ServerVo>(); // SelectDao.SelectData(ref voList); // this.gridControl2.DataSource = voList; // this.gridControl2.RefreshDataSource(); //} private void RefreshSkillPrice(string serverName) { List <SkillPriceVo> voList = new List <SkillPriceVo>(); SelectDao.GetSkillPriceByName(serverName, ref voList); this.gridControl3.DataSource = voList; this.gridControl3.RefreshDataSource(); }