I have a form, two buttons and a few text boxes
when the localization is false, I can see all the properties of the form elements in InitializeComponent method of the form.
Now when I set the localization property to true, few of the properties are moved to resource file, but not all(like UseVisualStyleBackColor, ForeColor, Cursor etc are not moved to resource file).
Now my questioins are:
- on what basis the properties are moved to resource files (general assumption is it should either be all or none)?
- also why is it that the Visual Studio resource editor(one appears on double clicking the resx file) doesn't show all the properties in it(ie., AutoSize, Size, TabIndex etc are not shown but you can find them if you open the file with an xml editor)?
- and why some properties (which are shown in resource editor) have preceding
>>
characters?