|
12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- <Window
- x:Class="HKCardIN.Views.CardView"
- 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:hc="https://handyorg.github.io/handycontrol"
- xmlns:local="clr-namespace:HKCardIN.Views"
- xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
- Title="海科智慧一卡通平台"
- Width="300"
- Height="200"
- ResizeMode="CanMinimize"
- WindowStartupLocation="CenterScreen"
- mc:Ignorable="d">
- <Window.Background>
- <ImageBrush ImageSource="/HKResouces/背景.jpg" />
- </Window.Background>
- <WrapPanel
- HorizontalAlignment="Center"
- VerticalAlignment="Center"
- Orientation="Vertical">
- <TextBox
- x:Name="Phone"
- Width="200"
- hc:InfoElement.Placeholder="请输入手机号"
- Style="{StaticResource TextBoxExtend}" />
- <WrapPanel Margin="0,10,0,0" HorizontalAlignment="Center">
- <Button
- x:Name="Query"
- Width="80"
- Height="50"
- Margin="0,0,10,0"
- Click="QueryClick"
- Content="查询"
- FontSize="18"
- Style="{StaticResource ButtonDefault}" />
- <Button
- x:Name="Create"
- Width="80"
- Height="50"
- Margin="10,0,0,0"
- Click="CreateClick"
- Content="制卡"
- FontSize="18"
- IsEnabled="False"
- Style="{StaticResource ButtonDefault}" />
- </WrapPanel>
- </WrapPanel>
- </Window>
|