2024-03-07 21:04:59 +08:00
|
|
|
<UserControl x:Class="Zerolauncher.controls.MemberControl"
|
|
|
|
|
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"
|
2024-03-22 22:21:37 +08:00
|
|
|
d:DesignHeight="75" d:DesignWidth="65" Margin="5">
|
2024-03-07 21:04:59 +08:00
|
|
|
<Grid>
|
|
|
|
|
<DockPanel>
|
|
|
|
|
<Image Name="icon" DockPanel.Dock="Top" Source="/res/player_ico1.png" Width="60" Height="60"/>
|
2024-03-22 22:21:37 +08:00
|
|
|
<Label Name="text" DockPanel.Dock="Bottom" Content="43-测试账号" FontSize="9" Padding="0" Width="65"/>
|
2024-03-07 21:04:59 +08:00
|
|
|
</DockPanel>
|
|
|
|
|
</Grid>
|
|
|
|
|
</UserControl>
|