19 lines
1.1 KiB
XML
19 lines
1.1 KiB
XML
<UserControl x:Class="Zerolauncher.dialog.UseAccDataTextAdd"
|
||
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"
|
||
mc:Ignorable="d"
|
||
d:DesignHeight="169" d:DesignWidth="290">
|
||
<DockPanel Margin="5">
|
||
<TextBlock DockPanel.Dock="Top" Margin="5" Text="文本格式:一行一个账号,如:
 服务器---区号---账号---密码---备注
服务器填代号:
 4399是0,7k7k是1,第七大道是2" Foreground="#FFB44242"/>
|
||
<DockPanel DockPanel.Dock="Bottom">
|
||
<Button DockPanel.Dock="Right" Content="选择文件" Click="Button_Click"/>
|
||
<TextBox Name="input_split" DockPanel.Dock="Right" Text="---" Width="100"/>
|
||
<TextBlock DockPanel.Dock="Right" Text="分隔符:" Foreground="#FFEE9595"/>
|
||
<Label/>
|
||
</DockPanel>
|
||
<Label/>
|
||
</DockPanel>
|
||
</UserControl>
|