Calendar.ShowDayHeader Właściwość
Definicja
Ważne
Niektóre informacje odnoszą się do produktu w wersji wstępnej, który może zostać znacząco zmodyfikowany przed wydaniem. Firma Microsoft nie udziela żadnych gwarancji, jawnych lub domniemanych, w odniesieniu do informacji podanych w tym miejscu.
Pobiera lub ustawia wartość wskazującą, czy nagłówek dla dni tygodnia jest wyświetlany.
public:
property bool ShowDayHeader { bool get(); void set(bool value); };
[System.ComponentModel.Bindable(true)]
public bool ShowDayHeader { get; set; }
public bool ShowDayHeader { get; set; }
[<System.ComponentModel.Bindable(true)>]
member this.ShowDayHeader : bool with get, set
member this.ShowDayHeader : bool with get, set
Public Property ShowDayHeader As Boolean
Wartość właściwości
true
jeśli zostanie wyświetlony nagłówek dni tygodnia; w przeciwnym razie , false
. Wartość domyślna to true
.
- Atrybuty
Przykłady
Poniższy przykład kodu pokazuje, jak za pomocą ShowDayHeader właściwości ukryć nagłówek w dniach tygodnia.
<%@ 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>Calendar Example</title>
</head>
<body>
<form id="form1" runat="server">
<h3>Calendar Example</h3>
<asp:Calendar id="calendar1" runat="server"
ShowDayHeader="False"/>
</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>Calendar Example</title>
</head>
<body>
<form id="form1" runat="server">
<h3>Calendar Example</h3>
<asp:Calendar id="calendar1" runat="server"
ShowDayHeader="False"/>
</form>
</body>
</html>
<%@ 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 day header section of the Calendar control
// depending on the state of the ShowDayHeaderCheckBox CheckBox
// control.
if (ShowDayHeaderCheckBox.Checked)
{
Calendar1.ShowDayHeader = true;
}
else
{
Calendar1.ShowDayHeader = false;
}
}
</script>
<head runat="server">
<title> Calendar ShowDayHeader Example </title>
</head>
<body>
<form id="form1" runat="server">
<h3> Calendar ShowDayHeader Example </h3>
Select whether to show or hide the day header section.
<br /><br />
<asp:Calendar id="Calendar1"
ShowTitle="True"
runat="server"/>
<br /><br />
<asp:CheckBox id="ShowDayHeaderCheckBox"
Text="Show/Hide day header 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 day header section of the Calendar control
' depending on the state of the ShowDayHeaderCheckBox CheckBox
' control.
If ShowDayHeaderCheckBox.Checked Then
Calendar1.ShowDayHeader = True
Else
Calendar1.ShowDayHeader = False
End If
End Sub
</script>
<head runat="server">
<title> Calendar ShowDayHeader Example </title>
</head>
<body>
<form id="form1" runat="server">
<h3> Calendar ShowDayHeader Example </h3>
Select whether to show or hide the day header section.
<br /><br />
<asp:Calendar id="Calendar1"
ShowTitle="True"
runat="server"/>
<br /><br />
<asp:CheckBox id="ShowDayHeaderCheckBox"
Text="Show/Hide day header section"
AutoPostBack="True"
Checked="True"
OnCheckedChanged="Check_Change"
runat="server"/>
</form>
</body>
</html>
Uwagi
ShowDayHeader Użyj właściwości , aby określić, czy nagłówek dla dni tygodnia jest wyświetlany.
Wygląd nagłówka można dostosować przy użyciu DayHeaderStyle właściwości .