New Post: Removing white-out when inactiviating time picker
No, that only removes some of the background. You can see the missing 'background' on the left and right extremes of the control. Thanks though!
View ArticleNew Post: Customizing Wizard Footer background color?
Hi, Currently no. But you can always re-do the template of the Wizard...or modify the code of the wizard's template directly in the sources of the Toolkit. Here is where you will find the border you...
View ArticleNew Post: PropertyGrid + Custom Editors + ClassLibrary
If you create a Custom editor for specific properties of the selectedObject, the propertyGrid should use the custom editor for these properties. Here's something that works ://In the class library...
View ArticleCommented Issue: TimeSpanUpDown cannot handle large TimeSpan [21416]
TimeSpanUpDown cannot handle large TimeSpan because of the way it attempts to convert the TimeSpan ticks into an equivalent DateTime. As DateTime are limited to the year 9999 or earlier large TimeSpan...
View ArticleCreated Unassigned: Support TimeSpan up/down negative values [21615]
It's a rare corner case, but it does happen. TimeSpans can be negative, so instead of returning null, the format should allow for that.
View ArticleNew Post: PropertyGrid + Custom Editors + ClassLibrary
You are right, it's works for simple property. See my second path in this post about refresh ExpandableObject.public class SubClass: INotifyPropertyChanged { public string FirstName { get {...}; set...
View ArticleNew Post: Removing white-out when inactiviating time picker
Do you have the same problem when not using ExpressionDark ? Are you on Windows 7 or Windows8 ?
View ArticleCommented Issue: TimeSpanUpDown cannot handle large TimeSpan [21416]
TimeSpanUpDown cannot handle large TimeSpan because of the way it attempts to convert the TimeSpan ticks into an equivalent DateTime. As DateTime are limited to the year 9999 or earlier large TimeSpan...
View ArticleCommented Unassigned: Zoombox throws exception [21610]
Hi,I've added the Extended WPF Toolkit using nuget.org and added a Zoombox to a window. When running the application the Zoombox will throw an exception. The inner exception message is "Illegal...
View ArticleNew Post: Removing white-out when inactiviating time picker
I am able to turn it off using XAML Spy by changing the Opacity setting to 0. See here:XAML Spy pic I am using Windows 7. The top picture is without ExpressionDark enabled (it still happens) and the...
View ArticleEdited Feature: Support TimeSpan up/down negative values [21615]
It's a rare corner case, but it does happen. TimeSpans can be negative, so instead of returning null, the format should allow for that.Comments: ** Comment from web user: BoucherS ** Hi,v2.6 will...
View ArticleNew Post: PropertyGrid + Custom Editors + ClassLibrary
Hi, What exactly is not working ? I used your code and the textBlock is displayed and updated when I modify the FirstName's textBox. The NameEditor.ResolveEditor() is called. I'm using v2.3 of toolkit.
View ArticleNew Post: Styling NumericUpDown
Setting Opacity = "0" in x:Name="Border" is what worked under my "<Window.Resources":<Style TargetType="{x:Type xctk:WatermarkTextBox}"> <Setter Property="Template" Value="{DynamicResource...
View ArticleNew Post: Removing white-out when inactiviating time picker
It worked with opacity set to 0 in x:name = "Border" in the following added code to windows.resources:<Style TargetType="{x:Type xctk:WatermarkTextBox}"> <Setter Property="Template"...
View ArticleCommented Unassigned: Zoombox throws exception [21610]
Hi,I've added the Extended WPF Toolkit using nuget.org and added a Zoombox to a window. When running the application the Zoombox will throw an exception. The inner exception message is "Illegal...
View ArticleNew Post: Removing white-out when inactiviating time picker
Hi, What I can tell is that v2.5 of the toolkit has really changed the TimePicker (providing new base class and new properties). Since you are using Windows7, the "Generic.xaml" files will be used as...
View ArticleNew Post: Removing white-out when inactiviating time picker
Thanks, that is cleaner. Do you have any idea why this is part of the control by default? Changing the border background when IsEnabed= "False" doesn't seem to correspond to the operation of any other...
View ArticleNew Post: Removing white-out when inactiviating time picker
This is not part of the control in Windows8. I will remove it in Windows7. It will be included in v2.6.
View ArticleCreated Unassigned: AvalonDock InvalidOperationException calling...
Hi all,I'm using AvalonDock 2.3 in simple WPF project as follows:```<Window x:Class="AvalonTest.MainWindow" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"...
View Article