1 Star 0 Fork 7

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

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
SuperButton.xaml.cs 1.49 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.Navigation;
using System.Windows.Shapes;
namespace BluetoothPC
{
/// <summary>
/// SuperButton.xaml 的交互逻辑
/// </summary>
public partial class SuperButton : Button
{
public SuperButton()
{
InitializeComponent();
}
private void Grid_MouseLeftButtonDown(object sender, MouseButtonEventArgs e)
{
var target = Template.FindName("MyEllipse", this) as EllipseGeometry;
target.Center = Mouse.GetPosition(this);
var animation = new DoubleAnimation()
{
From = 0,
To = 150,
Duration = new Duration(TimeSpan.FromSeconds(1))
};
target.BeginAnimation(EllipseGeometry.RadiusXProperty, animation);
var animation2 = new DoubleAnimation()
{
From = 0.5,
To = 0,
Duration = new Duration(TimeSpan.FromSeconds(1))
};
var target2 = Template.FindName("MyPath", this) as Path;
target2.BeginAnimation(Path.OpacityProperty, animation2);
}
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/fly1900/StepCountingUpperPC.git
git@gitee.com:fly1900/StepCountingUpperPC.git
fly1900
StepCountingUpperPC
蓝牙转WIFI计步上位机
master

搜索帮助