New Post: How to disable auto-validation in DateTimePicker.
BoucherS wrote: In the meantime, to have this behavior, you can go in file Xceed.Wpf.Toolkit/DateTimeUpDown/Implementation/DateTimeUpDown.cs, in method "TryParseDateTime", add the following lines...
View ArticleNew Post: How to disable auto-validation in DateTimePicker.
I did find where you're talking about; however, that solution does not give me what I need. It still resets it to the last digit of the invalid value.
View ArticleNew Post: change DateTimeUpDown background OnMouseOver and IsPressed
i guess the problem is with me... i'm using a couple of resource dictionaries so i guess something is blocking the repeat button new style. thanks for the help though. Jonathan
View ArticleNew Post: License question
Hello, I'm not sure if I understood correctly MS-pl license. So my question is, can I use Wpftoolkit Community Edition library in a commercial/proprietary product? Cheers, jkovalsky
View ArticleNew Post: How to disable auto-validation in DateTimePicker.
Hi, Can you upgrade to a newer version of the toolkit ? Currently, the latest version is 2.1, and the "Plus" version is at 2.2.
View ArticleNew Post: License question
Here's the summary of what it means: https://tldrlegal.com/license/microsoft-public-license-(ms-pl) So, I would say yes! Keep in mind that if you include/provide source code with/for your product, you...
View ArticleNew Post: How to disable auto-validation in DateTimePicker.
Thanks, I appreciate your reply. I pulled down the latest code base (2.1.0.0), added the code snippet you suggested and tried that, but it still seems to be acting weird. It still seems to be doing the...
View ArticleNew Post: IntegerUpDown In DataGrid.CellEditTemplate Can not selectAll
<DataGridTemplateColumn.CellEditingTemplate> <DataTemplate> <Grid Background="AliceBlue" FocusManager.FocusedElement="{Binding ElementName=intUpDown}"> <xwt:IntegerUpDown...
View ArticleNew Post: MessageBox Image
Hi BoucherS, First of all, thanks for the service you provide in developing this free tool. To add to the question that AeroClassics asked, is there any way that these images can be set in a style, so...
View ArticleNew Post: Custom PropertyDescriptor not getting updated in Property Grid and...
Any information I can get on this? I've tried quite a few different ways with ICustomTypeDescriptors and PropertyDescriptors and none of them work with the propertygrid. Am I missing something or is it...
View ArticleNew Post: How to disable auto-validation in DateTimePicker.
Hi, I'm trying the DatetimePicker in v2.1. If I modify the minutes from "12" to "78" and put focus on another control, the date is changed to January 1 0001 with the time 00:00:00. With the code...
View ArticleNew Post: IntegerUpDown In DataGrid.CellEditTemplate Can not selectAll
Hi,"SelectAllOnGotFocus'" is obsolete, you can forget it and only set "AutoSelectBehavior" to "OnFocus". If used as an independent control, the IntegerUpDown.AutoSelectBehavior will work. To use it in...
View ArticleNew Post: MessageBox Image
Hi Dawit_A, Of course you can create a style for MessageBoxes. Here's an example :<Style x:Key="MessageBoxStyle" TargetType="xctk:MessageBox"> <Setter Property="Background" Value="Green" />...
View ArticleNew Post: Custom PropertyDescriptor not getting updated in Property Grid and...
Hi, You can try the "LiveExplorer App" available on this page : https://wpftoolkit.codeplex.com/ to test the different scenarios and to know what options are available in the "Plus" version and which...
View ArticleNew Post: BusyIndicator Not Visible
I have read your article on how to use the BusyIndicator, but I am still having an issue. The BusyIndicator is not visible until after my LRP finshes. My CopyFiles() method touches some of the UI...
View ArticleNew Post: How to disable auto-validation in DateTimePicker.
Thanks for the update. I appreciate the time you've spent on this. CT
View ArticleNew Post: BusyIndicator Not Visible
Hi, Using your code, if you put the "copyFiles()" method Inside the "DoWork", the copy of the files will be done in background while the BusyIndicator will be shown. Have you tried this ?private void...
View ArticleNew Post: BusyIndicator Not Visible
I did try this. The problem is that CopyFiles() needs to gather information from the UI elements. I can't interact with the UI elements if I put CopyFiles() in the BackgroundWorker Thread.
View ArticleNew Post: BusyIndicator Not Visible
Hi, Interacting with UI in the BackgroundWorker will not work :"You must be careful not to manipulate any user-interface objects in your DoWork event handler. Instead, communicate to the user interface...
View ArticleNew Post: Magnifier toggle on and off
I have just started using the wpf magnifier and I think it is a great tool. I have been having an issue though. I have been trying to toggle it on and off with a checkbox binding in xaml with no...
View Article