DateTimePicker.MaxDate Propiedad
Definición
Importante
Parte de la información hace referencia a la versión preliminar del producto, que puede haberse modificado sustancialmente antes de lanzar la versión definitiva. Microsoft no otorga ninguna garantía, explícita o implícita, con respecto a la información proporcionada aquí.
Obtiene o establece la fecha y hora máximas que se pueden seleccionar en el control.
public:
property DateTime MaxDate { DateTime get(); void set(DateTime value); };
public DateTime MaxDate { get; set; }
member this.MaxDate : DateTime with get, set
Public Property MaxDate As DateTime
Valor de propiedad
Fecha y hora máximas que se pueden seleccionar en el control. El valor predeterminado es el anterior de December 31st 9998 12 am
y la MaxSupportedDateTime propiedad de la referencia Calendar
cultural actual.
Excepciones
El valor asignado es menor que el valor de MinDate.
o bien
El valor asignado es mayor que el valor MaxDateTime.
Ejemplos
En el ejemplo de código siguiente se crea una nueva instancia de un DateTimePicker control y se inicializa. Se establece la propiedad del CustomFormat control. Además, la ShowCheckBox propiedad se establece para que el control muestre un CheckBoxy la ShowUpDown propiedad se establezca para que el control se muestre como un control de botón de número (también conocido como control de arriba a abajo).
public:
void CreateMyDateTimePicker()
{
// Create a new DateTimePicker control and initialize it.
DateTimePicker^ dateTimePicker1 = gcnew DateTimePicker;
// Set the MinDate and MaxDate.
dateTimePicker1->MinDate = DateTime(1985,6,20);
dateTimePicker1->MaxDate = DateTime::Today;
// Set the CustomFormat string.
dateTimePicker1->CustomFormat = "MMMM dd, yyyy - dddd";
dateTimePicker1->Format = DateTimePickerFormat::Custom;
// Show the CheckBox and display the control as an up-down control.
dateTimePicker1->ShowCheckBox = true;
dateTimePicker1->ShowUpDown = true;
}
public void CreateMyDateTimePicker()
{
// Create a new DateTimePicker control and initialize it.
DateTimePicker dateTimePicker1 = new DateTimePicker();
// Set the MinDate and MaxDate.
dateTimePicker1.MinDate = new DateTime(1985, 6, 20);
dateTimePicker1.MaxDate = DateTime.Today;
// Set the CustomFormat string.
dateTimePicker1.CustomFormat = "MMMM dd, yyyy - dddd";
dateTimePicker1.Format = DateTimePickerFormat.Custom;
// Show the CheckBox and display the control as an up-down control.
dateTimePicker1.ShowCheckBox = true;
dateTimePicker1.ShowUpDown = true;
}
Public Sub CreateMyDateTimePicker()
' Create a new DateTimePicker control and initialize it.
Dim dateTimePicker1 As New DateTimePicker()
' Set the MinDate and MaxDate.
dateTimePicker1.MinDate = New DateTime(1985, 6, 20)
dateTimePicker1.MaxDate = DateTime.Today
' Set the CustomFormat string.
dateTimePicker1.CustomFormat = "MMMM dd, yyyy - dddd"
dateTimePicker1.Format = DateTimePickerFormat.Custom
' Show the CheckBox and display the control as an up-down control.
dateTimePicker1.ShowCheckBox = True
dateTimePicker1.ShowUpDown = True
End Sub