New Post: DateTimePicker and DateTimeUpDown with a Custom Format can cause a...
Hello, A System.InvalidOperationException can occurs in a DateTimePicker and a DateTimeUpDown control if the Format is set to « Custom ». Actually, the two controls cause the same error because...
View ArticleNew Post: DateTimePicker and DateTimeUpDown with a Custom Format can cause a...
Issue https://wpftoolkit.codeplex.com/workitem/21299 has been created.
View ArticleNew Post: PropertyGrid edit defaults editors
Hi, I have the same issue I would like to add button for all editors in the property grid Is there any way to extend template of all the default editors without creating new editor for each default...
View ArticleNew Post: PropertyGrid edit defaults editors
Hi, Each default editor has its own template. When adding a button or label or any other UIElement, we need to know where to add it and what to add. So the simplest solution is to let the user define a...
View ArticleNew Post: PropertyGrid edit defaults editors
Hi, I am not sure, but it will be great, if we will be able to do like this: Define "EditorTemplateDefinition.ResolveEditor" to get editor control for the specified type For example for String type it...
View ArticleNew Post: Tooltip display for Properties and SelectedObjectTypeName
Hi, Is there a way to enable tooltip when mouse-hover onto the Property Name column and the SelectedObjectTypeName displayed at the top of the PropertyGrid? Currently, if the Property Name is too long,...
View ArticleNew Post: PropertyGrid edit defaults editors
I also had the same problem. I wanted to extend the default editors without declaring a new templatedefinition for each editors. I came with this solution, it isn't pretty and not yet fully tested but...
View ArticleNew Post: PropertyGrid edit defaults editors
Hi cpaulus, It looks amazing! The logic to get default editor is hidden in the internal class PropertyGridUtilities. It would be great to have facilities to get editor control by the value type from...
View ArticleNew Post: PropertyGrid edit defaults editors
Like this void RegisterControl(Binding binding, object val) { UIElement ctl = null; var type = val.GetType(); if (type == typeof(double)) { ctl = new DoubleUpDown(); BindingOperations.SetBinding(ctl,...
View ArticleNew Post: Tooltip display for Properties and SelectedObjectTypeName
Hi Cecilia, Good observation ! Issue https://wpftoolkit.codeplex.com/workitem/21316 has been created,
View ArticleNew Post: Synchronizing with the Grid
Hi BoucherS, I was eventually able to get this to work by calling UpdateLayout on the derived UserControl that contains the DataGridControl. I'm still a bit confused about why this would be though....
View ArticleNew Post: DataGridControl Speed Improvement Suggestions?
I'm currently using the XCeed WPF DataGridControl in a project for a grid with about 60 rows, and about 30~40 columns. It takes about 15 seconds for the grid to be created, and I was wondering if this...
View ArticleNew Post: DataGridControl Speed Improvement Suggestions?
Hi alexchou1984, No, this is not normal to take so much much time loading the DataGrid. Of course, Measurement is a quite big job and must be done as limited as possible. It could be the way you use...
View ArticleNew Post: DateTimePicker close after Year / Month selection
Hi, I use the DateTimePicker with "AutoCloseCalendar=True" option. If I select by mouse a date its working fine. If I click at the Calendar date selection control at the top (eg. "September 2014"), the...
View ArticleNew Post: DateTimePicker close after Year / Month selection
Hi, This issue has been fixed in v2.1. Please use the latest version. It should be fixed.
View ArticleNew Post: Localization of wpf toolkit controls?
The word "Search" in the PropertyGrid can be changed with the property PropertyGrid.FilterWatermark.
View ArticleNew Post: PropertyGrid Collection Editor - Class types for new objects
Thank you it is working fine. I now can get the different Shapes types. The only problem that I am facing now is that the Outline (List of shapes) is not updated with when add shapes. I appreciate a...
View ArticleNew Post: PropertyGrid Collection Editor - Class types for new objects
Hi, When you hit the "OK" button in the CollectionControlDialog, there is a call to CollectionControl.PersistChanges() which is suppose to save the data. What do you mean by "Not Updated" ? Which...
View ArticleNew Post: PropertyGrid Collection Editor - Class types for new objects
Hi, Thank you for your quick reply. I have a list of Pads (listed in a listbox (each pad contains an outline which is a ShapeCollection<ListBox x:Name="PadListBox" Grid.Column="0"...
View ArticleNew Post: PropertyGrid Collection Editor - Class types for new objects
WHat I meant by not updated is that the Pad.Outline doesn't include the new shapes added in the COllectionControl.
View Article