Quantcast
Channel: Extended WPF Toolkit™ Community Edition
Viewing all 4964 articles
Browse latest View live

New Comment on "ValueRangeTextBox"

$
0
0
Excellent examples ... thankis BoucherS

New Comment on "ValueRangeTextBox"

$
0
0
Good examples but how is the namespace "s" defined? (Sorry to be a bug - I've just started using the Toolkit)

Created Unassigned: WatermarkComboBox shows Item.ToString() instead of "DisplayMemberPath" in selected item [22195]

$
0
0
WatermarkComboBox shows Item.ToString() instead of "DisplayMemberPath" in selected item, which makes it hardly usable.

See also

http://stackoverflow.com/questions/35659604/wpf-how-to-view-a-property-name-in-comboboxitem-list

New Comment on "ValueRangeTextBox"

$
0
0
Hi, "s" namespace can be define like this : xmlns:s="clr-namespace:System;assembly=mscorlib"

Edited Issue: WatermarkComboBox shows Item.ToString() instead of "DisplayMemberPath" in selected item [22195]

$
0
0
WatermarkComboBox shows Item.ToString() instead of "DisplayMemberPath" in selected item, which makes it hardly usable.

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

$
0
0
It would be very useful to have tick marks and snapping on the range slider. It doesn't seem possible to add this in without creating an entirely new control, so I'm adding a request for it here.

New Comment on "DoubleUpDown"

$
0
0
how can I set the currency type? E.g. change $ to €. And many currencies has the value in the end and not beginning as 12 SEK. Possible to put a custom formatString? As "{0} SEK" or "€ {0}"

New Comment on "DoubleUpDown"

$
0
0
Or even better "{N2} SEK" or "€ {N2}" to get value with 2 decimals.

Edited Issue: Block access when child window is modal [17859]

$
0
0
From the following discussion (http://wpftoolkit.codeplex.com/discussions/252462), it seems it is possible to access the main window using shortcut keys even if the ChildWindow is modal.
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"

$
0
0
Hi, Simply change the CultureInfo on the control, with a Currency FormatString : <xctk:DoubleUpDown Value="12" Increment="0.5" FormatString="C2" CultureInfo="Fr-fr"/> or <xctk:DoubleUpDown Value="12" Increment="0.5" FormatString="C2" CultureInfo="SW"/>

Reviewed: Extended WPF Toolkit - 2.6.0 (mar 09, 2016)

$
0
0
Rated 5 Stars (out of 5) - Very good components without any cost.

Edited Feature: PropertyGrid PropertyDefinitions for Nested object [20733]

$
0
0
Based on disucssion https://wpftoolkit.codeplex.com/discussions/531863, user want to be able to specify for Properties to display for expandable properties.
Comments: ** Comment from web user: BoucherS **

Hi,

This will be fixed in v3.1

Created Feature: RangeSlider : Add Ticks [22198]

$
0
0
Based on disucssions http://wpftoolkit.codeplex.com/discussions/652302

New Post: Feature Request: Ticks on RangeSlider

Edited Feature: RangeSlider : Add Ticks [22198]

$
0
0
Based on disucssions http://wpftoolkit.codeplex.com/discussions/652302
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

$
0
0
Hi,

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

$
0
0
Hi,

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]

$
0
0
I have a WPF application embedded in a third-party software. My WPF app only has user controls and no windows at all. What does happen is if I call XCeed.Wpf.Toolki.Messagebox.Show(...), click on any other opened app and come back to mine, then the messagebox is hidden behind and it is pretty hard to bring it back. I must kill my app because it his waiting for the user to take action on a hidden messagebox.

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]

$
0
0
I have a WPF application embedded in a third-party software. My WPF app only has user controls and no windows at all. What does happen is if I call XCeed.Wpf.Toolki.Messagebox.Show(...), click on any other opened app and come back to mine, then the messagebox is hidden behind and it is pretty hard to bring it back. I must kill my app because it his waiting for the user to take action on a hidden messagebox.

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;
}
```

New Comment on "ValueRangeTextBox"

$
0
0
For the ValueRangeTextBox I have BeepOnError = True and ValueDataType="{x:Type s:Single}" When I enter an alphanumeric into there is no beep. What are the conditions that will trigger the beep?
Viewing all 4964 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>