2014-09-25 09:52:28 +08:00
|
|
|
<Window x:Class="Tester.WPF.Launcher"
|
2014-08-14 19:34:55 +08:00
|
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
2014-09-25 09:52:28 +08:00
|
|
|
Title="Scan Launcher" Height="200" Width="250"
|
|
|
|
ResizeMode="NoResize" Style="{StaticResource AppWindow}">
|
2014-08-14 19:34:55 +08:00
|
|
|
<Grid>
|
|
|
|
<StackPanel VerticalAlignment="Center">
|
|
|
|
<Button Content="Open scan window" Click="Button_Click" Margin="4 0"></Button>
|
|
|
|
<TextBlock Text="This is to test opening/closing multiple twain sessions in an app" Margin="8"
|
|
|
|
TextWrapping="Wrap"></TextBlock>
|
|
|
|
</StackPanel>
|
|
|
|
</Grid>
|
|
|
|
</Window>
|