PrintWindow.xaml 1.2 KB

12345678910111213141516171819202122232425262728293031
  1. <Window x:Class="Muchinfo.MTPClient.Delivery.Views.PrintWindow"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:resource="clr-namespace:Muchinfo.MTPClient.Resources;assembly=Client.Resources"
  5. Title="{x:Static resource:Client_Resource.Content_PrintTakeGoodsOrder}"
  6. Width="1024"
  7. Height="768"
  8. ShowInTaskbar="False"
  9. Style="{DynamicResource DialogWindowStyle}"
  10. WindowStartupLocation="CenterOwner">
  11. <Grid>
  12. <Grid.RowDefinitions>
  13. <RowDefinition Height="Auto" />
  14. <RowDefinition />
  15. </Grid.RowDefinitions>
  16. <Button x:Name="printButton"
  17. Width="80"
  18. Height="26"
  19. Margin="10,2"
  20. HorizontalAlignment="Left"
  21. Click="PrintButton_OnClick"
  22. Content="{x:Static resource:Client_Resource.Content_PrintTakeGoodsOrder_Print}"
  23. IsEnabled="False"
  24. Style="{DynamicResource CommonButtonStyle}" />
  25. <Grid x:Name="PrintGrid"
  26. Grid.Row="1"
  27. Background="White" />
  28. </Grid>
  29. </Window>