Calendar Constructor
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Initializes a new instance of the Calendar class.
public:
Calendar();
public Calendar ();
Public Sub New ()
Examples
The following code example demonstrates how to create and initialize a new instance of the Calendar class.
<%@ 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>
<script runat="server">
void Page_Load(Object sender, EventArgs e)
{
// Create new Calendar control.
Calendar calendar1 = new Calendar();
// Set Calendar properties.
calendar1.OtherMonthDayStyle.ForeColor=System.Drawing.Color.LightGray;
calendar1.TitleStyle.BackColor=System.Drawing.Color.Blue;
calendar1.TitleStyle.ForeColor=System.Drawing.Color.White;
calendar1.DayStyle.BackColor=System.Drawing.Color.Gray;
calendar1.SelectionMode=CalendarSelectionMode.DayWeekMonth;
calendar1.ShowNextPrevMonth=true;
// Add Calendar control to Controls collection.
Form1.Controls.Add(calendar1);
}
</script>
</head>
<body>
<form id="Form1" runat="server">
<h3>Calendar Example</h3>
</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>
<script runat="server">
Sub Page_Load(sender As Object, e As EventArgs)
' Create new Calendar control.
Dim calendar1 as Calendar = New Calendar
' Set Calendar properties.
calendar1.OtherMonthDayStyle.ForeColor=System.Drawing.Color.LightGray
calendar1.TitleStyle.BackColor=System.Drawing.Color.Blue
calendar1.TitleStyle.ForeColor=System.Drawing.Color.White
calendar1.DayStyle.BackColor=System.Drawing.Color.Gray
calendar1.SelectionMode=CalendarSelectionMode.DayWeekMonth
calendar1.ShowNextPrevMonth=true
' Add Calendar control to Controls collection.
Form1.Controls.Add(calendar1)
End Sub 'Page_Load
</script>
</head>
<body>
<form id="Form1" runat="server">
<h3>Calendar Example</h3>
</form>
</body>
</html>
Remarks
Use this constructor to create and initialize a new instance of the Calendar class.
Applies to
التعاون معنا على GitHub
يمكن العثور على مصدر هذا المحتوى على GitHub حيث يمكنك أيضاً إضافة مشاكل وطلبات سحب ومراجعتها. للحصول على معلومات إضافية، اطلع على دليل المساهم لدينا.