1 Star 12 Fork 7

小贝比/蓝牙转WIFI计步上位机

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
JumpPage.xaml.cs 1.23 KB
一键复制 编辑 原始数据 按行查看 历史
小贝比 提交于 2021-06-17 15:58 +08:00 . 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>
/// JumpPage.xaml 的交互逻辑
/// </summary>
public partial class JumpPage : Window
{
public JumpPage()
{
InitializeComponent();
Left = SystemParameters.WorkArea.Width - Width;
Top = SystemParameters.WorkArea.Height - Height;
}
public string NotifyMessage { get; set; }
async private void Storyboard_Completed(object sender, EventArgs e)
{
await Task.Delay(3000);
BeginStoryboard(FindResource("CloseStoryboard") as Storyboard);
}
private void Storyboard_Completed_1(object sender, EventArgs e)
{
Close();
}
private void Window_Loaded(object sender, RoutedEventArgs e)
{
MessageBox.Text = NotifyMessage;
}
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/tytokongjian/StepCountingUpperPC.git
git@gitee.com:tytokongjian/StepCountingUpperPC.git
tytokongjian
StepCountingUpperPC
蓝牙转WIFI计步上位机
master

搜索帮助