New Post: CollectionControl binding
Hi Make sure your "clsMaterial" and "clsMaterial2" derives from the same "clsBaseMaterial". And that your "clsConstruction" works with the "clsBaseMaterial".
View ArticleNew Post: PropertyGrid Collection Editor - Class types for new objects
Thanks for your reply,The List<shape> property is inside another object.Class Picture{String name[editor....List<shape> outline} Is there a way to define editor type that inherits from...
View ArticleNew Post: CollectionControl binding
This works. I had forgotten to add the Inherits statements to my derived classes. Whoops! Thanks very much (again!).
View ArticleNew Post: AutoMoveFocus
Hi, AutoMoveFocus can be used with AutoSelectTextBox's MaxLength property to jump to next control when MaxLength is reached. For other controls (like IntegerUpDown), AutoMoveFocus allows navigating the...
View ArticleNew Post: Pass property changes in ObservableCollection back to...
Is it possible to pass changes made to properties in an ObservableCollection back to the main CollectionControl? Suppose I have a simple CollectionControl defined...<Window x:Class="MainWindow"...
View ArticleNew Post: Pass property changes in ObservableCollection back to...
Hi, Simply listen to changes on the collection to be notified of collection changes and raise the propertyChange on TotalThickness :public clsConstruction() { myDescription = "New Construction";...
View ArticleNew Post: PropertyGrid Collection Editor - Class types for new objects
Hi, You can use an EditorTemplateDefinition to specify which editor a property will get :<Window.Resources> <local:Holder x:Key="myListOfTypes" /> </Window.Resources> <Grid>...
View ArticleReviewed: Extended WPF Toolkit - 2.2.0 (Aug 17, 2014)
Rated 2 Stars (out of 5) - Binary Release is NOT Community Release.
View ArticleNew Post: Pass property changes in ObservableCollection back to...
Thanks. Is it possible to bind one collectioncontrol to another? So for the above example, the LayerCollection is a separate CollectionControl rather than one which pops out from the...
View ArticleNew Post: PropertyGrid edit defaults editors
Hello, I would like to edit the template of all the default editors in the property grid. Basically, I want to add a label after the editor to display some information. Do you have any idea how I could...
View ArticleNew Post: Synchronizing with the Grid
Thanks to BoucherS's wonderful help with my previous questions, I was able to make a lot of progress with my project. However, right now I'm having a minor problem: how can I synchronize my program...
View ArticleCreated Unassigned: BusyIndicator size problem with binding [21239]
The BusyIndicator got a problem with the width and binding.When you got a big string as BusyContent and then you change it later on with a smaller string. The width used is still from the long string.I...
View ArticleNew Post: Multiline TextEditor keyboard focus on dropdown
Hello, thanks for your replay. Anyway, I can't figure out how to achieve my goal. I put your code line (in vb.net) into the GotFocus event of the MultiLine TextEditor (I called it mltbContenitori) like...
View ArticleNew Post: Pass property changes in ObservableCollection back to...
Is the way to do the above, to edit the underlying definition of the CollectionControl somehow? e.g. If the TargetProperty is LayerCollection it is not displayed in the property grid but in a separate...
View ArticleNew Post: datagrid sorting problem
Is there a way to make a datagrid ALWAYS sort by the group selections first when those group selections are being made at runtime by the user. I basically need to be able to sort by any column but I...
View ArticleNew Post: Multiline TextEditor keyboard focus on dropdown
Hi, The line should be added in the virtual method "MultiLineTextEditor.OnIsOpenChanged( bool oldValue, bool newValue )". The Line :Dispatcher.BeginInvoke(new Action(()=>_textBox.Focus()),...
View ArticleNew Post: Multiline TextEditor keyboard focus on dropdown
Hi, thanks for the details, I was able to achieve the goal.
View ArticleNew Post: Pass property changes in ObservableCollection back to...
I managed to get the desired effect using converters. There is probably a much more concise and elegant solution but for anyone who is interested: XAML:<Window x:Class="MainWindow"...
View ArticleNew Post: datagrid sorting problem
Hi, In the DataGrid, sorting is done in the grid and can't be done only within groups. The reason why the grid could be jumping all over the screen may be because the current item wants to stay on...
View ArticleNew Post: CheckComboBox and IDataErrorInfo and INotifyPropertyChanged
Thanks for the suggestion, but it doesn't address the issue. Sorry.
View Article