C# 扩展工具包&x27;十六进制输出中的s NumericUpDown

C# 扩展工具包&x27;十六进制输出中的s NumericUpDown,c#,.net,wpf,xaml,wpftoolkit,C#,.net,Wpf,Xaml,Wpftoolkit,我正在使用WPF的扩展工具包 NumericUpDown控件能够输入十六进制值,但我看不到以十六进制格式显示值的方法/属性 有一个FormatString,但它包含货币、百分比,而不是十六进制格式 我现在看到的WPF中的代码是: <xctk:IntegerUpDown Value="{Binding Value}" ParsingNumberStyle="HexNumber" FormatString="%X" Margin="4" /> 这起作用了: <

我正在使用WPF的扩展工具包

NumericUpDown控件能够输入十六进制值,但我看不到以十六进制格式显示值的方法/属性

有一个FormatString,但它包含货币、百分比,而不是十六进制格式

我现在看到的WPF中的代码是:

<xctk:IntegerUpDown Value="{Binding Value}" 
     ParsingNumberStyle="HexNumber" FormatString="%X" Margin="4" />

这起作用了:

    <xctk:IntegerUpDown ParsingNumberStyle="HexNumber" 
                        FormatString="X" 
                        VerticalAlignment="Center" 
                        HorizontalAlignment="Center" />

这起作用了:

    <xctk:IntegerUpDown ParsingNumberStyle="HexNumber" 
                        FormatString="X" 
                        VerticalAlignment="Center" 
                        HorizontalAlignment="Center" />


谢谢!还没试过,但它看起来正是我需要的!关于格式的文档似乎不完整。谢谢!还没试过,但它看起来正是我需要的!有关格式的文档似乎不完整。