1 Star 0 Fork 6

特兰克斯-Peter/蓝牙转WIFI计步上位机

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
MessageWindow.xaml.cs 1.90 KB
一键复制 编辑 原始数据 按行查看 历史
小贝比 提交于 2021-06-17 15:58 . Tuyong Commit
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.Shapes;
namespace BluetoothPC
{
/// <summary>
/// MessageWindow.xaml 的交互逻辑
/// </summary>
public partial class MessageWindow : Window
{
public MessageWindow()
{
InitializeComponent();
DataContext = this;
}
public string Message { get; set; } = "Message";
public string Header { get; set; } = "Header";
private void Window_Loaded(object sender, RoutedEventArgs e)
{
var LoadAnimation = new DoubleAnimation();
LoadAnimation.Duration = new Duration(TimeSpan.Parse("0:0:2"));
LoadAnimation.From = 0.1;
LoadAnimation.To = 1;
LoadAnimation.EasingFunction = new ElasticEase()
{
EasingMode = EasingMode.EaseOut,
Springiness = 8
};
var LoadClock = LoadAnimation.CreateClock();
Scale.ApplyAnimationClock(ScaleTransform.ScaleXProperty, LoadClock);
}
private void Button_Click(object sender, RoutedEventArgs e)
{
var UnLoadAnimation = new DoubleAnimation();
UnLoadAnimation.Duration = new Duration(TimeSpan.Parse("0:0:0.3"));
UnLoadAnimation.From = 1;
UnLoadAnimation.To = 0.01;
var LoadClock = UnLoadAnimation.CreateClock();
LoadClock.Completed += (a, b) =>
{
DialogResult = true;
};
Scale.ApplyAnimationClock(ScaleTransform.ScaleXProperty, LoadClock);
}
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/fly1900/StepCountingUpperPC.git
git@gitee.com:fly1900/StepCountingUpperPC.git
fly1900
StepCountingUpperPC
蓝牙转WIFI计步上位机
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385