Announcement

Collapse
No announcement yet.

Horizontal scrollbar even if you use Grid.ExpandLastColumn

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • Horizontal scrollbar even if you use Grid.ExpandLastColumn

    Hi! I added a Grid object and used Grid.ExpandLastColumn to make it fit in the object. But if you add more lines you get a horizontal + vertical scrollbar even if there is nothing on the right side. After adding the new lines I used "Grid.ExpandLastColumn("MessageGrid", true);" but it does not make it a few pixel smaller to remove the horizontal unneded scrollbar.

    Is there another easy way to automatically make the columns fit without an unnecessary scrollbar from left to right? If there are only a few lines it works but if you add more lines its broken.
    Bl4ckSh33p-Soft - Custom Software and Indie Games

  • #2
    If you can, please post a small sample project illustrating the problem. This will save time needed to understand and replicate the issue.

    Ulrich

    Comment


    • #3
      try
      Grid.AutoSize
      then
      Grid.ExpandLastColumn

      Comment

      Working...
      X