56 lines
2.1 KiB
XML
56 lines
2.1 KiB
XML
<Page
|
|
x:Class="JSMachine.WMS.Storage.BusinessModules.Views.HomePage"
|
|
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:mvvm="http://prismlibrary.com/"
|
|
xmlns:customercontrols="clr-namespace:JSMachine.WMS.Common.CustomerControls;assembly=JSMachine.WMS.Common"
|
|
Title="HomePage"
|
|
d:DesignHeight="450"
|
|
d:DesignWidth="800"
|
|
mvvm:ViewModelLocator.AutoWireViewModel="True"
|
|
Loaded="Page_Loaded"
|
|
mc:Ignorable="d">
|
|
<Viewbox Stretch="Fill">
|
|
<Canvas
|
|
Grid.Row="1"
|
|
Width="1920"
|
|
Height="980"
|
|
VerticalAlignment="Top">
|
|
<!--<Border
|
|
Canvas.Left="5"
|
|
Canvas.Top="6"
|
|
Width="1910"
|
|
Height="40"
|
|
BorderBrush="#999999"
|
|
BorderThickness="0,0,0,2">
|
|
<WrapPanel
|
|
Name="ButtonContainer"
|
|
VerticalAlignment="Bottom"
|
|
Button.Click="TabClick"
|
|
Orientation="Horizontal">
|
|
<Button
|
|
x:Name="ButtonHome"
|
|
Content="{DynamicResource HomePage_Button_ButtonHome}"
|
|
Style="{StaticResource MenuButton}" />
|
|
<Button
|
|
x:Name="ButtonOrder"
|
|
Content="{DynamicResource HomePage_Button_ButtonOrder}"
|
|
Style="{StaticResource MenuButton}" />
|
|
</WrapPanel>
|
|
</Border>-->
|
|
<customercontrols:ConnectionStatusView
|
|
Grid.Row="2"
|
|
Grid.ColumnSpan="3"
|
|
Canvas.Top="20" Canvas.Right="30"
|
|
Background="Transparent" />
|
|
<ContentControl
|
|
x:Name="Page_Change"
|
|
Canvas.Left="5"
|
|
Canvas.Top="10"
|
|
Width="1920" />
|
|
</Canvas>
|
|
</Viewbox>
|
|
</Page>
|