How to Create a Transparent Pop-up
9 Dec 2019 / 1 minute to read
Transparent Pop-up is nothing but the visual appearance set based on the user requirements. This can be explain in the below code snippet,
private void popupControlContainer1_BeforePopup(object sender, System.ComponentModel.CancelEventArgs e)
{
// Get the popupHost which is used to host the popupControlContainer
// and set the opacity.
this.popupControlContainer1.PopupHost.Opacity = 0.75;
}
Private Sub popupControlContainer1_BeforePopup(ByVal sender As Object, ByVal e As System.ComponentModel.CancelEventArgs)
' Get the popupHost which is used to host the popupControlContainer
' and set the opacity.
Me.popupControlContainer1.PopupHost.Opacity = 0.75
End Sub
Was this page helpful?
Yes
No
Thank you for your feedback!
Thank you for your feedback and comments. We will rectify this as soon as possible!
An unknown error has occurred. Please try again.
Help us improve this page