Action2 #6

Merged
mw merged 2 commits from 5_action2 into main 2024-01-15 11:08:10 +01:00
2 changed files with 5 additions and 1 deletions
Showing only changes of commit bd17c850f5 - Show all commits

2
Form1.Designer.vb generated
View file

@ -32,7 +32,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
' '
'Button2 'Button2

View file

@ -1,4 +1,8 @@
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
Private Sub Button2_Click(sender As Object, e As EventArgs) Handles Button2.Click Private Sub Button2_Click(sender As Object, e As EventArgs) Handles Button2.Click
MessageBox.Show("hier käme Action2") MessageBox.Show("hier käme Action2")
End Sub End Sub