ZeroLauncher/controls/MemberControl.xaml

15 lines
758 B
Plaintext
Raw Permalink Normal View History

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"
d:DesignHeight="75" d:DesignWidth="60" Margin="5">
<Grid>
<DockPanel>
<Image Name="icon" DockPanel.Dock="Top" Source="/res/player_ico1.png" Width="60" Height="60"/>
<Label Name="text" DockPanel.Dock="Bottom" Content="43-测试账号" FontSize="9" Padding="0"/>
</DockPanel>
</Grid>
</UserControl>