0
wp7アプリケーションの画像に画像を適用できますか?私には一連の画像があります。これらの画像のページ遷移などのトランジションを作成できますか?wp7の画像の切り替え
wp7アプリケーションの画像に画像を適用できますか?私には一連の画像があります。これらの画像のページ遷移などのトランジションを作成できますか?wp7の画像の切り替え
任意のui要素にトランジションを適用できます。
//XAML
<Image Name="img"
Source="image.JPG"></Image>
//C# put this code on any event like on a button click.
RotateTransition rotatetransition = new RotateTransition();
rotatetransition.Mode = RotateTransitionMode.In180Counterclockwise;
ITransition transition = rotatetransition.GetTransition(img);
transition.Completed += delegate { transition.Stop(); };
transition.Begin();
これはありがとうござい画像
への移行を適用します!これは私のために働く.. –