New Post: Populate Select types combo in CollectionEditor with NewItemTypes
Hi, Try adding CollectionControl1.NewItemTypes = new List<System.Type>() { typeof( Person ) }; and you'll end up with Person in the ComboBox. If you have a class "Man" deriving from "Person" and...
View ArticleNew Post: Binaries are not copied to output directory... ever...
Other people seem to be noticing this issue, but it seems no matter how I reference this library, it refuses to copy itself to the output directory. I've set CopyLocal to true, I've triple-checked the...
View ArticleNew Post: Use InteractionRequestTrigger in wpf desktop
Thanks, I read about these classes, but I need functionality to move ChildWindow without borders of WindowContainer for full user screen. Can I use ChildWindow without WindowContainer?
View ArticleNew Post: Use InteractionRequestTrigger in wpf desktop
Yes, you can use childWindow without WindowContainer, but it's an obsolete way of using childWindows. The current way of using modal child windows is within a WindowContainer where the modal will be...
View ArticleNew Post: Wpf DataGridControl + ComboBox editor in a column - how to clear...
Hi, I am using Extended WPF Toolkit 2.0.0 and the DataGridControl. One of columns in the grid uses ComboBox as the cell editor (set up using Column.CellEditor). The Column is bound to a navigational...
View ArticleNew Post: Wpf DataGridControl + ComboBox editor in a column - how to clear...
I found a way of clearing the field and it is a better UX for the user but still I don't think it is "the proper" solution (?). What I do now is: on the button click (the button which is placed...
View ArticleNew Post: Populate Select types combo in CollectionEditor with NewItemTypes
Many thanks for your reply. I am using VB .NET and so translated your solution. I add the following line:CollectionControl1.NewItemTypes = New List(Of System.Type)() From {GetType(Person)} This works...
View ArticleNew Post: Populate Select types combo in CollectionEditor with NewItemTypes
Hi, The "Add" button should be enabled when you set the CollectionControl1.NewItemTypes. Here are the possibilities why the "Add" button can be inactive : -CollectionControl is ReadOnly. -Person class...
View ArticleNew Post: Styling TimePicker
Is there an easy way to style the drop-down button and drop-down list of the TimePicker? I want to use it with the modern UI project
View ArticleNew Post: Property to be checked by default in CheckComboBox
Hi, What is the Property to be set in CheckComboBox be default in WPF.Here is my code<xctk:CheckComboBox x:Name="_combo" Style="{StaticResource CheckComboBoxStyle}" HorizontalAlignment="Center"...
View ArticleNew Post: Populate Select types combo in CollectionEditor with NewItemTypes
Thanks very much. I had forgotten the parameterless constructor. One (hopefully) final question: Is it possible to give an alias to the class name such that this alias appears in the combo box rather...
View ArticleNew Post: Property to be checked by default in CheckComboBox
Hi, You can create a new Collection based on the ItemSource and pass it to CheckComboBox.SelectedItemsOverride ;ObservableCollection<UserObject> newCollection = new...
View ArticleNew Post: Populate Select types combo in CollectionEditor with NewItemTypes
Hi, For the moment, No. The text that will appear in the ComboBox is the Name of the Type ( a Person in this case ). But if you really need this, create an issue and we will look at it when we have...
View ArticleNew Post: Styling TimePicker
Hi, You will have to redo the template of the TimePicker that you can find here : -Xceed.Wpf.Toolkit/TimePicker/Aero2.NormalColor.xaml (in Windows 8) -Xceed.Wpf.Toolkit/TimePicker/Generic.xaml (in...
View ArticleNew Post: PropertyGrid Categorization with Access Modifiers
I'm trying to hook up a Propertygrid to a class that I have. I've been trying to sort the properties by category by decorating them with with the Category attribute. However, I've found that those...
View ArticleNew Post: PropertyGrid Categorization with Access Modifiers
Hi, From a small sample project where the PropertyGrid.SelectedObject = MyClass, I can see that only the public properties are displayed in the propertyGrid. Here's the reason : in...
View ArticleNew Post: PropertyGrid Categorization with Access Modifiers
Hi, thanks for the follow up. Could an option be added to control that restriction? In my own reflection, I've been using: .GetProperties(BindingFlags.Instance | BindingFlags.NonPublic |...
View ArticleNew Post: WPF Toolkit - Cannot find resource when installing on test machine
Can you write a more detailed explanation to how resolve this issue? Thank You Lorenzo
View ArticleNew Post: AvaonDock MVVM programmatically adding a new document to a new pane
I am writting a new application using MVVM which will host a number of views of a document. When I open the document I want to display all available viewmodels in a tiled manor: specifically a Contents...
View ArticleNew Post: PropertyGrid Categorization with Access Modifiers
Issue https://wpftoolkit.codeplex.com/workitem/20731 has been created.
View Article