winform中dataGridView有一个列是float类型数值问题

yezhendong185 2010-09-03 04:38:52
我现在在datagridview中有一个列是float类型的数值,现在有一些数字比如12.01 15 4.5我要他们统一后面保留俩个数,应该怎么做。就是要显示的结果是12.01 15.00 4.50.
...全文
366 12 打赏 收藏 转发到动态 举报
写回复
用AI写文章
12 条回复
切换为时间正序
请发表友善的回复…
发表回复
yezhendong185 2010-09-06
  • 打赏
  • 举报
回复
谢谢楼上各位,问题解决!!!
glest 2010-09-06
  • 打赏
  • 举报
回复
[Quote=引用 8 楼 yezhendong185 的回复:]

引用 7 楼 dfdfdfjddlfd 的回复:
this.dataGridView1.DefaultCellStyle.Format = "N2";


此方法行不通
[/Quote]

this.column1.DefaultCellStyle.Format = "N2";//column1为需要设置格式的列名
uvvvw 2010-09-06
  • 打赏
  • 举报
回复
学习了
yezhendong185 2010-09-06
  • 打赏
  • 举报
回复
[Quote=引用 7 楼 dfdfdfjddlfd 的回复:]
this.dataGridView1.DefaultCellStyle.Format = "N2";
[/Quote]

此方法行不通
DevinHu 2010-09-03
  • 打赏
  • 举报
回复
this.dataGridView1.DefaultCellStyle.Format = "N2";
xiaodru88 2010-09-03
  • 打赏
  • 举报
回复
字段里的DisplayFormat设置为0.00就行了
TBCDField(mDataSet.Fields[I]).DisplayFormat= '0.00 ';
new_BCBER 2010-09-03
  • 打赏
  • 举报
回复
其行为中的Format属性设为 N2 即可
dancingbit 2010-09-03
  • 打赏
  • 举报
回复
怎么个没有办法设置?

MSDN中都有现在的例子的:

// Configures the appearance and behavior of a DataGridView control.
private void InitializeDataGridView()
{
// Initialize basic DataGridView properties.
dataGridView1.Dock = DockStyle.Fill;
dataGridView1.BackgroundColor = Color.LightGray;
dataGridView1.BorderStyle = BorderStyle.Fixed3D;

// Set property values appropriate for read-only display and
// limited interactivity.
dataGridView1.AllowUserToAddRows = false;
dataGridView1.AllowUserToDeleteRows = false;
dataGridView1.AllowUserToOrderColumns = true;
dataGridView1.ReadOnly = true;
dataGridView1.SelectionMode = DataGridViewSelectionMode.FullRowSelect;
dataGridView1.MultiSelect = false;
dataGridView1.AutoSizeRowsMode = DataGridViewAutoSizeRowsMode.None;
dataGridView1.AllowUserToResizeColumns = false;
dataGridView1.ColumnHeadersHeightSizeMode =
DataGridViewColumnHeadersHeightSizeMode.DisableResizing;
dataGridView1.AllowUserToResizeRows = false;
dataGridView1.RowHeadersWidthSizeMode =
DataGridViewRowHeadersWidthSizeMode.DisableResizing;

// Set the selection background color for all the cells.
dataGridView1.DefaultCellStyle.SelectionBackColor = Color.White;
dataGridView1.DefaultCellStyle.SelectionForeColor = Color.Black;

// Set RowHeadersDefaultCellStyle.SelectionBackColor so that its default
// value won't override DataGridView.DefaultCellStyle.SelectionBackColor.
dataGridView1.RowHeadersDefaultCellStyle.SelectionBackColor = Color.Empty;

// Set the background color for all rows and for alternating rows.
// The value for alternating rows overrides the value for all rows.
dataGridView1.RowsDefaultCellStyle.BackColor = Color.LightGray;
dataGridView1.AlternatingRowsDefaultCellStyle.BackColor = Color.DarkGray;

// Set the row and column header styles.
dataGridView1.ColumnHeadersDefaultCellStyle.ForeColor = Color.White;
dataGridView1.ColumnHeadersDefaultCellStyle.BackColor = Color.Black;
dataGridView1.RowHeadersDefaultCellStyle.BackColor = Color.Black;

// Set the Format property on the "Last Prepared" column to cause
// the DateTime to be formatted as "Month, Year".
dataGridView1.Columns["Last Prepared"].DefaultCellStyle.Format = "y";

// Specify a larger font for the "Ratings" column.
using (Font font = new Font(
dataGridView1.DefaultCellStyle.Font.FontFamily, 25, FontStyle.Bold))
{
dataGridView1.Columns["Rating"].DefaultCellStyle.Font = font;
}

// Attach a handler to the CellFormatting event.
dataGridView1.CellFormatting += new
DataGridViewCellFormattingEventHandler(dataGridView1_CellFormatting);
}



yezhendong185 2010-09-03
  • 打赏
  • 举报
回复
[Quote=引用 2 楼 dancingbit 的回复:]
DefaultCellStyle属性
[/Quote]
这个属性怎么设置?麻烦告诉下好吗!我看了下好像没办法设置!
dancingbit 2010-09-03
  • 打赏
  • 举报
回复
DefaultCellStyle属性
yezhendong185 2010-09-03
  • 打赏
  • 举报
回复
我如果转换成string就可以实现,但是string类型的排序正方是直接绝对值进行排序的有问题所有必须是数字类型的排序才不会出现string类型的排序错误。
源码链接: https://pan.quark.cn/s/a4b39357ea24 在本研究,我们将详细研究如何借助Python执行数据可视化,旨在剖析2018年期间国四个主要城市——北京、上海、广州以及深圳的空气质量状况。通过绘制反映空气质量指数(AQI)与细颗粒物(PM2.5)变化趋势的图表,我们能够深入理解这些大都市全年的空气环境质量,并明确评估其优良天气所占的比重。 我们必须首先进行数据准备工作。在当前提供的压缩文件内,名为"2018天气"的文件极有可能是数据来源,其可能收录了涉及四个城市每日空气质量监测的详细信息。这些数据通常涵盖日期、城市名称、AQI数值、PM2.5含量等核心参数。在Python编程环境,我们惯常运用pandas库来对这类结构化数据进行高效的处理和分析。 1. **数据导入与初步处理**: - 利用`pandas.read_csv()`方法来导入存储为CSV格式的数据资料。 - 数据整理:对数据的空白项、非正常数值进行修正,保证数据的精确性。 - 调整日期字段的格式,确保其能够适用于时间序列分析的需求。 2. **数据深度分析**: - 针对每个城市的AQI和PM2.5数据执行统计性描述,例如计算平均值、位数、标准偏差等指标。 - 确定空气质量良好天气的天数,即那些AQI值低于75(依据国的空气质量评估标准)的日数。 3. **数据呈现**: - 运用matplotlib或seaborn工具绘制折线图,直观展示四个城市在2018年全年的AQI和PM2.5变化动态。 - 可通过采用不同的颜色方案和线条类型来区分不同城市的数据系列。 - 添加必要的图示元素,如日期坐标轴、城市名称标注、图表标题及图例说明,以提升图表的可读...

111,129

社区成员

发帖
与我相关
我的任务
社区描述
.NET技术 C#
社区管理员
  • C#
  • Creator Browser
  • by_封爱
加入社区
  • 近7日
  • 近30日
  • 至今
社区公告

让您成为最强悍的C#开发者

试试用AI创作助手写篇文章吧