ASPxPopupControlBase.HeaderText Property
Gets or sets the text content of a window’s header.
Namespace: DevExpress.Web
Assembly: DevExpress.Web.v24.2.dll
NuGet Package: DevExpress.Web
#Declaration
#Property Value
Type | Default | Description |
---|---|---|
String | "Header" | A string value that specifies a window’s header text. |
#Remarks
Use the HeaderText property to specify the text displayed within a window’s header. The position of the text within the header is specified by the AppearanceStyleBase.HorizontalAlign and AppearanceStyleBase.VerticalAlign properties available via a window’s ASPxPopupControl.HeaderStyle (PopupControlStyles.Header for ASPxDockPanel) or PopupWindow.HeaderStyle property.
If a specific navigation location is assigned for a window’s header (via either the ASPxPopupControlBase.HeaderNavigateUrl or PopupWindow.HeaderNavigateUrl property), the window’s header text set by the HeaderText property serves as a link. It’s underlined, and a click on it navigates the application to the specified location.
Note
If the ASPx
#Example
This example illustrates how to customize an ASPxPopupControl’s header container using particular properties.
<dx:ASPxButton ID="ASPxButton1" runat="server" Text="Show PopUp" AutoPostBack="false">
<ClientSideEvents Click="function (s,e) {popup.Show();}" />
</dx:ASPxButton>
<dx:ASPxPopupControl ID="ASPxPopupControl1" runat="server" ClientInstanceName="popup"
ShowHeader="true" HeaderText="Directed by: Ridley Scott"
HeaderNavigateUrl="http://devexpress.com/">
<HeaderImage Url="Images/new.png" AlternateText="No image">
</HeaderImage>
<HeaderStyle ForeColor="#666677" Font-Size="12px" />
<ContentStyle ForeColor="#666677" Font-Names="Tahoma" Font-Size="10px" />
<ContentCollection>
<dx:PopupControlContentControl runat="server">
<div >
When a Roman general is betrayed and his family murdered by a corrupt prince, he
comes to Rome as a gladiator to seek revenge.</div>
</dx:PopupControlContentControl>
</ContentCollection>
</dx:ASPxPopupControl>