Panel.Wrap Propriedade
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
Obtém ou define um valor que indica se o conteúdo será quebrado dentro do painel.
public:
virtual property bool Wrap { bool get(); void set(bool value); };
[System.ComponentModel.Bindable(true)]
public virtual bool Wrap { get; set; }
public virtual bool Wrap { get; set; }
[<System.ComponentModel.Bindable(true)>]
member this.Wrap : bool with get, set
member this.Wrap : bool with get, set
Public Overridable Property Wrap As Boolean
Valor da propriedade
true
se o conteúdo for quebrado dentro do painel; caso contrário, false
. O padrão é true
.
- Atributos
Exemplos
O exemplo a seguir ilustra como definir programaticamente a Wrap propriedade do Panel controle.
Observação
O exemplo de código a seguir usa o modelo de código de arquivo único e pode não funcionar corretamente se copiado diretamente em um arquivo code-behind. Este exemplo de código deve ser copiado em um arquivo de texto vazio que tenha uma extensão .aspx. Para obter mais informações sobre o modelo de código do Web Forms, consulte ASP.NET Modelo de Código de Página dos Web Forms.
<%@ Page Language="C#" AutoEventWireup="True" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head>
<title>Panel Example</title>
<script language="C#" runat="server">
void Page_Load(Object sender, EventArgs e) {
Label l = new Label();
l.Text = "This panel contains a label control.";
Panel1.Controls.Add(l);
}
void Button1_Click(Object sender, EventArgs e) {
if (Panel1.Wrap == true) {
Panel1.Wrap = false;
Button1.Text = "Set Wrap=True";
}
else {
Panel1.Wrap = true;
Button1.Text = "Set Wrap=False";
}
}
</script>
</head>
<body>
<h3>Panel Example</h3>
<form id="form1" runat="server">
<asp:Panel id="Panel1" Height="200" Width="100" BackColor="Gainsboro"
Wrap="True" runat="server"/>
<br />
<asp:Button id="Button1" OnClick="Button1_Click"
Text="Set Wrap=False" runat="server"/>
</form>
</body>
</html>
<%@ Page Language="VB" AutoEventWireup="True" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head>
<title>Panel Example</title>
<script language="VB" runat="server">
Sub Page_Load(sender As Object, e As EventArgs)
Dim l As New Label()
l.Text = "This panel contains a label control."
Panel1.Controls.Add(l)
End Sub
Sub Button1_Click(sender As Object, e As EventArgs)
If Panel1.Wrap = True Then
Panel1.Wrap = False
Button1.Text = "Set Wrap=True"
Else
Panel1.Wrap = True
Button1.Text = "Set Wrap=False"
End If
End Sub
</script>
</head>
<body>
<h3>Panel Example</h3>
<form id="form1" runat="server">
<asp:Panel id="Panel1" Height="200" Width="100" BackColor="Gainsboro"
Wrap="True" runat="server"/>
<br />
<asp:Button id="Button1" OnClick="Button1_Click"
Text="Set Wrap=False" runat="server"/>
</form>
</body>
</html>
Comentários
Use essa propriedade para encapsular o conteúdo do Panel.