Zooflow/Globix: fix crash related to checkbox

This commit is contained in:
Jonathan Jenne
2021-12-23 12:47:28 +01:00
parent 512ae2e815
commit 1fb6038f17
2 changed files with 3 additions and 1 deletions

View File

@@ -177,7 +177,7 @@ Public Class ControlCreator
oCheckBox.Checked = oValue
End If
AddHandler oCheckBox.CheckedChanged, Sub(sender As CheckBox, e As EventArgs)
AddHandler oCheckBox.CheckedChanged, Sub(sender As CheckEdit, e As EventArgs)
OnControlChanged.Invoke(sender)
End Sub