ComponentArt中仪表的格式字符串

时间:2012-07-12 18:46:59

标签: c# wpf componentart

有没有办法在量表的值中加入一些格式?这是我的代码(XAML)

    <ComponentArt:NumericGauge Height="80" 
        Name="Gauge1" 
        Width="300" 
        Grid.ColumnSpan="2" 
        Margin="0,8,0,8" 
        Grid.Row="1" 
        VerticalAlignment="Top" 
        Value="900000" 
     />

我希望我的仪表值如下:$ 900.000

我的程序是用c#

开发的

提前致谢

编辑:更多信息=我正在使用Visual Studio开发一个带有c#的wpf应用程序,我正在使用ComponentArt开发一个“Gauge”,这是来自componentart网页的一些示例代码

http://dv2011.componentart.com/#/Views/DemoViewPage.xaml $控制=量规与安培;类别= Numeric_Gauges&安培;演示= Numeric_Gauge

2 个答案:

答案 0 :(得分:0)

http://www.componentart.com/community/forums/t/63716.aspx,有人使用NumericGauge - 他们提供了一些示例代码Numeric_5F00_Gauge.zip。

在内部,他们使用FormatString来提供%符号。我想你可以尝试做FormatString =“$ 0.#0”或类似的东西? (对于更重要的小数位,可能更多0),并将您的值更改为900。

答案 1 :(得分:0)

我找到了解决方案,这是FormatString获得$ 90.000

FormatString="$ #,#0"