New Post: Create an editor for property grid in one project and add refrence...
Hi, It doesn't seems like a bug. Does the informations provided in this post or in this thread : http://wpftoolkit.codeplex.com/workitem/18734 helps ? Can you provide a sample if you still have the...
View ArticleNew Post: Multiple UpdateBindingSource calls with DataGrid
Hi people, Can somebody please acknowledge that this is being verified or not? Thanks,
View ArticleNew Post: Property Grid disable update on keystroke.
Hi, By default, for a property of type double, the editor in the propertyGrid will be a PropertyGridEditorDoubleUpDown, which is a DoubleUpDown. Starting at v2.5, a new property is available for...
View ArticleNew Post: Multiple UpdateBindingSource calls with DataGrid
Hi, First thing I can see : In you XAML, the "xcdg:Column" should be included in a "xcdg:DataGridControl.Columns" tag. After modifying slightly your sample, I have 2 calls to "UpdateSource" and 1 call...
View ArticleNew Post: Multiple UpdateBindingSource calls with DataGrid
Hi, I have toyed a little bit with your sample and when I added a column for the "Name" property, I started to see some more calls to the indexer for the "Quantity" column. When I added yet another...
View ArticleNew Post: Datagrid with Sublist
Hi all! I am testing the extended wpf toolkit right now. What I need to achieve is to display entries in the datagrid, which have a enumerable property. I am already able to display my entries - was...
View ArticleNew Post: Image/watermark disappear in WatermarkTextBox
Hello, old discussion, anyway related to my question: is there the possibility to keep the watermark visible even when the control gain the focus and let it disappears when the text length in the...
View ArticleNew Post: Allow Transparency on Windows is not letting hidden windows open
If we set AllowTransparency on Window to true and then hide some Anchorable section then it wont appear again. Any solution to that
View ArticleNew Post: Datagrid with Sublist
Hi, A column needs to have a type. If the enumerable property has the same type for each entries, it should work :<Window x:Class="WpfApplication46.MainWindow"...
View ArticleNew Post: Image/watermark disappear in WatermarkTextBox
Hi, We already thought of this. It will be possible in v2.7. v2.7 will have a new property : WatermarkTextBox.KeepWatermarkOnGotFocus. When true, the watermark will remains until a character is typed....
View ArticleNew Post: Problems with MessageBox.ButtonRegionBackground in Windows7
Someone wrote :"Hi, I do not succeed to change the background color of the band below the button OK / Cancel of the MessageBox. Is somemone succeed to do that? The printscreen of the example is OK, but...
View ArticleNew Post: Problems with MessageBox.ButtonRegionBackground in Windows7
It looks good in Windows 7 and Windows 8 :<Grid> <Button Content="TEST" Width="150" Height="25" Click="Button_Click_1"/> <xctk:WindowContainer> <xctk:MessageBox...
View ArticleNew Post: Image/watermark disappear in WatermarkTextBox
Hi, great news, thank you! Cheers Giacomo
View ArticleNew Post: Multiple UpdateBindingSource calls with DataGrid
Hi MichelK7, After looking in the DataGrid code, it appears to be a normal behavior to refresh the binding before pushing the value to the user object when a cell is done editing. The reason why the...
View ArticleNew Post: Multiple UpdateBindingSource calls with DataGrid
Good morning Mr. Boucher, Thanks for the reply. The behaviour you explained is more or less what I was 'afraid' of. In my present case, I don't need this checking for errors in other columns. By the...
View ArticleNew Post: PropertyGrid With Int Collection
Hi, how can I use PropertyGrid with a collection of ints? objects used for testing: public enum TestType { One, Two, Three } public class Other { public string Identifier { get; set; } public string...
View ArticleNew Post: PropertyGrid With Int Collection
Hi, when using "List of something", we will set the editor as a CollectionEditor. This CollectionEditor will be the regular CollectionEditor for "object" (like a List<Car>) or a...
View ArticleNew Post: DataGridControl Speed Improvement Suggestions?
Hi, After taking over half-a-year off, I've returned to investigating this performance issue. The loading time definitely seems to be proportional to the number of columns we have. I have checked my...
View ArticleNew Post: DateTimePicker popup on TextBox click
A user ask :"Is it possible to trigger the dropdown on clicking the Textbox in the control."
View ArticleNew Post: DateTimePicker popup on TextBox click
You could create your own DateTimePicker and listen to the TextBox.PreviewMouseLeftButtonUp to open the popup : public class MyDateTimePicker : DateTimePicker { public override void OnApplyTemplate() {...
View Article