Calendar.ShowTitle Propiedad

Definición

Obtiene o establece un valor que indica si se muestra la sección de título.

public:
 property bool ShowTitle { bool get(); void set(bool value); };
[System.ComponentModel.Bindable(true)]
public bool ShowTitle { get; set; }
public bool ShowTitle { get; set; }
[<System.ComponentModel.Bindable(true)>]
member this.ShowTitle : bool with get, set
member this.ShowTitle : bool with get, set
Public Property ShowTitle As Boolean

Valor de propiedad

Boolean

Es true si el control Calendar muestra la sección de título; en caso contrario, es false. El valor predeterminado es true.

Atributos

Ejemplos

En el ejemplo de código siguiente se muestra cómo usar la ShowTitle propiedad para ocultar el encabezado de título.

<%@ 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" >
   <script runat="server" >
  
      void Check_Change(Object sender, EventArgs e)
      {
   
         // Show or hide the title section of the Calendar control
         // depending on the state of the ShowTitleCheckBox CheckBox
         // control.
         if (ShowTitleCheckBox.Checked)
         {

            Calendar1.ShowTitle = true;

         }
         else
         {

            Calendar1.ShowTitle = false;

         }

      }
  
   </script>
  
<head runat="server">
    <title> Calendar ShowTitle Example </title>
</head>
<body>

   <form id="form1" runat="server">
  
      <h3> Calendar ShowTitle Example </h3>

      Select whether to show or hide the title section.

      <br /><br /> 
  
      <asp:Calendar id="Calendar1" 
           ShowTitle="True"
           runat="server"/>

      <br /><br />

      <asp:CheckBox id="ShowTitleCheckBox"
           Text="Show/Hide title section"
           AutoPostBack="True"
           Checked="True"
           OnCheckedChanged="Check_Change"
           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" >
   <script runat="server" >
  
      Sub Check_Change(sender As Object, e As EventArgs)
   
         ' Show or hide the title section of the Calendar control
         ' depending on the state of the ShowTitleCheckBox CheckBox
         ' control.
         If ShowTitleCheckBox.Checked Then

            Calendar1.ShowTitle = True

         Else

            Calendar1.ShowTitle = False

         End If

      End Sub
  
   </script>
  
<head runat="server">
    <title> Calendar ShowTitle Example </title>
</head>
<body>

   <form id="form1" runat="server">
  
      <h3> Calendar ShowTitle Example </h3>

      Select whether to show or hide the title section.

      <br /><br /> 
  
      <asp:Calendar id="Calendar1" 
           ShowTitle="True"
           runat="server"/>

      <br /><br />

      <asp:CheckBox id="ShowTitleCheckBox"
           Text="Show/Hide title section"
           AutoPostBack="True"
           Checked="True"
           OnCheckedChanged="Check_Change"
           runat="server"/>
  
   </form>

</body>
</html>

Comentarios

Utilice la ShowTitle propiedad para especificar si se muestra la sección de título.

Nota

Al ocultar la sección de título también se ocultan los controles de navegación del mes siguiente y anterior.

La apariencia de la sección de título se puede personalizar mediante la TitleStyle propiedad .

Se aplica a

Consulte también