Hi,
When I open-up a form which a bunch of controls (partly custom controls) on it, they are immediately marked as having been changed in Source-Control. I then open-up the resx file which seems to be the source of the problem and I get the following error:
Code generation for property 'DesignTimeLayout' failed. Error was: 'Unable to cast object of type 'Janus.Windows.GridEX.GridEXLayout' to type 'Janus.Windows.GridEX.GridEXLayout'.'
After hitting OK, if I jump into the form, then back into the RESX, the corresponding layout-strings are gone. They are readable and ok, though!
If I compile and run the program, everything is fine and the properties are read and the grid displays fine. Also this problem only seems to occur once in a while. At which point it's very tricky to resolve again: I must preserve the original layout by copying the data from the RESX file before they disappear, then create the DesignTimeLayout (an XML structure) again by doing something in the grid which causes this property to be serialized again. Then I replace the serialized value with my preserved one to restore the design-time layout.
Has anyone experienced this?