123 lines
6.0 KiB
Plaintext
123 lines
6.0 KiB
Plaintext
|
|
<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>
|
|||
|
|
<Button x:Name="btn_diy" Content="自定义图片"/>
|
|||
|
|
<Button x:Name="btn_clut" Content="截取游戏" Grid.Row="1"/>
|
|||
|
|
<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>
|
|||
|
|
<TextBox Name="edit_sid" Grid.Row="1" Margin="10,3,50,3" SelectionTextBrush="#4CFFFFFF">
|
|||
|
|
<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>
|
|||
|
|
<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>
|