FirstDayOfWeek 列挙型
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
Calendar コントロールで 1 週間の最初の日として表示する曜日を指定します。
public enum class FirstDayOfWeek
public enum FirstDayOfWeek
type FirstDayOfWeek =
Public Enum FirstDayOfWeek
- 継承
フィールド
Default | 7 | 1 週間の最初の曜日をシステム設定から取得することを示します。 |
Friday | 5 | 1 週間の最初の曜日が金曜日であることを示します。 |
Monday | 1 | 1 週間の最初の曜日が月曜日であることを示します。 |
Saturday | 6 | 1 週間の最初の曜日が土曜日であることを示します。 |
Sunday | 0 | 1 週間の最初の曜日が日曜日であることを示します。 |
Thursday | 4 | 1 週間の最初の曜日が木曜日であることを示します。 |
Tuesday | 2 | 1 週間の最初の曜日が火曜日であることを示します。 |
Wednesday | 3 | 1 週間の最初の曜日が水曜日であることを示します。 |
例
次のコード例は、ドロップダウン リストを使用して Calendar コントロールの曜日を設定する方法を示しています。
<%@ 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 Selection_Change(Object sender, EventArgs e)
{
// Set the first day of the week.
Calendar1.FirstDayOfWeek = (FirstDayOfWeek)DayList.SelectedIndex;
}
</script>
<head runat="server">
<title> Calendar FirstDayOfWeek Example </title>
</head>
<body>
<form id="form1" runat="server">
<h3> Calendar FirstDayOfWeek Example </h3>
Select the first day of the week.
<br /><br />
<asp:Calendar id="Calendar1"
ShowGridLines="True"
ShowTitle="True"
runat="server"/>
<br /><br />
<table cellpadding="5">
<tr>
<td>
First day of the week:
</td>
</tr>
<tr>
<td>
<asp:DropDownList id="DayList"
AutoPostBack="True"
OnSelectedIndexChanged="Selection_Change"
runat="server">
<asp:ListItem> Sunday </asp:ListItem>
<asp:ListItem> Monday </asp:ListItem>
<asp:ListItem> Tuesday </asp:ListItem>
<asp:ListItem> Wednesday </asp:ListItem>
<asp:ListItem> Thursday </asp:ListItem>
<asp:ListItem> Friday </asp:ListItem>
<asp:ListItem> Saturday </asp:ListItem>
<asp:ListItem Selected="True"> Default </asp:ListItem>
</asp:DropDownList>
</td>
</tr>
</table>
</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 Selection_Change(sender as Object, e As EventArgs)
' Set the first day of the week.
Calendar1.FirstDayOfWeek = CType(DayList.SelectedIndex, _
System.Web.UI.WebControls.FirstDayOfWeek)
End Sub
</script>
<head runat="server">
<title> Calendar FirstDayOfWeek Example </title>
</head>
<body>
<form id="form1" runat="server">
<h3> Calendar FirstDayOfWeek Example </h3>
Select the first day of the week.
<br /><br />
<asp:Calendar id="Calendar1"
ShowGridLines="True"
ShowTitle="True"
runat="server"/>
<br /><br />
<table cellpadding="5">
<tr>
<td>
First day of the week:
</td>
</tr>
<tr>
<td>
<asp:DropDownList id="DayList"
AutoPostBack="True"
OnSelectedIndexChanged="Selection_Change"
runat="server">
<asp:ListItem> Sunday </asp:ListItem>
<asp:ListItem> Monday </asp:ListItem>
<asp:ListItem> Tuesday </asp:ListItem>
<asp:ListItem> Wednesday </asp:ListItem>
<asp:ListItem> Thursday </asp:ListItem>
<asp:ListItem> Friday </asp:ListItem>
<asp:ListItem> Saturday </asp:ListItem>
<asp:ListItem Selected="True"> Default </asp:ListItem>
</asp:DropDownList>
</td>
</tr>
</table>
</form>
</body>
</html>
注釈
列挙体は FirstDayOfWeek 、コントロールの週の最初の曜日として表示する曜日を指定する値を Calendar 表します。