在DataGridView控件中设置数据显示格式

Posted feiyucha

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在DataGridView控件中设置数据显示格式相关的知识,希望对你有一定的参考价值。

实现效果:

  技术分享图片

知识运用:

  DataGridViewCellStyle类的Format属性  //获取或设置应用于DataGridView单元格的文本内容的格式字符串

  public string Format {  get;set;  }  // 通过设置控件的列的DefaultCellStyle.Format属性

实现代码:

        private void Form1_Load(object sender, EventArgs e)
        {
            dataGridView1.DataSource = new List<Fruit>()
            {
                new Fruit(){Price=21,Name="水蜜桃"},
                new Fruit(){Price=33,Name="榴莲"},
                new Fruit(){Price=24,Name="柑橘"},
                new Fruit(){Price=22,Name="黄柠檬"},
                new Fruit(){Price=21,Name="紫葡萄"}
            };
            dataGridView1.Columns[0].Width = 150;
            dataGridView1.Columns[1].Width = 150;
            dataGridView1.Columns[1].DefaultCellStyle.Format = "c";
        }

  

以上是关于在DataGridView控件中设置数据显示格式的主要内容,如果未能解决你的问题,请参考以下文章

如何在JS中设置控件的隐藏显示

Winform控件DataGridView添加数据的几种方式

c#怎么把datagridview给填满

值未显示在 DataGridViewComboBox 控件上

.Net C# DataGridView设置标题为中文

在角度 JS 中设置日期格式