2024-03-07 21:04:59 +08:00
|
|
|
|
<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">
|
2024-03-22 19:45:11 +08:00
|
|
|
|
<TextBlock DockPanel.Dock="Top" Margin="5" Text="文本格式:一行一个账号,如:
 服务器---区号---账号---密码---备注
服务器填代号:
 如[0, 4399大区]意味着4399大区的代号是0,
 具体查看添加账号时,以列表显示的为准" Foreground="#FFB44242"/>
|
2024-03-07 21:04:59 +08:00
|
|
|
|
<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>
|