1

I have a problem with tabControl RightToLeftProperty. I have set the RightToLeft property to Yes, and RightToLeftLayout property to true. But I got this result. enter image description here

The text has been moved to right, but the tabs still stay in left, and the text is clickable, but tabs no. What may be the problem ? Thanks for help

Romo Daneghyan
  • 2,099
  • 3
  • 18
  • 23
  • The Visual Styles renderer for TabControl is a bug factory. No repro on Windows 8. Check [this answer](http://stackoverflow.com/a/299983/17034) for a possible workaround. – Hans Passant Jun 10 '14 at 13:26

1 Answers1

1

if you set the "RightToLeft" property to Yes and "RightToLeftLayout" property to true, then the tab should move to the right side. surely it will work. please check your code or post your code.

or

you can do this through code, for example

Point p = new Point();
p.X =  tabControl1.Location.X + 5;
p.Y = tabControl1.Location.Y + 5;
tabControl1.Location = p;
SilverShadow
  • 85
  • 1
  • 9