New Post: IntegerUpDown (v1.7) - IsEditable?
I would do a derived class and access and override the IsReadOnly value to false. in OnApplyTemplate, => TextBox.IsReadOnly = true;
View ArticleNew Post: IntegerUpDown (v1.7) - IsEditable?
Thanks for your mention about the "IsEditable" reference in the docuementation. I have created a task to address this before the next version.
View ArticleNew Post: MaskTextBox 1.9.0 does not work without "Xceed.Wpf.Toolkit"
Maybe theses may address your need:http://www.microsoft.com/en-us/download/details.aspx?id=17630http://ilmergegui.codeplex.com/
View ArticleNew Post: Remove "Powered by Xceed" header
Hi, Very good your program...but I have a problem, no work !!!<Grid> <avalonDock:DockingManager x:Name="DockManager"> <avalonDock:LayoutRoot> <avalonDock:LayoutPanel...
View ArticleNew Post: PropertyGrid for objects in linked projects
Hi there, I've been trying to get a PropertyGrid to allow editing of an object from a library (a game engine) in an application, without specifying anything UI specific in the library project. I've hit...
View ArticleNew Post: PropertyGrid for objects in linked projects
Ah I think I see what I've been doing wrong... Looks like I've been using the PropertyGrid like an old Windows.Forms property grid, instead of trying trying to use PropertyDefinitions and the...
View ArticleNew Post: PropertyGrid for objects in linked projects
Use the PropertyGrid.EditorDefinitions property. Add an EditorDefinition, set the property name on the "Name" property. You will have to add a template in it. See examples in the Sample App.
View ArticleNew Post: Change background color IsModal set to true
How can I change the background color that comes when IsModal set to true ? I would like it to seem like a ShowDialog behavior, thanks
View ArticleNew Post: Zoombox with scrollbars
I have tried everything trying to make scrollbars show in order to pan the contents of the Zoombox. I had no luck. Any help will be appreciated. Thanks!
View ArticleNew Post: Change background color IsModal set to true
In the ChildWindow, the Background color used when the property IsModal is set to true is the OverlayBrush/OverlayOpacity properties.
View ArticleNew Post: CheckComboBox with MVVM
What is the scenario where you are getting an error while cleaning the itemsSource ? Can you provide a code snippet ?
View ArticleNew Post: PropertyGrid for objects in linked projects
Ah I think I've found out the problem - nothing to do with the setup for my PropertyDescriptors, PropertyGrid or ICustomTypeDescriptor... I had an GetFocus event on the tab with the property grid, it...
View ArticleNew Post: Remove "Powered by Xceed" header
mikejr83 wrote: I wrote a little blog post that allows you to have an extension method that can be used during the onload of your view to hide the adorner layer that shows the watermark. This is a...
View ArticleNew Post: DataGrid: Server-side paging and -grouping
How can I use the DataGrid to support Server-Side paging/grouping in a MVVM / Client-Server Application. I have a huge list of articles - but the application should be use via VPN from remote hosts. So...
View ArticleNew Post: DataGrid: Server-side paging and -grouping
Check the documentation from the commercial package here: http://doc.xceedsoft.com/products/XceedWpfDataGrid/ Look at the sections on Data Virtualization. Odi
View ArticleNew Post: Combine Custom Editor Attribute and EditorDefinition?
How do I go about attaching a custom editor (attribute on a property) to the text field in an EditorDefinition?
View ArticleNew Post: Put PropertyGrid attributes/interfaces into separate assembly
I often will have a model/business layer that doesn't know about WPF or any view layer. It'd be nice to have the attributes/interfaces associated with the property grid in a separate assembly so you...
View ArticleNew Post: Put PropertyGrid attributes/interfaces into separate assembly
I totally agree. I have a library that needs the attributes, but is used from both windows forms and wpf. It would be nice to have those attributes separate.
View ArticleNew Post: PropertyGrid - Programmatically registering a custom editor
Hi there, I'm trying to build a custom editor for a property getting added in to a PropertyGrid instance, but haven't been able to register it correctly. My custom editor, TextureEditor creates a Grid...
View Article