NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

DateTimePicker WmKeyDown Event

[To be supplied.]

The following declaration shows the syntax for a method that handles the WmKeyDown event.

[Visual Basic]
Private Sub DateTimePickerName_WmKeyDown( _
   ByVal sender As Object, _
   ByVal e As DateTimeWmKeyDownEventArgs _
)
[C#]
private void DateTimePickerName_WmKeyDown(
   object sender,
   DateTimeWmKeyDownEventArgs e
);
[C++]
private: void DateTimePickerName_WmKeyDown(
   Object* sender,
   DateTimeWmKeyDownEventArgs* e
);
[JScript]
private DateTimePickerName_WmKeyDown(
   sender : Object,
   e : DateTimeWmKeyDownEventArgs
);

Parameters

sender
The source of the event.
e
A DateTimeWmKeyDownEventArgs that contains the event data.

See Also

DateTimePicker Class | DateTimePicker MembersTopic | System.WinForms Namespace