Hi,
When calling Dialog like below, it also shows me the layer
with sharp edges. See the arrow in the left corner.
How can I round the sharp edges of this layer to a similar size
how did I do for MainForm?
When calling Dialog like below, it also shows me the layer
with sharp edges. See the arrow in the left corner.
How can I round the sharp edges of this layer to a similar size
how did I do for MainForm?
Dialog Show:
Private Dialog As B4XDialog
...
Dialog.Initialize(MainForm.RootPane)
Dialog.TitleBarTextColor = xu.Color_LightGray
Dialog.TitleBarColor = xu.Color_Transparent
Dialog.BackgroundColor = 0xFF4C505B
Dialog.BorderColor = xu.Color_ARGB(255,218,165,32)
Dialog.BorderCornersRadius = 11
Dialog.BorderWidth = 1
Dialog.ButtonsColor = xu.Color_Transparent
Dialog.ButtonsHeight = 40dip
Dialog.ButtonsTextColor = xu.Color_ARGB(255,218,165,32)
Dialog.ButtonsTextColorDisabled = xu.Color_Black
Dialog.VisibleAnimationDuration = 600
Dialog.Title = "Exit App"
Wait For (Dialog.Show($"You want to go out of the application, Are you sure ?"$,"Yes","","Cancel")) Complete (Resp As Int)
Return Resp