我尝试使用c1FlexGrid1.Styles.Footer.Format= "###,##0.00" 及 c1FlexGrid1.Styles.Footer.Format="N2"无效后,又尝试在OwnerDrawCell事件中使用
var style = c1FlexGrid1.Styles.Add("footer");
style.BackColor = Color.LightGray;
style.DataType = typeof(double);
style.Format = "N2";
style.Font = new Font("Arial", 10, FontStyle.Bold);
e.Style = style;
也同样无法格式化输出。
|
|