Bc30506: требуются события withevents
мне нужна помощь вот мой код:
Hide Copy Code Public Class rotate_image_tutorial Private uxLableValue As Object Public Property CustomKnobControl1 As Object Public Event Load(sender As Object, e As EventArgs) Private Sub CustomKnobControl1_ValueChange() Handles CustomKnobControl1.ValueChange '-- when the control updates set the value in the label to see it change! uxLableValue.Text = String.Format("Value: {0}", CustomKnobControl1.Value) End Sub Private Sub rotate_image_tutorial_Load(sender As Object, e As System.EventArgs) Handles Me.Load 'CustomKnobControl1.MaxValue = 11 'CustomKnobControl1.AngleMovement = 15 End Sub End Class
но я продолжаю получать bc30506(handles clauses require withevents) я знаю, что нужно сделать, чтобы исправить ошибку, но я не знаю, куда ее поместить
Что я уже пробовал:
i know what to do to fix the error but i don't know where to put it