TextField - Doesn't keep text alignment while window resizing
See original GitHub issueI created a text field like this inside a frameview:
TxtServerUrl = new TextField(linuxServiceSettings.ServerUrl) { X = leftTextBoxes + X_SEPARATOR, Y = Pos.Top(LblServerUrl), Width = Dim.Fill(margin), Enabled = false }; TxtServerUrl.TextAlignment = TextAlignment.Left; Add(TxtServerUrl);
and it shows the text ok, but while resizing the window (using the mouse, or clicking on maximize and minimize), the text isn´t shown from the left to the right as expected (i also have a label containig long text and it works as expected) instead it shows always like from right to left and at some point it starts showing the whole text while enlarging, but not exactly after having enough room.
Tested it running from VS 2022 but also on Ubuntu 20.04 with desktop .
Issue Analytics
- State:
- Created a year ago
- Comments:5
Top GitHub Comments
Raising issues is always helpful, it provides answers for future users as well as identifying any areas of the API that are confusing. No need to apologies!
Thank you, sorry for the inconvenience!