DateGridView中添加下拉框列並實現數據綁定、更改背景色


1.添加下拉框

代碼實現==》 using System; using System.Collections.Generic; using System.Windows.Forms; namespace DgvCombox { public partial class Form1 : Form { class TextInfo { public string MyName { get; set; } public string Sex { get; set; } } public Form1() { InitializeComponent(); this.dgvList.AutoGenerateColumns = false; } private void Form1_Load(object sender, EventArgs e) { List<string> sexList = new List<string>(); sexList.Add("男"); sexList.Add("女"); List<TextInfo> list = new List<TextInfo>(); list.Add(new TextInfo { MyName = "001", Sex = "男" }); list.Add(new TextInfo { MyName = "002", Sex = "女" }); list.Add(new TextInfo { MyName = "003", Sex = "女" }); list.Add(new TextInfo { MyName = "004", Sex = "女" }); //this.dgvList.DataSource = list; for (int i = 0; i < list.Count; i++) { dgvList.Rows.Add(); this.dgvList.Rows[i].Cells[0].Value = list[i].MyName; this.dgvList.Rows[i].Cells[1].Value = list[i].Sex; } ((DataGridViewComboBoxColumn)this.dgvList.Columns["Sex"]).DataSource = sexList; this.dgvList.AllowUserToAddRows = true; } } }

2.按鈕列更改背景色

==>

  更改FlatStyle——Flat;

  更改DefaultCellStyle

詳細如下圖所示:

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM