Calendar.ShowTitle プロパティ
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
タイトル セクションを表示するかどうかを示す値を取得または設定します。
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
プロパティ値
Calendar のタイトル セクションを表示する場合は true
。それ以外の場合は false
。 既定値は true
です。
- 属性
例
次のコード例は、このプロパティを使用 ShowTitle してタイトル ヘッダーを非表示にする方法を示しています。
<%@ 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>
注釈
このプロパティを ShowTitle 使用して、タイトル セクションを表示するかどうかを指定します。
注意
タイトル セクションを非表示にすると、次の月と前の月のナビゲーション コントロールも非表示になります。
title セクションの外観は、プロパティを使用して TitleStyle カスタマイズできます。