Calendar.ShowDayHeader 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得或設定值,判斷控制項是否會在月曆標題中顯示一星期中各天的名稱。 這個 API 已經過時。 如需如何開發 ASP.NET 行動應用程式的資訊,請參閱 具有 ASP.NET 的Mobile Apps & Sites。
public:
property bool ShowDayHeader { bool get(); void set(bool value); };
[System.ComponentModel.Bindable(true)]
public bool ShowDayHeader { get; set; }
[<System.ComponentModel.Bindable(true)>]
member this.ShowDayHeader : bool with get, set
Public Property ShowDayHeader As Boolean
屬性值
如果月曆標題中應該顯示一星期中各天的名稱則為 true
,否則為 false
。 預設為 true
。
- 屬性
範例
下列程式代碼範例示範如何使用 ShowDayHeader 屬性來顯示天數的標頭。 此範例是概觀較大程式碼範例 Calendar 的一部分。
// Display the day header
Calendar1.ShowDayHeader = true;
' Display the day header
Calendar1.ShowDayHeader = True
備註
此屬性的功能與 Web Forms Calendar.ShowDayHeader 屬性相同。