View List

I have winforms UserControl(UC) with TableLayoutPanel(TLP). This panel has 2 columns and 1 row and is docked to fill the entire UC. Inside each column there is a TLP GroupBoxthat is also set to dock.Fill. Finally, I have ListViewinside each group field, which is also pinned to fill.

I have a list A in the left column and as a list B in the right column. I tested my application on several computers without any problems. But on one screen, the list of computers is switched, so they are displayed: B | A instead of A | B

Does anyone have an idea what could be causing this.

I apologize if the explanation is fuzzy, or is it some kind of trivial thing, I just never experienced this before.

+4
source share
1 answer

Try creating a form property RightToLeft = true. I checked it and succeeded.

0
source

All Articles