Hello,
I am making a user control containing a table layout with several labels in it. In the constructor of the user control, I translate the content of the labels (in the language the user defined for the app).
The column where the label is in is defined as autosize, but when the width is larger then as set at development time (because of larger translation), the width of the column does not adjust accordingly. The result is overlapping columns.
How can I resolve this?
I already tried these functions after translating the labels, but they all do not resolve my issue:
-tableLayout.Refresh();
-tableLayout.PerformLayout();
-tableLayout.Update();
-tableLayout.ColumnStyle[1].SizeType = SizeType.AutoSize;
Kind Greetings,
Mim
I am making a user control containing a table layout with several labels in it. In the constructor of the user control, I translate the content of the labels (in the language the user defined for the app).
The column where the label is in is defined as autosize, but when the width is larger then as set at development time (because of larger translation), the width of the column does not adjust accordingly. The result is overlapping columns.
How can I resolve this?
I already tried these functions after translating the labels, but they all do not resolve my issue:
-tableLayout.Refresh();
-tableLayout.PerformLayout();
-tableLayout.Update();
-tableLayout.ColumnStyle[1].SizeType = SizeType.AutoSize;
Kind Greetings,
Mim