Italian Resizable form che fine ha fatto?, [ in un anno quanti cambiamenti. ]

ivanomonti

Expert
Licensed User
Longtime User
B4X:
Root.As(Form).Resizable = False

anche per togliere le icone ingrandisci e mignottura :( 😄 che fine hanno fatto!
 

LucaMs

Expert
Licensed User
Longtime User
B4X:
Root.As(Form).Resizable = False

anche per togliere le icone ingrandisci e mignottura :( 😄 che fine hanno fatto!
Hai creato un progetto di tipo B4XPages, visto che hai la variable Root, che è un Pane, non un Form.
B4X:
Dim Frm As Form = B4XPages.GetNativeParent(Me)
Frm.Resizable = False

Se è un progetto di cui userai anche la versione B4A o B4I:
B4X:
#IF B4J
    Dim Frm As Form = B4XPages.GetNativeParent(Me)
    Frm.Resizable = False
#END IF


anche per togliere le icone ingrandisci e mignottura :( 😄 che fine hanno fatto!

1648508932634.png
 
Last edited:
Top