New Post: Property Grid with ComboBox
Hi, I am trying to implement an editable combobox inside of my propertygrid and I am stuck on a couple of issues. I have the following XAML code to make the combobox editable:<xctk:PropertyGrid...
View ArticleNew Post: DataGrid CurrentItem null
This behavior is as expected. When a fixed header or footer within the grid is focused, the DataGrid current item becomes null. Workarounds would be to set your button as "Focusable=false" or use the...
View ArticleNew Post: DataGrid styling not possible for some components
The following are fixed headers:ColumnManagerRow GroupByControl And can be styled by targeting their corresponding type. Column is not a control and cannot be styled. But Cells within a column can be...
View ArticleNew Post: DataGrid first row - remove highlighting
The initial grey is the color of the SelectedRow when the DataGrid does not have the focus.
View ArticleNew Post: DoubleUpDown accuracy problem
You can find your answer here:http://stackoverflow.com/questions/618535/what-is-the-difference-between-decimal-float-and-double-in-c
View ArticleNew Post: Propertygrid password
Can't you add a EditorTemplateDefinition that contains a PasswordBox ?
View ArticleNew Post: Using DataGrid in Windows Store apps
Windows Store Apps need to be developped under WinRT which is similar but not the same WPF. Just like Silverlight is not the same as WPF. So no, no WPF code can be used inside a Windows Store App.
View ArticleNew Post: Propertygrid password
I ended up using an ITypeEditor:public class PasswordEditor : Xceed.Wpf.Toolkit.PropertyGrid.Editors.ITypeEditor { Xceed.Wpf.Toolkit.PropertyGrid.PropertyItem m_PropertyItem; PasswordBox m_PasswordBox;...
View ArticleNew Post: WPF Toolkit Propertygrid - how to use a property collection
The Plus edition of the PropetyGrid support to provide properties as a "list" instead of having to provide a compile-time static definition.
View ArticleNew Post: DecimalUpDown FormatString
You may have issues when editing when using this method. A workaround is described in this issue:https://wpftoolkit.codeplex.com/workitem/18890
View ArticleNew Post: SplitButton drop down content and relative data binding
Actually - DataContext, RoutedEvents, RoutedCommands don't cross Popup's boundary by default. However this problem can be solved somehow by adding Popup as a logical child of it's parent control which...
View ArticleNew Post: Property Grid with ComboBox
Hi, 1) Please do the following :[ItemsSource( typeof( MyValuesItemsSource ) )] public string MyValues { get; set; }<xctk:PropertyGrid x:Name="_propertyGrid" Width="450" Margin="10">...
View ArticleNew Post: PropertyGrid
The Xaml designer is throwing the following error:"Cannot modify TargetProperties once the definition has beed added to a collection." on this line.<xctk:EditorTemplateDefinition...
View ArticleNew Post: Setting TargetProperties on a PropertyGrid EditorTemplateDefinition
Hello, I have the following C# code: public partial class MainWindow : Window { public MainWindow() { InitializeComponent(); And andGate = new And("And"); andGate.Values = new ValuesClass();...
View ArticleNew Post: PropertyGrid Expand Collection
Hello! I'm using PropertyGrid control for displaying properties of my objects. The problem is that I have a collection of objects and I haven't managed to expand it. I've already played enough with...
View ArticleNew Post: How to disable Zoombox scaling on content resize?
I have the same problem. I would like to block the OnContentSizeChanged in order to keep the same view without changing scale.
View ArticleNew Post: PropertyGrid Expand Collection
Hi, Like you said, if you have an object you want to be expandable, you need to decorate it with the ExpandableObject Attribute. An example is shown in the LiveExplorer of the toolkit available on this...
View Article