欢迎来到代码驿站!

.NET代码

当前位置:首页 > 软件编程 > .NET代码

c#实现图片的平移和旋转示例代码

时间:2020-12-04 04:10:54|栏目:.NET代码|点击:

前言

本文主要给大家分享了关于利用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();
  }
 }
}

总结

上一篇:C#画笔Pen画虚线的方法

栏    目:.NET代码

下一篇:C#将隐私信息(银行账户,身份证号码)中间部分特殊字符替换成*

本文标题:c#实现图片的平移和旋转示例代码

本文地址:http://www.codeinn.net/misctech/29335.html

推荐教程

广告投放 | 联系我们 | 版权申明

重要申明:本站所有的文章、图片、评论等,均由网友发表或上传并维护或收集自网络,属个人行为,与本站立场无关。

如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

联系QQ:914707363 | 邮箱:codeinn#126.com(#换成@)

Copyright © 2020 代码驿站 版权所有