Files
ADMIN/SDL/VERAG_PROG_ALLGEMEIN/Benutzerdefinierte Steuerelemente/MyPanel.vb
2021-09-07 10:55:23 +02:00

15 lines
284 B
VB.net

Imports System.ComponentModel
Imports System.Windows.Forms
Imports System.Drawing
Public Class MyPanel
Inherits Panel
Protected Overrides Function ScrollToControl(ByVal activecontrol As Control) As Point
Return Me.AutoScrollPosition
End Function
End Class