Commented Issue: CheckComboBox: Display bug [19361]
Hi,using the checkcombobox, there is a display bug when the classic windows theme is used. Even if checked, the selected item(s) will be displayed as being unchecked. See screenshot included as...
View ArticleNew Post: CollectionControl binding
I must be doing something wrong again with CollectionControls but I can't get it to bind properly. Using the following code I expected to see the myConstruction.LayerCollection.Count increase after the...
View ArticleCommented Issue: CheckComboBox: Display bug [19361]
Hi,using the checkcombobox, there is a display bug when the classic windows theme is used. Even if checked, the selected item(s) will be displayed as being unchecked. See screenshot included as...
View ArticleNew Post: CollectionControl binding
Hi, Try calling CollectionControl1.PersistChanges(); It will save the data added.
View ArticleNew Post: CollectionControl binding
Thanks. I added Private Sub CollectionControl1_ItemAdded(sender As Object, e As Xceed.Wpf.Toolkit.ItemEventArgs) Handles CollectionControl1.ItemAdded CollectionControl1.PersistChanges() End Sub Private...
View ArticleNew Post: CollectionControl binding
Also are there equivalents to ItemAdded and ItemDeleted to capture the events when the user presses the up/down arrows to move items in the CollectionControl up/down the listbox?
View ArticleCommented Unassigned: MessageBox Exception in Xceed but not in WinForms. [21046]
Hello all,__first I have to say thank you for this toolkit ! It is awesome !!__I have found an issue when I wanted to replace the MessageBox of WinForms with the Xceed Message Box.I am starting with...
View ArticleCommented Unassigned: MessageBox Exception in Xceed but not in WinForms. [21046]
Hello all,__first I have to say thank you for this toolkit ! It is awesome !!__I have found an issue when I wanted to replace the MessageBox of WinForms with the Xceed Message Box.I am starting with...
View ArticleNew Post: AutoMoveFocus
Can any one show me how to use the AutoMoveFocus property on the IntegerUpDown control? If it set to true, how do i get it to move focus when a particular condition is met?
View ArticleNew Post: CollectionControl binding
Hi yt2014, When talking about editing object from different classes, is it just a matter of adding the wanted class type in "CollectionControl1.NewItemTypes" ? For the events raised when...
View ArticleCommented Unassigned: MessageBox Exception in Xceed but not in WinForms. [21046]
Hello all,__first I have to say thank you for this toolkit ! It is awesome !!__I have found an issue when I wanted to replace the MessageBox of WinForms with the Xceed Message Box.I am starting with...
View ArticleNew Post: CollectionControl binding
I have added a different class type, clsMaterial2, in CollectionControl1.NewItemTypes. wherePublic Class clsMaterial2 Implements INotifyPropertyChanged Public Event PropertyChanged As...
View ArticleCreated Unassigned: No events for MoveUp MoveDown in CollectionControl [21227]
There are no events for the MoveUp and MoveDown controls in the CollectionControl class.It would be useful to have these so that if the ordering of items in a collectioncontrol is important the...
View ArticleNew Comment on "BusyIndicator"
I would like to know how other seem to be able to get this control to work? I've followed the instructions to the letter, and it doesnt work. I keep getting an error - "xctk:BusyIndicator was not...
View ArticleNew Post: Property Grid Editors for Enum and Object properties
Hi all, I just wanted to know which are the default editors for properties of type Enum and object (with ExpandableObject annotation). I know that when I use an enum it shows a ComboBox (or similar)...
View ArticleEdited Issue: MessageBox Exception in Xceed but not in WinForms. [21046]
Hello all,__first I have to say thank you for this toolkit ! It is awesome !!__I have found an issue when I wanted to replace the MessageBox of WinForms with the Xceed Message Box.I am starting with...
View ArticleCommented Issue: MessageBox Exception in Xceed but not in WinForms. [21046]
Hello all,__first I have to say thank you for this toolkit ! It is awesome !!__I have found an issue when I wanted to replace the MessageBox of WinForms with the Xceed Message Box.I am starting with...
View ArticleNew Post: PropertyGrid Collection Editor - Class types for new objects
I have a List<Shape>. many shapes inherit from Shape. For example, rectangle, circle. Collection Editor will only allow to add an object of type Shape. How to add the different classes to the...
View ArticleNew Post: PropertyGrid Collection Editor - Class types for new objects
Hi, Try thisCollectionControlDialog diag = new CollectionControlDialog(); diag.ItemsSource = myShapeList; diag.NewItemTypes = new List<System.Type>() { typeof( MyCircle ), typeof( MyRectangle )...
View ArticleCommented Issue: MessageBox Exception in Xceed but not in WinForms. [21046]
Hello all,__first I have to say thank you for this toolkit ! It is awesome !!__I have found an issue when I wanted to replace the MessageBox of WinForms with the Xceed Message Box.I am starting with...
View Article