
Announcements
Hello,
I would like change properties when I click on button.
For exemple I have BrowseGallery with property Height at 500. I would like use a button to update this value to 750.
So I put in OnSelect(BrowseGallery.Height = 750)
But it didn't work.
How can I change property value ?
Ok I have my own result
the solution is to use variable.
I need to use a variable to set my height value.
For example BrowseGallery.Height = heightValue
After in my code button I change my variable with UpdateContext({heightValue:750})
And it's work