mirror of
https://github.com/soukoku/ntwain.git
synced 2025-04-05 19:45:07 +08:00
14 lines
656 B
XML
14 lines
656 B
XML
<Window x:Class="Sample.WPF.Launcher"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
Title="Scan Launcher" Height="200" Width="250"
|
|
ResizeMode="NoResize" Style="{StaticResource AppWindow}">
|
|
<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>
|