18 lines
438 B
VB.net
18 lines
438 B
VB.net
Partial Class DateTimePickerEx
|
|
Inherits System.Windows.Forms.DateTimePicker
|
|
|
|
<System.Diagnostics.DebuggerNonUserCode()> _
|
|
Public Sub New(ByVal container As System.ComponentModel.IContainer)
|
|
MyClass.New()
|
|
|
|
'Erforderlich für die Unterstützung des Windows.Forms-Klassenkompositions-Designers
|
|
If (container IsNot Nothing) Then
|
|
container.Add(Me)
|
|
End If
|
|
|
|
End Sub
|
|
|
|
|
|
|
|
End Class
|