Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Lineを使用してアニメーション化することを望んPointAnimationでいましたが、線の端点が依存関係プロパティではなく、個人XとYコンポーネントが依存関係プロパティであることがわかりました。
Line
PointAnimation
X
Y
サブクラス化Lineして、エンドポイント(たとえばP1、P2)の依存関係プロパティを追加してから、このクラスのインスタンスをアニメーション化することは可能でしょうPointAnimationか?
P1
P2
パスとして線を作成できます。
<Path Stroke="Black" StrokeThickness="1"> <Path.Data> <LineGeometry x:Name="line" StartPoint="0,0" EndPoint="100,100"/> </Path.Data> </Path>
これで、LineGeometryのStartPointプロパティとEndPointプロパティをアニメーション化できます。