08-02-2012 08:24 AM
Hi all.
How to show my picture (for example, from png file) in standard dialog?
Is this possible?
08-02-2012 11:40 AM
Yes,
you can try something like this:
attachedObjects: [
CustomDialog {
id: myCustomDialog
content: Container {
ImageView {
imageSource: "asset:///images/bubble"
layoutProperties: DockLayoutProperties {
horizontalAlignment: HorizontalAlignment.Fill
verticalAlignment: VerticalAlignment.Fill
}
}
Button {
text: "Hide CustomDialog"
onClicked: myCustomDialog.visible = false
}
}
}
]
Hope this helps.
08-02-2012 12:24 PM
Sorry,
the program is written in ANSI C, Native SDK
08-02-2012 04:18 PM
Oh ok, not sure if I can help more... I'm mostly focused on Cascades.
Question: you were able to get a dialog working?
08-02-2012 04:21 PM
Anyway, running through the documentation, found the reference bellow, hope this helps.
08-04-2012 10:48 AM
08-08-2012 08:18 PM