New Comment on "ValueRangeTextBox"
New Comment on "ValueRangeTextBox"
Created Unassigned: WatermarkComboBox shows Item.ToString() instead of "DisplayMemberPath" in selected item [22195]
See also
http://stackoverflow.com/questions/35659604/wpf-how-to-view-a-property-name-in-comboboxitem-list
New Comment on "ValueRangeTextBox"
Edited Issue: WatermarkComboBox shows Item.ToString() instead of "DisplayMemberPath" in selected item [22195]
See also
http://stackoverflow.com/questions/35659604/wpf-how-to-view-a-property-name-in-comboboxitem-list
Comments: ** Comment from web user: BoucherS **
Hi,
Thanks for reporting this issue.
It will be fixed in v3.0.
New Post: Feature Request: Ticks on RangeSlider
New Comment on "DoubleUpDown"
New Comment on "DoubleUpDown"
Edited Issue: Block access when child window is modal [17859]
Comments: ** Comment from web user: BoucherS **
Hi,
This will be fixed in v3.0.
Modal ChildWindow and MessageBox Tab Navigation will remain in the Control. Also, Menu shortcut keys won't be available when a Modal ChildWindow or MessageBox is displayed.
New Comment on "DoubleUpDown"
Reviewed: Extended WPF Toolkit - 2.6.0 (mar 09, 2016)
Edited Feature: PropertyGrid PropertyDefinitions for Nested object [20733]
Comments: ** Comment from web user: BoucherS **
Hi,
This will be fixed in v3.1
Created Feature: RangeSlider : Add Ticks [22198]
New Post: Feature Request: Ticks on RangeSlider
Edited Feature: RangeSlider : Add Ticks [22198]
Comments: ** Comment from web user: BoucherS **
Hi,
The properties TickPlacement, TickFrequency and IsSnapToTickEnabled will be available in v3.1 for the RangeSlider, to display Ticks like in the Slider.
New Post: Is there a way to sort property categories
I have a propertygrid with some categories, and I would like to have the most imporant category at the top - right now they appear in alphabetical order.
Is there any way to get the categories sorted?
regards
Andreas
New Post: Is there a way to sort property categories
Yes you can.
Try adding the CategoryOrder attribute on your object. Something like :
[CategoryOrder("Information", 0)]
[CategoryOrder( "Conections", 1 )]
[CategoryOrder( "Other", 2 )]
public class Person : INotifyPropertyChanged
{
}
You will be able to set your categories in the order you want with the integer value of the Category order attribute.Commented Issue: Messagebox hidden [22192]
I then tried to create an instance of the class and call ShowDialog and play with events, but there is no button, icon and defaultButton properties???
How could I get this messagebox working like the default Windows one? It is almost perfect, unless we click on another app and then we must kill it.
Thank you
Comments: ** Comment from web user: shrehirchuk **
This is a pretty major issue.
Is there a workaround?
What version was this regression introduced in. I know this wasn't the case back in 2.0. I would need to roll back to a prior version if this isn't released in the next week or two.
Thanks.
Commented Issue: Messagebox hidden [22192]
I then tried to create an instance of the class and call ShowDialog and play with events, but there is no button, icon and defaultButton properties???
How could I get this messagebox working like the default Windows one? It is almost perfect, unless we click on another app and then we must kill it.
Thank you
Comments: ** Comment from web user: BoucherS **
Hi,
v2.4, v2.5 and v2.6 have the issue.
v2.7 and up are fixed.
There is no workaround, but a fix could be :
In file Xceed.Wpf.Toolkit/MessageBox/Implementation/MessageBox.cs
In method "CreateContainer()"
Add :
```
newWindow.Owner = _owner ?? ComputeOwnerWindow();
```
Where ComputeOwnerWindow() is
```
private static Window ComputeOwnerWindow()
{
Window owner = null;
if( Application.Current != null )
{
foreach( Window w in Application.Current.Windows )
{
if( w.IsActive )
{
owner = w;
break;
}
}
}
return owner;
}
```