c#图片的平移与旋转


1新建文件夹,添加一个图片

 

2 添加控件 两个button控件 一个image控件 一个Canvas控件

3 代码实现

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Animation;
using System.Windows.Media.Imaging;
using System.Windows.Navigation;
using System.Windows.Shapes;
namespace WpfApplication16
{
    /// <summary>
    /// MainWindow.xaml 的交互逻辑
    /// </summary>
    public partial class MainWindow : Window
    {
        public MainWindow()
        {
            InitializeComponent();
        }
        private void button_Click(object sender, RoutedEventArgs e)
        {
            DoubleAnimation da = new DoubleAnimation();
            da.From = 0;
            da.To = -100;
            Storyboard board = new Storyboard();
            Storyboard .SetTarget(da,image);
            Storyboard.SetTargetProperty(da,new PropertyPath(Canvas.LeftProperty));
            board.Children.Add(da);
            board.Begin();   
        }
        private void xuanzhuan()
        {
            RotateTransform totate = new RotateTransform();
            image.RenderTransform = totate;
            image.RenderTransformOrigin = new Point(0.5, 0.5);
            DoubleAnimation da = new DoubleAnimation(0, 360, new Duration(TimeSpan.FromMilliseconds(500)));
            Storyboard board = new Storyboard();
            Storyboard.SetTarget(da, image);
            Storyboard.SetTargetProperty(da,new PropertyPath("RenderTransform.Angle"));
            da.RepeatBehavior = RepeatBehavior.Forever;
            da.Completed += Da_Completed;
            board.Children.Add(da);
            board.Begin();
 
        }
        private void Da_Completed(object sender, EventArgs e)
        {
         
        }
        private void button1_Click(object sender, RoutedEventArgs e)
        {
            xuanzhuan();
        }
    }
  
}


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM