You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
1.3 KiB
26 lines
1.3 KiB
2 years ago
|
<c:BWindow x:Class="BBWYB.Client.Views.Web"
|
||
|
xmlns:c="clr-namespace:SJ.Controls;assembly=SJ.Controls"
|
||
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
||
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
||
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
||
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
||
|
xmlns:local="clr-namespace:BBWYB.Client.Views"
|
||
|
mc:Ignorable="d"
|
||
|
Style="{StaticResource bwstyle}"
|
||
|
DataContext="{Binding WebVM,Source={StaticResource Locator}}"
|
||
|
Title="Web" Height="450" Width="800">
|
||
|
<Grid x:Name="grid">
|
||
|
<Grid.RowDefinitions>
|
||
|
<RowDefinition Height="30"/>
|
||
|
<RowDefinition/>
|
||
|
</Grid.RowDefinitions>
|
||
|
<Border BorderThickness="0,0,0,1" BorderBrush="{StaticResource MainMenu.BorderBrush}">
|
||
|
<StackPanel Orientation="Horizontal" HorizontalAlignment="Left" VerticalAlignment="Center" Margin="10,0,0,0">
|
||
|
<TextBlock Text="{Binding GlobalContext.User.Name}"/>
|
||
|
<TextBlock Text="{Binding GlobalContext.BBWYBApiVersion}" Margin="5,0,0,0"/>
|
||
|
</StackPanel>
|
||
|
</Border>
|
||
|
<c:RoundWaitProgress Play="{Binding IsLoading}" Panel.ZIndex="999" Grid.RowSpan="2"/>
|
||
|
</Grid>
|
||
|
</c:BWindow>
|