New Post: PropertyGrid DateTime property updating issue
I replaced BindingOperations.SetBinding(temp1, DateTimeUpDown.TextProperty, _binding); withBindingOperations.SetBinding(temp1, DateTimeUpDown.ValueProperty, _binding); and everything is working fine now.
View ArticleNew Post: CollectionControlDialog question
Hi, Issue https://wpftoolkit.codeplex.com/workitem/22041 has been created.
View ArticleNew Post: PropertyGrid does not work to expand the use expandable object
Hi, Instead of modifying the existing code for the Value binding, I've you thought about using the PropertyGrid.Properties property instead of PropertyGrid.SelectedObject property ? You could define...
View ArticleNew Post: ZoomBox - Scrollbars
Hi, I can't see the images attached to last post. Zooming in will scale the content to see it bigger. I believe this is a normal behavior.
View ArticleNew Post: Using Events of the Wizard
Dear all I am new to C# and object oriented but not new to programming. I have been using the xctk extended toolkit for some short time now but I can not find one very simple thing. How can I listen...
View ArticleNew Post: Using Events of the Wizard
Hi, Each WizardPage has only 2 events : "Enter" and "Leave". If you want to listen to the "Cancel" and "Next" events, you have to look in the Wizard (containing the Wizard Pages). You can define it in...
View ArticleNew Post: Tooltip for DateTimePicker
Is there a possibility to show the tooltip only over the collapsed control (not over the calendar)?
View ArticleNew Post: Using Events of the Wizard
Hi BoucherS Thank you very much for your answer. I have two question. 1) Why is the next event using the CancelRoutedEvent and the cancel is using a simpel RoutedEvent? 2) if I make it all in the code...
View ArticleNew Post: Using Events of the Wizard
Hi, 1) There are 6 events on the Wizard control. 2 of them (Next and Previous) can be cancelled by the user by setting e.Cancel = true. Depending on what is currently displayed on the WizardPage, it...
View ArticleNew Post: [Solved] Using Events of the Wizard
Hi again, Thank you very much for your answer. I have created a solution based on your first suggestion. A mixture of code behind and xaml since the point was for me to learn :-) best regards Gouzgounis.
View ArticleNew Post: Go to next WizardPage from custom button
I want to go to the next WizardPage by using a normal <Button>, but I can't find any method to use. I can set the NextPage property, but I don't know how to actually call a NextPage-method. Does...
View ArticleNew Post: Go to next WizardPage from custom button
Hi, You need to change the Wizard.CurrentPage property to point to the WizardPage you want :wizard.CurrentPage = wizard.Items.GetItemAt( wizard.Items.IndexOf( wizard.CurrentPage ) + 1 ) as WizardPage;
View ArticleNew Post: Go to next WizardPage from custom button
BoucherS wrote: Hi, You need to change the Wizard.CurrentPage property to point to the WizardPage you want :wizard.CurrentPage = wizard.Items.GetItemAt( wizard.Items.IndexOf( wizard.CurrentPage ) + 1 )...
View ArticleNew Post: RangeSlider Drag increments
Greetings, How do you set the thumb drag increments. By default the increments are too minute (for my purposes).
View ArticleNew Post: RangeSlider Drag increments
Hi, If you want to modify the size of individual move, while clicking on the LowerRange or HigherRange, use the RangeSlider.Step property. This will not work while scrolling the thumbs. The thumb works...
View ArticleNew Post: (very) Basic Databinding question
Hi all! I have a novice question that I can't seem to find quite the right answer to. I'm following the tutorial found here. I can't seem to get the DataGridCollectionViewSource to correctly bind to a...
View ArticleNew Post: (very) Basic Databinding question
I would place your collectionviewsource in the UserControl or Window resources section rather than within the grid that you are working against.
View ArticleNew Post: (very) Basic Databinding question
netniv wrote: I would place your collectionviewsource in the UserControl or Window resources section rather than within the grid that you are working against. Thanks for the reply! I tried putting it...
View ArticleNew Post: (very) Basic Databinding question
Actually, I just realised why you are getting this error. The reason is because you are attempting to bind statically to the Application.Current which will be App.xaml/.cs not MainWindow.xaml/cs. You...
View ArticleNew Post: (very) Basic Databinding question
netniv wrote: Actually, I just realised why you are getting this error. The reason is because you are attempting to bind statically to the Application.Current which will be App.xaml/.cs not...
View Article