First, let me say this is a wonderful library, which I have used extensively.
I have several IntegerUpDown controls with "prefixes" in the FormatString:
```
FormatString="'DLC =' 0"
```
I also have a few using hexadecimal format:
```
FormatString="X4"
```
But when I combine the two concepts, everything falls apart and I just get "DLC = X4" in the box:
```
FormatString="'DLC =' X4"
```
Comments: ** Comment from web user: BoucherS **
I have several IntegerUpDown controls with "prefixes" in the FormatString:
```
FormatString="'DLC =' 0"
```
I also have a few using hexadecimal format:
```
FormatString="X4"
```
But when I combine the two concepts, everything falls apart and I just get "DLC = X4" in the box:
```
FormatString="'DLC =' X4"
```
Comments: ** Comment from web user: BoucherS **
Hi,
Try with :
```
<xctk:IntegerUpDown Value="6"
FormatString="{}DLC = {0:X4}"
```
――――
_Get more controls, features, updates and technical support with [Xceed Toolkit Plus for WPF](https://wpftoolkit.codeplex.com/wikipage?title=Compare%20Editions)_