| 12345678910111213141516171819202122232425262728293031 |
- <Window x:Class="Muchinfo.MTPClient.Delivery.Views.PrintWindow"
- xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- xmlns:resource="clr-namespace:Muchinfo.MTPClient.Resources;assembly=Client.Resources"
- Title="{x:Static resource:Client_Resource.Content_PrintTakeGoodsOrder}"
- Width="1024"
- Height="768"
- ShowInTaskbar="False"
- Style="{DynamicResource DialogWindowStyle}"
- WindowStartupLocation="CenterOwner">
- <Grid>
- <Grid.RowDefinitions>
- <RowDefinition Height="Auto" />
- <RowDefinition />
- </Grid.RowDefinitions>
- <Button x:Name="printButton"
- Width="80"
- Height="26"
- Margin="10,2"
- HorizontalAlignment="Left"
- Click="PrintButton_OnClick"
- Content="{x:Static resource:Client_Resource.Content_PrintTakeGoodsOrder_Print}"
- IsEnabled="False"
- Style="{DynamicResource CommonButtonStyle}" />
- <Grid x:Name="PrintGrid"
- Grid.Row="1"
- Background="White" />
- </Grid>
- </Window>
|