DatePicker.CalendarClosed Evento
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í.
Se produce cuando se cierra el control Calendar desplegable.
public:
event System::Windows::RoutedEventHandler ^ CalendarClosed;
public event System.Windows.RoutedEventHandler CalendarClosed;
member this.CalendarClosed : System.Windows.RoutedEventHandler
Public Custom Event CalendarClosed As RoutedEventHandler
Public Event CalendarClosed As RoutedEventHandler
Tipo de evento
Ejemplos
En el ejemplo siguiente se crea y DatePicker se proporcionan instrucciones al usuario. Cuando el usuario abre o cierra , Calendarse actualizan las instrucciones.
<StackPanel>
<TextBlock Name="textBlock1"
Text="Enter a date or click the calendar."/>
<DatePicker CalendarOpened="DatePicker_CalendarOpened"
CalendarClosed="DatePicker_CalendarClosed"/>
</StackPanel>
private void DatePicker_CalendarOpened(object sender, RoutedEventArgs e)
{
textBlock1.Text = "Select a date from the calendar";
}
private void DatePicker_CalendarClosed(object sender, RoutedEventArgs e)
{
textBlock1.Text = "Enter a date or click the calendar";
}
Private Sub DatePicker_CalendarOpened(
ByVal sender As System.Object,
ByVal e As System.Windows.RoutedEventArgs)
textBlock1.Text = "Select a date from the calendar"
End Sub
Private Sub DatePicker_CalendarClosed(
ByVal sender As System.Object,
ByVal e As System.Windows.RoutedEventArgs)
textBlock1.Text = "Enter a date or click the calendar"
End Sub
Comentarios
Uso de atributos XAML
<DatePicker CalendarClosed="eventhandler"/>