Welcome, Guest  :: Login 

EntrySet.Lists Namespace

PictureListPopup Component

The PureComponents PictureListPopup control is used to display data in a popup box.   

PictureListPopupis based on a PictureList component therefore the interface is similar. Just the differences are described here, common information you can find in the PictureList chapter.

Popup window has a header at the top which can be turned on and off with the ShowHeader property. The ShowStatus property shows and hides the status bar at the bottom. The text is accessible through HeaderText and StatusText properties. By setting the AllowListResize property to true you can allow the user to resize the popup window.

The following code example shows how to open the PictureListPopup:

Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs)
                          Handles Button1.Click
  PictureListPopup1.ShowUp(Button1)
End Sub

PopupShowing, PopupShow and PopupClose events are raised when opening and closing the popup window.

See also

PictureList Component