加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
ReplacePlanPage.xaml 2.10 KB
一键复制 编辑 原始数据 按行查看 历史
仲夏柠叶香 提交于 2021-10-12 23:11 . 完成基本功能
<Page x:Class="UFTools.ReplacePlanPage"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:local="clr-namespace:UFTools"
xmlns:hc="https://handyorg.github.io/handycontrol"
xmlns:fa="http://schemas.fontawesome.io/icons/"
mc:Ignorable="d"
d:DesignHeight="350" d:DesignWidth="800"
Title="ReplacePlanPage" Background="White">
<hc:TransitioningContentControl>
<Grid>
<StackPanel HorizontalAlignment="Left" VerticalAlignment="Top" Width="250" Margin="60,60,0,0">
<hc:TextBox TextWrapping="Wrap" hc:InfoElement.Title="原账套号" ShowClearButton="True" Name="oldId"/>
<hc:TextBox TextWrapping="Wrap" hc:InfoElement.Title="原名字" ShowClearButton="True" Name="oldName"/>
</StackPanel>
<fa:FontAwesome Icon="ArrowCircleRight" Width="40" Height="40" HorizontalAlignment="Center" VerticalAlignment="Top" Margin="0,100,0,0" FontSize="30" Foreground="{DynamicResource SuccessBrush}"/>
<StackPanel HorizontalAlignment="Right" VerticalAlignment="Top" Width="250" Margin="0,60,60,0">
<hc:TextBox TextWrapping="Wrap" hc:InfoElement.Title="新账套号" ShowClearButton="True" Name="newId"/>
<hc:TextBox TextWrapping="Wrap" hc:InfoElement.Title="新名字" ShowClearButton="True" Name="newName"/>
</StackPanel>
<Grid HorizontalAlignment="Center" VerticalAlignment="Bottom" Width="200" Margin="0,0,0,20">
<Button Content="上一步" HorizontalAlignment="Left" VerticalAlignment="Center" Width="75" Style="{DynamicResource ButtonDashedPrimary}" Click="LastButton_Click"/>
<Button Content="下一步" HorizontalAlignment="Right" VerticalAlignment="Center" Width="75" Style="{DynamicResource ButtonPrimary}" Click="OkButton_Click"/>
</Grid>
</Grid>
</hc:TransitioningContentControl>
</Page>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化