VB.NETを使用してWPFの要素をアニメーション化/移動する方法を理解しようとしています。CompositionTarget.Renderingを使用するように提案されましたが、開始するのに問題があります。以下は私のコードであり、その下は私が受け取っているエラーメッセージです。誰かが私がどこで間違っているのか教えてもらえますか?
コード:
Imports System.ComponentModel
Class MainWindow
Dim flake0 As New flake
Private Sub Window_Loaded(ByVal sender As System.Object, ByVal e As System.Windows.RoutedEventArgs) Handles MyBase.Loaded
canvas1.DataContext = flake0
AddHandler CompositionTarget.Rendering, AddressOf compo
End Sub
Private Sub compo(ByVal sender As Object, ByVal e As EventArgs)
flake0.move()
End Sub
End Class
エラー:
Handles clause requires a WithEvents variable defined in the containing type or one of its base types