Compare commits

...

3 commits

Author SHA1 Message Date
mw
38e3144bf5 Merge pull request 'Action2' (#6) from 5_action2 into main
Reviewed-on: #6
2024-01-15 11:08:09 +01:00
mw
bd17c850f5 Merged main 2024-01-15 11:06:40 +01:00
mw
c9b686492e Action2 2024-01-15 11:00:41 +01:00
2 changed files with 16 additions and 0 deletions

12
Form1.Designer.vb generated
View file

@ -23,6 +23,7 @@ Partial Class Form1
<System.Diagnostics.DebuggerStepThrough()> _ <System.Diagnostics.DebuggerStepThrough()> _
Private Sub InitializeComponent() Private Sub InitializeComponent()
Me.Button1 = New System.Windows.Forms.Button() Me.Button1 = New System.Windows.Forms.Button()
Me.Button2 = New System.Windows.Forms.Button()
Me.SuspendLayout() Me.SuspendLayout()
' '
'Button1 'Button1
@ -34,11 +35,21 @@ Partial Class Form1
Me.Button1.Text = "Action1" Me.Button1.Text = "Action1"
Me.Button1.UseVisualStyleBackColor = True Me.Button1.UseVisualStyleBackColor = True
' '
'Button2
'
Me.Button2.Location = New System.Drawing.Point(310, 178)
Me.Button2.Name = "Button2"
Me.Button2.Size = New System.Drawing.Size(128, 45)
Me.Button2.TabIndex = 1
Me.Button2.Text = "Action2"
Me.Button2.UseVisualStyleBackColor = True
'
'Form1 'Form1
' '
Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!) Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!)
Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
Me.ClientSize = New System.Drawing.Size(800, 450) Me.ClientSize = New System.Drawing.Size(800, 450)
Me.Controls.Add(Me.Button2)
Me.Controls.Add(Me.Button1) Me.Controls.Add(Me.Button1)
Me.Name = "Form1" Me.Name = "Form1"
Me.Text = "Form1" Me.Text = "Form1"
@ -47,4 +58,5 @@ Partial Class Form1
End Sub End Sub
Friend WithEvents Button1 As Button Friend WithEvents Button1 As Button
Friend WithEvents Button2 As Button
End Class End Class

View file

@ -2,4 +2,8 @@
Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click
MessageBox.Show("hier käme Action1") MessageBox.Show("hier käme Action1")
End Sub End Sub
Private Sub Button2_Click(sender As Object, e As EventArgs) Handles Button2.Click
MessageBox.Show("hier käme Action2")
End Sub
End Class End Class