Android Question How to write the code for loading images into Panel1 by clicking the button?

zed

Well-Known Member
Licensed User
Load img:
Sub Button1_Click
    ' Load an image from the Assets
    Panel1.SetBackgroundImage(LoadBitmap(File.DirAssets, "myimage.png"))
End Sub
 
Upvote 0
Top