vote up 1 vote down star
1

hi all, i'm new to C#. and just playing around with the UserControl feature. my problem is that i am writing an RTL app (hebrew). when i made a Form with panels in it, containing some TextBox'es & Labels next to them, the alignment at run-time appeared exactly as in design-time. when i took the same panel & put it in a new created UserControl, some problems occured.

my guess is that i don't understand how to make the UserControl behave as a Container.

what am i missing?

thx

flag
1  
I've never much trusted the designer view in Visual Studio. When a page grows in complexity, the designer view is increasingly WRONG about how things appear in a real browser. I always look at the page in an actual browser, at least those I want to support with my app. – SirDemon Oct 31 at 12:39

1 Answer

vote up 1 vote down

I suggest you to read How to make a UserControl object acts as a control container design-time by using Visual C#, it's very good to learn and I'm also reading it(I'm curious about this).

link|flag
Useful read indeed. :) – o.k.w Oct 31 at 12:42
hi Nathan, after spending hours over hours... the problem solved by setting the AutoScaleMode property, in UserControl class, to 'none'. the default is 'font'. thx anyway! – shayke23 Oct 31 at 12:55
You're welcome! – Nathan Campos Oct 31 at 13:12

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.