2024-03-16 16:41:20 +00:00
|
|
|
<Border x:Class="VPet_Simulator.Windows.MPUserControl" CornerRadius="5" BorderThickness="3"
|
|
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:pu="https://opensource.panuon.com/wpf-ui"
|
|
|
|
xmlns:ll="clr-namespace:LinePutScript.Localization.WPF;assembly=LinePutScript.Localization.WPF"
|
|
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008" xmlns:local="clr-namespace:VPet_Simulator.Windows"
|
2024-03-22 13:48:07 +00:00
|
|
|
mc:Ignorable="d" Margin="5" Width="338" Height="80" Background="{DynamicResource SecondaryLight}"
|
2024-03-16 16:41:20 +00:00
|
|
|
BorderBrush="{DynamicResource Secondary}">
|
2024-03-15 17:33:56 +00:00
|
|
|
<Grid>
|
2024-03-22 09:58:56 +00:00
|
|
|
<pu:ContentControlX HorizontalAlignment="Left" Margin="10" CornerRadius="27">
|
2024-03-18 14:26:50 +00:00
|
|
|
<Image x:Name="uimg" Source="/Res/TopLogo2019.PNG" />
|
2024-03-20 05:17:14 +00:00
|
|
|
</pu:ContentControlX>
|
2024-03-22 09:58:56 +00:00
|
|
|
<TextBlock HorizontalAlignment="Left" VerticalAlignment="Center" Margin="70,0,0,0"
|
2024-03-16 16:41:20 +00:00
|
|
|
Foreground="{DynamicResource DARKPrimaryDarker}" FontSize="16">
|
2024-03-22 13:48:07 +00:00
|
|
|
<Run Text="{ll:Str 访客}" />: <Run x:Name="rPetName" Text="萝莉斯" FontSize="20" FontWeight="Bold" />
|
2024-03-16 16:41:20 +00:00
|
|
|
<LineBreak />
|
|
|
|
<Run Text="{ll:Str 来自}" />: <Run x:Name="hostName" Text="XXX" FontWeight="Bold" /><LineBreak />
|
2024-03-16 17:02:08 +00:00
|
|
|
<Run x:Name="info" Text="Lv ??" />
|
2024-03-16 16:41:20 +00:00
|
|
|
</TextBlock>
|
|
|
|
<Button Style="{DynamicResource ThemedButtonStyle}" HorizontalAlignment="Right" Content="{ll:Str 重置位置}"
|
2024-03-22 13:48:07 +00:00
|
|
|
VerticalAlignment="Top" Margin="8" Click="btn_ReSetLocal" />
|
2024-03-20 05:17:14 +00:00
|
|
|
<Button x:Name="Kick" Style="{DynamicResource ThemedButtonStyle}" HorizontalAlignment="Right"
|
2024-03-22 13:48:07 +00:00
|
|
|
Content="{ll:Str 送客}" VerticalAlignment="Bottom" Margin="8" Click="Kick_Click" Visibility="Collapsed"
|
2024-03-20 05:17:14 +00:00
|
|
|
d:Visibility="Visible" />
|
2024-03-15 17:33:56 +00:00
|
|
|
</Grid>
|
2024-03-16 16:41:20 +00:00
|
|
|
</Border>
|