1 Star 0 Fork 7

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

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
JumpPage.xaml 2.09 KB
一键复制 编辑 原始数据 按行查看 历史
小贝比 提交于 2021-06-17 15:58 . Tuyong Commit
<Window x:Class="BluetoothPC.JumpPage"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:local="clr-namespace:BluetoothPC"
mc:Ignorable="d"
Name="ThisWindow"
WindowStyle="None"
ResizeMode="NoResize"
AllowsTransparency="True"
Background="Transparent"
Title="JumpPage" Height="70" Width="300" Loaded="Window_Loaded">
<Window.Resources>
<Storyboard x:Key="OpenStoryboard" Completed="Storyboard_Completed">
<DoubleAnimation From="0" To="{Binding ElementName=ThisWindow,Path=Width}" Duration="00:00:00.5"
Storyboard.TargetName="RootBorder" Storyboard.TargetProperty="Width">
<DoubleAnimation.EasingFunction>
<CubicEase EasingMode="EaseOut"/>
</DoubleAnimation.EasingFunction>
</DoubleAnimation>
</Storyboard>
<Storyboard x:Key="CloseStoryboard" Completed="Storyboard_Completed_1">
<DoubleAnimation From="{Binding ElementName=ThisWindow,Path=Width}" To="0" Duration="00:00:00.5"
Storyboard.TargetName="RootBorder" Storyboard.TargetProperty="Width">
<DoubleAnimation.EasingFunction>
<CubicEase EasingMode="EaseOut"/>
</DoubleAnimation.EasingFunction>
</DoubleAnimation>
</Storyboard>
</Window.Resources>
<Window.Triggers>
<EventTrigger RoutedEvent="Loaded">
<BeginStoryboard>
<StaticResource ResourceKey="OpenStoryboard"/>
</BeginStoryboard>
</EventTrigger>
</Window.Triggers>
<Border Background="#FF007ACC" HorizontalAlignment="Right" Name="RootBorder">
<TextBlock HorizontalAlignment="Center" VerticalAlignment="Center" FontSize="28" Foreground="White" Name="MessageBox" FontWeight="Bold"/>
</Border>
</Window>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/fly1900/StepCountingUpperPC.git
git@gitee.com:fly1900/StepCountingUpperPC.git
fly1900
StepCountingUpperPC
蓝牙转WIFI计步上位机
master

搜索帮助