The Artima Developer Community
Sponsored Link

.NET Buzz Forum
[Problem and solution] Right-to-left menus get scrambled when form is maximized

0 replies on 1 page.

Welcome Guest
  Sign In

Go back to the topic listing  Back to Topic List Click to reply to this topic  Reply to this Topic Click to search messages in this forum  Search Forum Click for a threaded view of the topic  Threaded View   
Previous Topic   Next Topic
Flat View: This topic has 0 replies on 1 page
Roy Osherove

Posts: 1807
Nickname: royo
Registered: Sep, 2003

Roy Osherove is a .Net consultant based in Israel
[Problem and solution] Right-to-left menus get scrambled when form is maximized Posted: Jun 7, 2004 3:10 PM
Reply to this message Reply

This post originated from an RSS feed registered with .NET Buzz by Roy Osherove.
Original Post: [Problem and solution] Right-to-left menus get scrambled when form is maximized
Feed Title: ISerializable
Feed URL: http://www.asp.net/err404.htm?aspxerrorpath=/rosherove/Rss.aspx
Feed Description: Roy Osherove's persistent thoughts
Latest .NET Buzz Posts
Latest .NET Buzz Posts by Roy Osherove
Latest Posts From ISerializable

Advertisement
Lots of weird things happen when you try to develop a right-to-left internationalized software package.
For example, You *think* your menus on the main form are fine, in a right-to-left state, but when you *maximize* the form all the menus suddenly are re-ordered left-to-right. Like magic.
 
How to fix it - though it seems really stupid- it works. In this example I am making my form maximized from code along with the lines that changes the menus back to their rightful state:
 

private void Form1_Load(object sender, System.EventArgs e)

{

this.WindowState = FormWindowState.Maximized;

// WORKAROUND RightToLeft Problem

this.OnRightToLeftChanged(EventArgs.Empty);

}

 

 

Read: [Problem and solution] Right-to-left menus get scrambled when form is maximized

Topic: Making of TechEd bubbles using Microsoft Expression 3 Preview (free) Previous Topic   Next Topic Topic: Microsoft sponsors the Telerik r.a.d.editor MCMS edition - no cost to all customers of Microsoft...

Sponsored Links



Google
  Web Artima.com   

Copyright © 1996-2019 Artima, Inc. All Rights Reserved. - Privacy Policy - Terms of Use