mirror of
https://github.com/soukoku/ntwain.git
synced 2025-04-05 20:59:23 +08:00
Sample tweaks.
This commit is contained in:
parent
24bd82670a
commit
8f6e661a61
@ -7,12 +7,16 @@ namespace Sample.WPF
|
|||||||
/// Interaction logic for App.xaml
|
/// Interaction logic for App.xaml
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public partial class App : Application
|
public partial class App : Application
|
||||||
{
|
{
|
||||||
protected override void OnStartup(StartupEventArgs e)
|
public App()
|
||||||
{
|
{
|
||||||
UIHooks.EnableHighDpiSupport();
|
UIHooks.EnableHighDpiSupport();
|
||||||
|
}
|
||||||
|
|
||||||
|
protected override void OnStartup(StartupEventArgs e)
|
||||||
|
{
|
||||||
Theme.ApplyTheme(ThemeColor.Light, Accent.Green);
|
Theme.ApplyTheme(ThemeColor.Light, Accent.Green);
|
||||||
base.OnStartup(e);
|
base.OnStartup(e);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -26,6 +26,7 @@
|
|||||||
<ErrorReport>prompt</ErrorReport>
|
<ErrorReport>prompt</ErrorReport>
|
||||||
<WarningLevel>4</WarningLevel>
|
<WarningLevel>4</WarningLevel>
|
||||||
<UseVSHostingProcess>true</UseVSHostingProcess>
|
<UseVSHostingProcess>true</UseVSHostingProcess>
|
||||||
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
||||||
<PlatformTarget>x64</PlatformTarget>
|
<PlatformTarget>x64</PlatformTarget>
|
||||||
|
@ -97,8 +97,8 @@ namespace Sample.WPF
|
|||||||
report.Append(cap.Name).AppendLine(":");
|
report.Append(cap.Name).AppendLine(":");
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
report.Append('\t').Append("Maybe: ").Append(cap.Supports).AppendLine();
|
report.Append('\t').Append("Supports: ").Append(cap.Supports).AppendLine();
|
||||||
report.Append('\t').Append("Get: ");
|
report.Append('\t').Append("Values: ");
|
||||||
foreach (var v in cap.Get())
|
foreach (var v in cap.Get())
|
||||||
{
|
{
|
||||||
report.Append(v).Append(',');
|
report.Append(v).Append(',');
|
||||||
|
@ -85,7 +85,7 @@ namespace NTwain
|
|||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets the file format if applicable.
|
/// Gets the file format if applicable.
|
||||||
/// This is only available if <see cref="TransferType"/> is <see cref="XferMech.Memory"/>.
|
/// This is only available if <see cref="TransferType"/> is <see cref="XferMech.File"/>.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <value>
|
/// <value>
|
||||||
/// The file format.
|
/// The file format.
|
||||||
|
Loading…
Reference in New Issue
Block a user