2025-04-01 13:41:50 +08:00

14 lines
831 B
XML

<UserControl x:Class="RIZO.Client.MainModule.Views.MainHeaderView"
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"
xmlns:local="clr-namespace:RIZO.Client.MainModule.ViewModels"
mc:Ignorable="d"
d:DesignHeight="150" d:DesignWidth="800">
<Grid>
<TextBlock Text="朝夕智能停车场运营管理系统" VerticalAlignment="Center" FontSize="20" Margin="20,0,0,0"/>
<TextBlock Text="{Binding CurrentUserName}" VerticalAlignment="Center" HorizontalAlignment="Right" Margin="0,30,20,0"/>
</Grid>
</UserControl>