is there a Form.Language property ?

  • Thread starter Thread starter Uri Dor
  • Start date Start date
U

Uri Dor

Hi, y'all,
The designer shows me a Language property on my Windows.Forms.Form.
The thing is I can't find such a property in the object browser.

Any insight?
 
This property is one that is added at design time only by the IDE. The
Localizable property is also added at design time and both of these together
assist you in creating world-ready applications.

Selecting a specific language causes the IDE to create and initialize
resource files that are coded for that language. Your resources will then be
stored in the resource set provided. For example selecting "French (French)"
for a standard Windows Forms application creates resources that are called
Form1.fr.FR.resx etc.

--
Bob Powell [MVP]
Visual C#, System.Drawing

All you ever wanted to know about ListView custom drawing is in Well Formed.
http://www.bobpowell.net/currentissue.htm

Answer those GDI+ questions with the GDI+ FAQ
http://www.bobpowell.net/gdiplus_faq.htm

Read my Blog at http://bobpowelldotnet.blogspot.com
 
Back
Top