2024-03-07 21:04:59 +08:00
|
|
|
|
<UserControl x:Class="Zerolauncher.dialog.EditMember"
|
|
|
|
|
|
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">
|
|
|
|
|
|
<Grid>
|
|
|
|
|
|
<Grid.RowDefinitions>
|
|
|
|
|
|
<RowDefinition Height="*"/>
|
|
|
|
|
|
<RowDefinition Height="*"/>
|
|
|
|
|
|
<RowDefinition Height="*"/>
|
|
|
|
|
|
<RowDefinition Height="*"/>
|
|
|
|
|
|
<RowDefinition Height="*"/>
|
|
|
|
|
|
<RowDefinition Height="*"/>
|
|
|
|
|
|
</Grid.RowDefinitions>
|
|
|
|
|
|
<Grid.ColumnDefinitions>
|
|
|
|
|
|
<ColumnDefinition Width="*"/>
|
|
|
|
|
|
<ColumnDefinition Width="*"/>
|
|
|
|
|
|
</Grid.ColumnDefinitions>
|
|
|
|
|
|
<Grid Grid.Column="1" Grid.RowSpan="2" Margin="2">
|
|
|
|
|
|
<Grid.RowDefinitions>
|
|
|
|
|
|
<RowDefinition Height="*"/>
|
|
|
|
|
|
<RowDefinition Height="*"/>
|
|
|
|
|
|
</Grid.RowDefinitions>
|
|
|
|
|
|
<Grid.ColumnDefinitions>
|
|
|
|
|
|
<ColumnDefinition Width="*"/>
|
|
|
|
|
|
<ColumnDefinition Width="*"/>
|
|
|
|
|
|
</Grid.ColumnDefinitions>
|
2024-08-04 17:59:09 +08:00
|
|
|
|
<!--<Button x:Name="btn_diy" Content="自定义图片"/>-->
|
|
|
|
|
|
<Button x:Name="btn_clut" Content="注册账号" Grid.Row="1" Click="OpenRegWeb"/>
|
2024-03-07 21:04:59 +08:00
|
|
|
|
<Image Grid.Column="1" Grid.RowSpan="2" Source="/res/player_ico1.png"/>
|
|
|
|
|
|
</Grid>
|
|
|
|
|
|
<DockPanel Grid.ColumnSpan="1" Margin="2">
|
|
|
|
|
|
<Label Content="运营商:" Foreground="White"/>
|
|
|
|
|
|
<ComboBox Name="cb_pid"/>
|
|
|
|
|
|
</DockPanel>
|
2024-05-12 16:43:07 +08:00
|
|
|
|
<DockPanel Grid.Row="1" Margin="2">
|
|
|
|
|
|
<Label Content="服务器:" Foreground="White"/>
|
|
|
|
|
|
<ComboBox Name="cb_sid"/>
|
|
|
|
|
|
</DockPanel>
|
2024-03-07 21:04:59 +08:00
|
|
|
|
<TextBox Name="edit_acc" Grid.Row="2" Grid.ColumnSpan="2" Margin="10,2,50,2" SelectionTextBrush="#07FFFFFF">
|
|
|
|
|
|
<TextBox.Resources>
|
|
|
|
|
|
<VisualBrush x:Key="HelpBrush" TileMode="None" Opacity="0.7" Stretch="None" AlignmentX="Left">
|
|
|
|
|
|
<VisualBrush.Visual>
|
|
|
|
|
|
<TextBlock FontStyle="Italic" Text="请输入账号" Foreground="Cyan"/>
|
|
|
|
|
|
</VisualBrush.Visual>
|
|
|
|
|
|
</VisualBrush>
|
|
|
|
|
|
</TextBox.Resources>
|
|
|
|
|
|
<TextBox.Style>
|
|
|
|
|
|
<Style TargetType="TextBox">
|
|
|
|
|
|
<Style.Triggers>
|
|
|
|
|
|
<Trigger Property="Text" Value="{x:Null}">
|
|
|
|
|
|
<Setter Property="Background" Value="{StaticResource HelpBrush}"/>
|
|
|
|
|
|
</Trigger>
|
|
|
|
|
|
<Trigger Property="Text" Value="">
|
|
|
|
|
|
<Setter Property="Background" Value="{StaticResource HelpBrush}"/>
|
|
|
|
|
|
</Trigger>
|
|
|
|
|
|
</Style.Triggers>
|
|
|
|
|
|
</Style>
|
|
|
|
|
|
</TextBox.Style>
|
|
|
|
|
|
</TextBox>
|
|
|
|
|
|
<PasswordBox Name="edit_pwd" Grid.Row="3" Grid.ColumnSpan="2" Margin="10,2,50,2" PasswordChanged="PasswordBox_PasswordChanged" >
|
|
|
|
|
|
<PasswordBox.Resources>
|
|
|
|
|
|
<VisualBrush x:Key="HelpBrush" TileMode="None" Opacity="0.7" Stretch="None" AlignmentX="Left">
|
|
|
|
|
|
<VisualBrush.Visual>
|
|
|
|
|
|
<TextBlock FontStyle="Italic" Text="请输入密码" Foreground="Cyan"/>
|
|
|
|
|
|
</VisualBrush.Visual>
|
|
|
|
|
|
</VisualBrush>
|
|
|
|
|
|
</PasswordBox.Resources>
|
|
|
|
|
|
<PasswordBox.Style>
|
|
|
|
|
|
<Style TargetType="PasswordBox">
|
|
|
|
|
|
<Setter Property="Background" Value="{StaticResource HelpBrush}"/>
|
|
|
|
|
|
</Style>
|
|
|
|
|
|
</PasswordBox.Style>
|
|
|
|
|
|
</PasswordBox>
|
|
|
|
|
|
<TextBox Name="edit_nick" Grid.Row="4" Grid.ColumnSpan="2" Margin="10,2,50,2">
|
|
|
|
|
|
<TextBox.Resources>
|
|
|
|
|
|
<VisualBrush x:Key="HelpBrush" TileMode="None" Opacity="0.7" Stretch="None" AlignmentX="Left">
|
|
|
|
|
|
<VisualBrush.Visual>
|
|
|
|
|
|
<TextBlock FontStyle="Italic" Text="请输入昵称,重复昵称脚本调用只取1" Foreground="Red"/>
|
|
|
|
|
|
</VisualBrush.Visual>
|
|
|
|
|
|
</VisualBrush>
|
|
|
|
|
|
</TextBox.Resources>
|
|
|
|
|
|
<TextBox.Style>
|
|
|
|
|
|
<Style TargetType="TextBox">
|
|
|
|
|
|
<Style.Triggers>
|
|
|
|
|
|
<Trigger Property="Text" Value="{x:Null}">
|
|
|
|
|
|
<Setter Property="Background" Value="{StaticResource HelpBrush}"/>
|
|
|
|
|
|
</Trigger>
|
|
|
|
|
|
<Trigger Property="Text" Value="">
|
|
|
|
|
|
<Setter Property="Background" Value="{StaticResource HelpBrush}"/>
|
|
|
|
|
|
</Trigger>
|
|
|
|
|
|
</Style.Triggers>
|
|
|
|
|
|
</Style>
|
|
|
|
|
|
</TextBox.Style>
|
|
|
|
|
|
</TextBox>
|
|
|
|
|
|
<DockPanel Grid.Row="5" Grid.Column="1" Margin="2">
|
|
|
|
|
|
<Button DockPanel.Dock="Right" Background="Transparent" Click="Button_Click" BorderBrush="Transparent">
|
|
|
|
|
|
<Image Source="/res/25.png"/>
|
|
|
|
|
|
</Button>
|
|
|
|
|
|
<Label/>
|
|
|
|
|
|
</DockPanel>
|
|
|
|
|
|
</Grid>
|
|
|
|
|
|
</UserControl>
|