Hello,
I have a button that is initialize as bellow, and which have 2 properties : a Background Color and a Background image
and i would to see the Background image only when i Click the button and set the Color property to Transparent,
Dim btns As Button
Dim bmp As BitmapDrawable
Dim Images As String
Dim coul As Int
Images = "SomeImage.png"
bmp.Initialize(LoadBitmap(File.DirAssets, Images)
btns.Background = bmp
coul = Colors.Magenta
btns.Color = coul
but in that case the Background image Property disapears !
Should i have to set one more time the btns.Background value after set the Btns.Color property to Colors.Transparent ?
or make i something wrong ?
Regards
Take care ?
Michel