MainWindow.xaml 1.07 KB
Newer Older
潘栩锋's avatar
潘栩锋 committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
<NavigationWindow x:Class="FLY.Thick.BlowingScan.UI.Client.MainWindow"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        xmlns:local="clr-namespace:FLY.Thick.BlowingScan.UI.Client"
        Title="中国塑控 China Plastic Control" 
        WindowState="Maximized" Icon="123.ico"
                  
        Height="768" Width="1024"  ShowsNavigationUI="False"  Loaded="NavigationWindow_Loaded">
    <NavigationWindow.CommandBindings>
        <CommandBinding Command="local:GageCommands.Scan" Executed="CommandBindingScan_Executed"/>
        <CommandBinding Command="local:GageCommands.Stop" Executed="CommandBindingStop_Executed"/>
        <CommandBinding Command="local:GageCommands.Forward" Executed="CommandBindingForw_Executed"/>
        <CommandBinding Command="local:GageCommands.Backward" Executed="CommandBindingBackw_Executed"/>
        <CommandBinding Command="local:GageCommands.Org" Executed="CommandBindingOrg_Executed"/>
    </NavigationWindow.CommandBindings>
</NavigationWindow>