예제 #1
0
    private DataTable loadDataToUI(clsThiSinh_DTO thisinhDTO)
    {
        DataTable dt = new DataTable();

        dt = thisinhDAL.getThiSinh(thisinhDTO);
        return(dt);
    }
    private void loadMasterData()
    {
        DataTable dt = new DataTable();

        dt = thisinhDAL.getThiSinh(thisinhDTO);
        GridViewDataComboBoxColumn gclthisinh = gvKetQuaThi.Columns["MaTS"] as GridViewDataComboBoxColumn;

        gclthisinh.PropertiesComboBox.DataSource = dt;
        //gclDiemThi.PropertiesComboBox.ValueField = "MaDienThi";
        //gclDiemThi.PropertiesComboBox.TextField = "TenDiemThi";

        //GridViewDataCheckColumn gclTrangThai = gvKetQuaThi.Columns["TrangThai"] as GridViewDataCheckColumn;
        //gclTrangThai.PropertiesCheckEdit.DisplayTextChecked = "Chon";
    }