zoukankan
html css js c++ java
写了一个整人程序,较简单,有兴趣者可以看看
程序是基于WPF开发的,动态创建对象和动画。
using System; using System.Collections.Generic; using System.Linq; using System.Text; 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.Imaging; using System.Windows.Navigation; using System.Windows.Shapes; using System.Windows.Media.Animation; namespace WpfApplication1 { /// <summary> /// Window1.xaml 的交互逻辑 /// </summary> public partial class Window1 : Window { Ellipse[] els1, els2; Storyboard std, std2; int theMax = 100; public Window1() { InitializeComponent(); this.Title = "哈哈,看好了"; this.WindowState = WindowState.Maximized; els1 = new Ellipse[theMax]; els2 = new Ellipse[theMax]; for (int n = 0; n < theMax; n++) { els1[n] = new Ellipse(); els1[n].Fill = Brushes.Transparent; els1[n].Stroke = Brushes.Black; els1[n].StrokeThickness = 0.55; els1[n].Width = 0; els1[n].Height = 0; els1[n].HorizontalAlignment = HorizontalAlignment.Center; els1[n].VerticalAlignment = VerticalAlignment.Center; //els1[n].Stretch = Stretch.Fill; this.Root.Children.Add(els1[n]); } for (int s = 0; s < theMax; s++) { els2[s] = new Ellipse(); els2[s].Fill = Brushes.Transparent; els2[s].Stroke = Brushes.Black; els2[s].StrokeThickness = 0.45; //els2[s].Width = 1300; //els2[s].Height = 970; els2[s].Margin = new Thickness(-150); this.Root.Children.Add(els2[s]); } std = new Storyboard(); std.RepeatBehavior = RepeatBehavior.Forever; Duration AllDuration = new Duration(TimeSpan.FromSeconds(1.2)); //std.Duration = AllDuration; for (int k = 0; k < theMax; k++) { DoubleAnimation dan = new DoubleAnimation(); dan.BeginTime = TimeSpan.FromSeconds(0.02 * k); dan.Duration = AllDuration; dan.From = 0; dan.To = 1100; dan.RepeatBehavior = RepeatBehavior.Forever; Storyboard.SetTarget(dan, els1[k]); Storyboard.SetTargetProperty(dan, new PropertyPath("(FrameworkElement.Width)")); std.Children.Add(dan); dan = new DoubleAnimation(); dan.BeginTime = TimeSpan.FromSeconds(0.02 * k); dan.Duration = AllDuration; dan.From = 0; dan.To = 1000; dan.RepeatBehavior = RepeatBehavior.Forever; Storyboard.SetTarget(dan, els1[k]); Storyboard.SetTargetProperty(dan, new PropertyPath("(FrameworkElement.Height)")); std.Children.Add(dan); } //2 std2 = new Storyboard(); std2.RepeatBehavior = RepeatBehavior.Forever; for (int e = 0; e < theMax; e++) { DoubleAnimation dan = new DoubleAnimation(); dan.BeginTime = TimeSpan.FromSeconds(0.05 * e); dan.Duration = AllDuration; dan.From = 1100; dan.To = 0; dan.RepeatBehavior = RepeatBehavior.Forever; Storyboard.SetTarget(dan, els2[e]); Storyboard.SetTargetProperty(dan, new PropertyPath("(FrameworkElement.Width)")); std2.Children.Add(dan); dan = new DoubleAnimation(); dan.BeginTime = TimeSpan.FromSeconds(0.03 * e); dan.Duration = AllDuration; dan.From = 1350; dan.To = 0; dan.RepeatBehavior = RepeatBehavior.Forever; Storyboard.SetTarget(dan, els2[e]); Storyboard.SetTargetProperty(dan, new PropertyPath("(FrameworkElement.Height)")); std2.Children.Add(dan); } this.Loaded += new RoutedEventHandler(Window1_Loaded); } void Window1_Loaded(object sender, RoutedEventArgs e) { MessageBox.Show("\n\n注意啊,别把眼睛靠得太近!!\n\n\n"); std.Begin(); std2.Begin(); } } }
查看全文
相关阅读:
SpringBoot SpringSession redis 共享 SESSION
SpringBoot application.yml logback.xml,多环境配置,支持 java -jar --spring.profiles.active
SpringBoot CGLIB AOP解决Spring事务,对象调用自己方法事务失效.
SpringBoot整合Mybatis,多数据源,事务,支持java -jar 启动.
SpringBoot整合SpringSecurity,SESSION 并发管理,同账号只允许登录一次
SpringBoot idea maven打包war
动态添加数据源,根据用户登录切换数据库.编程式Spring事务.
MYSQL,触发器,实现两个表共用ID不重复
试着简单易懂记录synchronized this object Class的区别,模拟ConcurrentHashMap
Enum枚举写的一个简单状态机
原文地址:https://www.cnblogs.com/javawebsoa/p/2457966.html
最新文章
<c和指针>学习笔记5动态内存分配和预处理器
<c和指针>学习笔记4之字符串
关于servlet3.0中的异步servlet
The request associated with the AsyncContext has already completed processing
一个不错的工具推荐:JMeter
使用JSP的fmt标签实现国际化支持
demo:使用数字证书进行数字签名和加密,解密
nginx中实现把所有http的请求都重定向到https
使用正则表达式来截取nginx中的内置变量
公钥基础设施体系和EJBCA的一些概念
热门文章
EJBCA的安装(基于Ubuntu 16.04 LTS + wildfly8 + ejbca6.3.11 + jdk7)
Android 软键盘弹出与关闭监听
java SoftReference WeakReference
java 正则表达式 验证字符串 只包含汉字英文数字
Item is not readable svn: 条目不可读
github开源库(三)
github开源库(二)
github开源库(一)
HTTP 报文
android 在HTML中显示bitmap
Copyright © 2011-2022 走看看