Good observation ! Issue https://wpftoolkit.codeplex.com/workitem/21316 has been created,
Good observation ! Issue https://wpftoolkit.codeplex.com/workitem/21316 has been created,
Hi Boucher,
To confirm, this is an issue in both community and plus edition? Is this issue scheduled to be fixed soon?
Thanks,
Cecilia
Hi,
Yes this issue is in the community and Plus Edition of the Toolkit.
It will be fixed in v2.5.
Version 2.5 will show a tooltip when mouse is over a too long trimmed (with ellipses)
-PropertyName
-SelectedObjectTypeName
-SelectedObjectName
The release date for v2.5 is unknown at the moment since it is still being developped.
Hi,
Can you specify what FormatString you are using, the result you have and what you expect as a result .
Can you specify what version of the toolkit you are using.
Reading your suggestion tells me that only FormatString == "P" will parsePercent. But it should parePercent for FormatString equals to "P2", "P4"...
Hi,
thanks for the reply.
Extended WPF Toolkit™ Community Edition 2.2.1
I use something like
```c#
"0. 'PV'"
```
as Format string
According to [Microsoft](http://msdn.microsoft.com/de-de/library/0c899ak8(v=vs.110).aspx) this is a valid Format string.
Maybe this is a better solution or we have to specify when we use a custom format string.
```c#
result = Regex.Replace(FormatString, "\\\\.|\"[^\"]*\"|'[^\"]*'", "").ToUpper().Contains( "P" )
? _fromDecimal( ParsePercent( text, CultureInfo ) )
: _fromText( text, this.ParsingNumberStyle, CultureInfo );
```
Hi,
Without changing anything in the code and using v2.2.1, if I have
```
<xctk:DoubleUpDown Value="12.25" FormatString="0. 'PV'"/>
```
The DoubleUpDown displays "12 PV".
Is this wrong with this FormatString ?
This will be fixed in v2.5.
When the new Property PropertyGrid.IsMiscCategoryLabelHidden is True, the "Misc" category label won't be displayed.
Yes the display is 12 PV, but if you type 15 and leave the control or begin spinning, the value will become 0.15 and displays 0.15 PV.
This will be fixed in v2.5.
Thanks !
This is a problem with the Microsoft's CheckBox when using "ClassicThemes" as Windows XP does :
http://dotnetgui.blogspot.ca/2011/10/wpf-and-invisible-checkbox-and-radio.html
http://stackoverflow.com/questions/3753143/check-mark-in-a-checkbox
This bugs doesn't happens in Windows7 or Windows8
The following attributes can be used instead of using the DisplayAttribute :
-Category
-Description
-DisplayName
2 new properties will be added in v2.5 :
ColorPicker.AdvancedButtonHeader
ColorPicker.StandardButtonHeader
They will let you customize the content of the button in the ColorPicker.