zoukankan      html  css  js  c++  java
  • 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

    详细如下图所示:

  • 相关阅读:
    前三次复利计算程序的总结
    Compound Interest Calculator3.0
    Compound Interest Calculator2.0
    Compound Interest Calculator1.0
    操作系统第一次作业
    学习进度条
    0302感想和问题回答
    1231递归下降语法分析程序设计
    1211有限自动机构造与识别
    5份Java面经
  • 原文地址:https://www.cnblogs.com/YYkun/p/5799084.html
Copyright © 2011-2022 走看看