下面的示例展示了如何根据数值的符号,在一个 CalcEdit 编辑器中呈现数值。 这种类型的格式设置通过使用自定义格式说明符实现。 通过编辑器的 RepositoryItem.DisplayFormat 属性进行格式设置,因此这只会影响显示模式下的文本,在编辑模式下不起作用。请参阅 格式说明符 主题,了解关于格式说明符的信息。
示例代码的执行结果如下图所示:
C# | 复制代码 |
---|---|
using DevExpress.Utils; // ... calcEdit1.Properties.DisplayFormat.FormatType = FormatType.Numeric; calcEdit1.Properties.DisplayFormat.FormatString = "#.00;[#.0];Zero"; |
Visual Basic | 复制代码 |
---|---|
Imports DevExpress.Utils ' ... CalcEdit1.Properties.DisplayFormat.FormatType = FormatType.Numeric CalcEdit1.Properties.DisplayFormat.FormatString = "#.00;[#.0];Zero" |