Compare commits

...

3 commits

Author SHA1 Message Date
mw
ce874eaff7 Merge pull request '3_action1' (#5) from 3_action1 into main
Reviewed-on: #5
2024-01-15 11:02:03 +01:00
mw
f8a698905d Message beim Klicken von Action1 2024-01-15 10:55:38 +01:00
mw
b91b3c5d41 Button OK -> Action1 2024-01-15 10:54:37 +01:00
2 changed files with 4 additions and 2 deletions

2
Form1.Designer.vb generated
View file

@ -31,7 +31,7 @@ Partial Class Form1
Me.Button1.Name = "Button1" Me.Button1.Name = "Button1"
Me.Button1.Size = New System.Drawing.Size(107, 39) Me.Button1.Size = New System.Drawing.Size(107, 39)
Me.Button1.TabIndex = 0 Me.Button1.TabIndex = 0
Me.Button1.Text = "OK" Me.Button1.Text = "Action1"
Me.Button1.UseVisualStyleBackColor = True Me.Button1.UseVisualStyleBackColor = True
' '
'Form1 'Form1

View file

@ -1,3 +1,5 @@
Public Class Form1 Public Class Form1
Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click
MessageBox.Show("hier käme Action1")
End Sub
End Class End Class