This repository was archived by the owner on Jan 13, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathKeyInput.xaml
More file actions
15 lines (15 loc) · 1.49 KB
/
KeyInput.xaml
File metadata and controls
15 lines (15 loc) · 1.49 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<Window x:Class="CopyPlusPlus.KeyInput"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d"
Title="百度翻译接口" Height="138" Width="253" WindowStartupLocation="CenterOwner" ResizeMode="NoResize" Closed="WriteKey" Topmost="True" WindowStyle="SingleBorderWindow" ShowInTaskbar="False">
<Grid VerticalAlignment="Bottom" Height="118" Margin="0,5,0,0">
<TextBox x:Name="textBox1" HorizontalAlignment="Left" Margin="78,31,0,0" Text="点击这里输入" TextWrapping="Wrap" VerticalAlignment="Top" Width="148" GotFocus="ClearText" />
<TextBox x:Name="textBox2" HorizontalAlignment="Left" Margin="78,58,0,0" Text="关闭窗口自动保存" TextWrapping="Wrap" VerticalAlignment="Top" Width="148" GotFocus="ClearText" />
<Label x:Name="label1" Content="AppID:" HorizontalAlignment="Left" Margin="22,27,0,0" VerticalAlignment="Top" FontWeight="Bold" />
<Label x:Name="label2" Content="Key:" HorizontalAlignment="Left" Margin="30,54,0,0" VerticalAlignment="Top" FontWeight="Bold" />
<TextBlock x:Name="textBlock" HorizontalAlignment="Center" Margin="0,86,0,0" TextWrapping="Wrap" VerticalAlignment="Top"><Run Language="zh-cn" Text="不知道怎么操作? 关注公众号获取教程" /></TextBlock>
</Grid>
</Window>