
Announcements
Hi,
I currently have a gallery that contains container like this:
What I want to do is I want to make the container have auto-height if Label5_8 has many texts.
I set the Lable5_8 auto height as true, but I think it's more to do with gallery template size or container..?
Gallery10 and Container12's height are set to 40 for now, but I tried putting int Lable5_8.Height, but it didn't work.
Any inputs will be appreciated, thank you!
Hi @pinball2,
You will need a flexible height gallery, not a regular vertical gallery. That type of gallery will automatically adjust it's individual TemplateSize depending on the needed space for that particular row.
In addition to a flexible height gallery, the Container12's Height property will need to be dependent on the Auto-Height label's current Height:
//Use Label5_8's Height - with the minimum value being 40
Max(40, Label5_8.Height)
If this solves your question, would you be so kind as to accept it as a solution & give it a thumbs up.
Thanks!