I have a Server/Client project with WCF communications and sharing a dll between both with Contracts and objects:
Problem: when object is having: class A { public ISomeinterface PropertyName { get; set; } } and then an instance of that class is assigned to propertyGrid.SelectedObject = new A();
All PropertyGrid examples I have seen allow the user to edit a single object, which PropertyGrid scans by reflection. I would like the user to be able to edit, for example, an ini file or a plain-old
Is it possible a property grid could be shared between two forms? Right now, when the grid initializes and shown in a form开发者_开发技巧, everything\'s fine.
Does setting PropertyGrid.SelectedObject = null; effects the actual object? eg: Button b = new Button();
We have an object that is assigned to开发者_如何学Python a PropertyGrid using the SelectedObject property of the PropertyGrid. This object contains a few properties which get updated by code in variou
How do I show a PropertyGrid instead of a context menu, so when the user clicks somewhere else, it will hide (like a context 开发者_高级运维menu)?You could wire the loss of focus to this action. It\'s
I\'m trying to figure out the right way to do this. I have a WinForms app that is using a PropertyGrid as one of the controls; I\'m using the .SelectedObject property to assign the appropriate objec
I would like 开发者_StackOverflow社区to implement a custom Windows-Forms based control similar to the Visual Studio property grid. For this, albeit much simpler. I would ideally like to replicate the
I\'m trying to write a simple property grid to allow the users to modify the colours of a Chart. By default, a Chart has a \"Palette\" property, which is of the enumeration type \"ChartColorPalette\".