DateTimePicker.MaxDateTime Field
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.
Specifies the maximum date value of the DateTimePicker control. This field is read-only.
public: static initonly DateTime MaxDateTime;
public static readonly DateTime MaxDateTime;
[System.ComponentModel.Browsable(false)]
public static readonly DateTime MaxDateTime;
staticval mutable MaxDateTime : DateTime
[<System.ComponentModel.Browsable(false)>]
staticval mutable MaxDateTime : DateTime
Public Shared ReadOnly MaxDateTime As DateTime
Field Value
- Attributes
Examples
The following code example demonstrates handling the DropDown event of a DateTimePicker and using the MinDateTime and MaxDateTime fields. To run this example, paste the following code into a form that contains a DateTimePicker named DateTimePicker1
.
// When the calendar drops down, display a MessageBox indicating
// that DateTimePicker will not accept dates before MinDateTime or
// after MaxDateTime. Use a StringBuilder object to build the string
// for efficiency.
void DateTimePicker1_DropDown( Object^ /*sender*/, System::EventArgs^ /*e*/ )
{
System::Text::StringBuilder^ messageBuilder = gcnew System::Text::StringBuilder;
messageBuilder->Append( "Choose a date after: " );
messageBuilder->Append( DateTimePicker::MinDateTime.ToShortDateString() );
messageBuilder->Append( " and a date before: " );
messageBuilder->Append( DateTimePicker::MaxDateTime.ToShortDateString() );
MessageBox::Show( messageBuilder->ToString() );
}
// When the calendar drops down, display a MessageBox indicating
// that DateTimePicker will not accept dates before MinDateTime or
// after MaxDateTime. Use a StringBuilder object to build the string
// for efficiency.
private void DateTimePicker1_DropDown(object sender,
System.EventArgs e)
{
System.Text.StringBuilder messageBuilder =
new System.Text.StringBuilder();
messageBuilder.Append("Choose a date after: ");
messageBuilder.Append
(DateTimePicker.MinDateTime.ToShortDateString());
messageBuilder.Append(" and a date before: ");
messageBuilder.Append
(DateTimePicker.MaxDateTime.ToShortDateString());
MessageBox.Show(messageBuilder.ToString());
}
' When the calendar drops down, display a MessageBox indicating
' that DateTimePicker will not accept dates before MinDateTime or
' after MaxDateTime. Use a StringBuilder object to build the string
' for efficiency.
Private Sub DateTimePicker1_DropDown(ByVal sender As Object, _
ByVal e As EventArgs) Handles DateTimePicker1.DropDown
Dim messageBuilder As New System.Text.StringBuilder
messageBuilder.Append("Choose a date after: ")
messageBuilder.Append(DateTimePicker.MinDateTime.ToShortDateString)
messageBuilder.Append(" and a date before: ")
messageBuilder.Append(DateTimePicker.MaxDateTime.ToShortDateString)
MessageBox.Show(messageBuilder.ToString())
End Sub
Remarks
The maximum date is set to 12/31/9998 23:59:59.
Applies to
See also
Tee yhteistyötä kanssamme GitHubissa
Tämän sisällön lähde on GitHubissa, jossa voit myös luoda ja tarkastella ongelmia ja pull-pyyntöjä. Katso lisätietoja osallistujan oppaasta.