New Post: DataTemplate and CurrentCulture
Hi, I understand what you say. But the property "ValidationDouble2" is a double and if you don't use a DataTemplate in the PropertyGrid's EditorDefinitions for type "Double", the default editor will be...
View ArticleNew Post: DataGridControl Speed Improvement Suggestions?
Hi alexchou, As I said earlier, adding a column after the grid is loaded could be costly. You could try to set the table static and see what happens, but I suspect a greater loading time since all the...
View ArticleNew Post: AvalonDock and MVVM CodeProject not working with latest AvalonDock
I am trying to get the AvalonDockHost created in the Code Project article "AvalonDock and MVVM" (which uses AvalonDock 1.3) to work with the latest version of AvalonDock.. In my app I want to be able...
View ArticleNew Post: DataTemplate and CurrentCulture
HiBoucherS wrote: If you use a DataTemplate in the PropertyGrid's EditorDefinitions for type "Double" that is a TextBox, there need to be a conversion "double-string" (maybe the default converters...
View ArticleNew Post: DataTemplate and CurrentCulture
Small Update: The same control PropertyGridEditorDoubleUpDown behaves differently when used outside of the data template and outside of it. (See sample code, try it with german language settings)...
View ArticleCreated Unassigned: Bug in DescriptorPropertyDefinition, DataTemplate value...
As a result of this discussion (see https://wpftoolkit.codeplex.com/discussions/639720), I did some debugging and I found the bug: The DescriptorPropertyDefinition class which creates the binding to...
View ArticleNew Post: DataTemplate and CurrentCulture
Further investigation turned out that this must be a bug. The binding that the propertygrid's DescriptorPropertyDefinition is doing does not set a converterCulture. So it's null and always the default...
View ArticleEdited Issue: Bug in DescriptorPropertyDefinition, value binding ignores...
As a result of this discussion (see https://wpftoolkit.codeplex.com/discussions/639720), I did some debugging and I found the bug: The DescriptorPropertyDefinition class which creates the binding to...
View ArticleNew Post: Howto Check if a propertyGrid has Validation Errors
Hi, maybe a stupid question, but how can I check (from code behind) if any of the propertyGrid items has a validation error? I can see that the validation failed (get the red border etc). But how can I...
View ArticleNew Post: DataGridControl Speed Improvement Suggestions?
Hi BoucherS, By setting the CanContentScroll style to true, is this mainly doing UI or data virtualization, and should ColumnVirtualization be enabled separately? In the case of a statically declared...
View ArticleNew Post: Howto Check if a propertyGrid has Validation Errors
Ok, got it: PropertyItemCollection prop = (PropertyItemCollection) propertyGrid.Properties; bool validationError = prop.Any(p => p.GetBindingExpression(PropertyItem.ValueProperty).HasValidationError);
View ArticleNew Post: DataGridControl Speed Improvement Suggestions?
Hi, When setting CanContentScroll style to True, it will enable UI Virtualization. Only the displayed cells will be loaded. By default, the DataGrid uses virtualization for columns and rows. You don't...
View ArticleNew Post: DataGridControl Speed Improvement Suggestions?
Yeah, the reason I went with disabling virtualization was precisely because I knew the datasource is mostly going to be a fixed size. Enabling the virtualization made a big impact on the initial load...
View ArticleNew Post: Not able to save value in WPF PropertyGrid collection control.
Hello Guys, I need help in fixing the issue. I have a class with property as shown below, /// <summary> /// To verify assembly and there versions /// </summary>...
View ArticleNew Post: ZoomBox - Scrollbars
Hi,You helped me last year with a question about PropertyGrid.I have a question about Zoombox.In the documentation there is the propertyIsUsingScrollBarsPropertyBut it seems it is not yet...
View ArticleNew Post: ZoomBox - Scrollbars
Hi, In v2.5, the new Property zoomBox.IsUsingScrollbars can be set to true to display scrollbars that will let user scroll a zoomed content. Currently, the available versions of the Toolkit are : -v2.4...
View ArticleNew Post: ZoomBox - Scrollbars
Thank you so much for your quick reply.Do you have an idea when the V2.5 will be available for community users?ThanksMary
View ArticleNew Post: ZoomBox - Scrollbars
Hi Mary, I don't have an exact date, but it shouldn't too long for v2.5 Community since v2.7 just went out for Plus users 2 weeks ago.
View ArticleCreated Unassigned: CheckComboBox loses values when scrolled out of view [21917]
I am using a CheckComboBox within a ListView/GridView column, defined as follows...```<GridViewColumn Header="Surcharges"> <GridViewColumn.CellTemplate> <DataTemplate>...
View Article