neue version

This commit is contained in:
ja
2021-09-07 10:55:23 +02:00
parent 2c80644224
commit 99b069d611
335 changed files with 236971 additions and 59 deletions

View File

@@ -0,0 +1,27 @@
Imports System.Windows.Forms
Public Class MyLinkLabelVALUE
Inherits System.Windows.Forms.LinkLabel
Public Property valuename As String
Public Property linkedTextBox As TextBox
Protected Overrides Sub OnClick(e As EventArgs)
MyBase.OnClick(e)
End Sub
End Class
Public Class MyLinkPicBoxVALUE
Inherits System.Windows.Forms.PictureBox
Public Property valuename As String
Public Property linkedTextBox As TextBox
Public Property linkedPictureBox As PictureBox
Protected Overrides Sub OnClick(e As EventArgs)
MyBase.OnClick(e)
End Sub
End Class