Strange use of MultiLang resources in InitializeComponent()
Occasionally, users have reported that strange code was generated in the function InitializeComponent(), using resource strings from MultiLang.resx, such as:
this.labelX9.BackgroundStyle.Class = global::YourProject.MultiLang._668;
Typically, this code would not compile.
For a long time, I was unable to reproduce this problem. Now, I think that I have understood the problem, and I have written a long article about it which you can access via the Articles menu, or here.
A contributory factor was an error in the version for Visual Studio 2010, in recognizing extended properties (such as Tooltip on Tooltip1). This error is fixed in version 4.72.0012, which should recognize these properties correctly.
Phil