Calendar.HasWeekSelectors(CalendarSelectionMode) Yöntem
Tanım
Önemli
Bazı bilgiler ürünün ön sürümüyle ilgilidir ve sürüm öncesinde önemli değişiklikler yapılmış olabilir. Burada verilen bilgilerle ilgili olarak Microsoft açık veya zımni hiçbir garanti vermez.
Bir CalendarSelectionMode nesnenin hafta seçicileri içerip içermediğini belirler.
protected:
bool HasWeekSelectors(System::Web::UI::WebControls::CalendarSelectionMode selectionMode);
protected bool HasWeekSelectors (System.Web.UI.WebControls.CalendarSelectionMode selectionMode);
member this.HasWeekSelectors : System.Web.UI.WebControls.CalendarSelectionMode -> bool
Protected Function HasWeekSelectors (selectionMode As CalendarSelectionMode) As Boolean
Parametreler
- selectionMode
- CalendarSelectionMode
Değerlerden CalendarSelectionMode biri.
Döndürülenler
true
hafta seçicileri CalendarSelectionMode içeriyorsa; değilse, false
.
Örnekler
Aşağıdaki kod örneği, özel Calendar denetimdeki özelliğin değerinin HasWeekSelectors nasıl belirleneceğini gösterir.
<%@ Register TagPrefix="aspSample" Namespace="Samples.AspNet.CS.Controls" Assembly="Samples.AspNet.CS" %>
<%@ Page language="c#" %>
<!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>Custom Calendar - HasWeekSelectors - C# Example</title>
</head>
<body>
<form id="Form1" method="post" runat="server">
<h3>Custom Calendar - HasWeekSelectors - C# Example</h3>
<aspSample:CustomCalendarHasWeekSelectors
id="Calendar1"
runat="server" />
</form>
</body>
</html>
<%@ Register TagPrefix="aspSample" Namespace="Samples.AspNet.VB.Controls" Assembly="Samples.AspNet.VB" %>
<%@ Page language="VB" %>
<!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>Custom Calendar - HasWeekSelectors - VB.NET Example</title>
</head>
<body>
<form id="Form1" method="post" runat="server">
<h3>Custom Calendar - HasWeekSelectors - VB.NET Example</h3>
<aspSample:CustomCalendarHasWeekSelectors id="Calendar1" runat="server" />
</form>
</body>
</html>
using System.Web;
using System.Security.Permissions;
namespace Samples.AspNet.CS.Controls
{
[AspNetHostingPermission(SecurityAction.Demand, Level = AspNetHostingPermissionLevel.Minimal)]
public sealed class CustomCalendarHasWeekSelectors : System.Web.UI.WebControls.Calendar
{
protected override void OnPreRender(System.EventArgs e)
{
// Determine if a CalendarSelectionMode.DayWeek contains WeekSelectors.
bool hasWeekSelectors = this.HasWeekSelectors(System.Web.UI.WebControls.CalendarSelectionMode.DayWeek);
// Call the base's OnPreRender method.
base.OnPreRender(e);
}
}
}
<AspNetHostingPermission(SecurityAction.Demand, Level:=AspNetHostingPermissionLevel.Minimal)> _
Public NotInheritable Class CustomCalendarHasWeekSelectors
Inherits System.Web.UI.WebControls.Calendar
Protected Overrides Sub OnPreRender(ByVal e As System.EventArgs)
' Determine if a CalendarSelectionMode.DayWeek contains WeekSelectors.
Dim hasWeekSelectors As Boolean = Me.HasWeekSelectors(System.Web.UI.WebControls.CalendarSelectionMode.DayWeek)
' Call the base OnPreRender method.
MyBase.OnPreRender(e)
End Sub
End Class
Açıklamalar
Değerler CalendarSelectionMode DayWeek
ve DayWeekMonth
her ikisi de hafta seçicileri içerir.