-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathKGySoft.Drawing.shfbproj
1577 lines (1577 loc) · 74.7 KB
/
KGySoft.Drawing.shfbproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<!-- Import the common properties to support NuGet restore -->
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
<PropertyGroup>
<!-- The configuration and platform will be used to determine which assemblies to include from solution and
project documentation sources -->
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>{415744b8-1c19-41dc-b05f-0aea86bd1c0c}</ProjectGuid>
<SHFBSchemaVersion>2017.9.26.0</SHFBSchemaVersion>
<!-- AssemblyName, Name, and RootNamespace are not used by SHFB but Visual Studio adds them anyway -->
<AssemblyName>Documentation</AssemblyName>
<RootNamespace>Documentation</RootNamespace>
<Name>Documentation</Name>
<!-- SHFB properties -->
<FrameworkVersion>.NET Core/.NET Standard/.NET 5.0+</FrameworkVersion>
<OutputPath>HelpOut\</OutputPath>
<HtmlHelpName>KGySoft.Drawing</HtmlHelpName>
<Language>en-US</Language>
<HelpFileFormat>Website</HelpFileFormat>
<SyntaxFilters>Standard</SyntaxFilters>
<PresentationStyle>Default2022</PresentationStyle>
<CleanIntermediates>True</CleanIntermediates>
<KeepLogFile>False</KeepLogFile>
<DisableCodeBlockComponent>False</DisableCodeBlockComponent>
<IndentHtml>False</IndentHtml>
<BuildAssemblerVerbosity>OnlyWarningsAndErrors</BuildAssemblerVerbosity>
<SaveComponentCacheCapacity>100</SaveComponentCacheCapacity>
<DocumentationSources>
<DocumentationSource sourceFile="KGySoft.Drawing.Core\KGySoft.Drawing.Core.csproj" />
<DocumentationSource sourceFile="Specific\GdiPlus\KGySoft.Drawing\KGySoft.Drawing.csproj" />
<DocumentationSource sourceFile="Specific\WinUI\KGySoft.Drawing.WinUI\KGySoft.Drawing.WinUI.csproj" />
<DocumentationSource sourceFile="Specific\Wpf\KGySoft.Drawing.Wpf\KGySoft.Drawing.Wpf.csproj" />
<DocumentationSource sourceFile="Specific\SkiaSharp\KGySoft.Drawing.SkiaSharp\KGySoft.Drawing.SkiaSharp.csproj" />
</DocumentationSources>
<HelpTitle>KGy SOFT Drawing Libraries Help</HelpTitle>
<HelpFileVersion>9.0.0</HelpFileVersion>
<NamingMethod>MemberName</NamingMethod>
<ContentPlacement>AboveNamespaces</ContentPlacement>
<RootNamespaceContainer>False</RootNamespaceContainer>
<NamespaceGrouping>False</NamespaceGrouping>
<MaximumGroupParts>2</MaximumGroupParts>
<Preliminary>False</Preliminary>
<FooterText>Find the complete KGy SOFT Libraries documentation at the &lt%3ba href=&quot%3bhttps://docs.kgysoft.net&quot%3b target=&quot%3b_blank&quot%3b&gt%3bKGy SOFT Docs&lt%3b/a&gt%3b page.
&lt%3bbr/&gt%3bProject Site: &lt%3ba href=&quot%3bhttps://kgysoft.net/drawing&quot%3b target=&quot%3b_blank&quot%3b&gt%3bhttps://kgysoft.net/drawing&lt%3b/a&gt%3b
&lt%3bbr/&gt%3bGitHub Repository: &lt%3ba href=&quot%3bhttps://github.com/koszeggy/KGySoft.Drawing&quot%3b target=&quot%3b_blank&quot%3b&gt%3bhttps://github.com/koszeggy/KGySoft.Drawing&lt%3b/a&gt%3b
&lt%3bbr/&gt%3bNuGet packages:
&lt%3bli&gt%3bCore functionality: &lt%3ba href=&quot%3bhttps://www.nuget.org/packages/KGySoft.Drawing.Core&quot%3b target=&quot%3b_blank&quot%3b&gt%3bKGySoft.Drawing.Core&lt%3b/a&gt%3b&lt%3b/li&gt%3b
&lt%3bli&gt%3bGDI+ support: &lt%3ba href=&quot%3bhttps://www.nuget.org/packages/KGySoft.Drawing&quot%3b target=&quot%3b_blank&quot%3b&gt%3bKGySoft.Drawing&lt%3b/a&gt%3b&lt%3b/li&gt%3b
&lt%3bli&gt%3bWPF support: &lt%3ba href=&quot%3bhttps://www.nuget.org/packages/KGySoft.Drawing.Wpf&quot%3b target=&quot%3b_blank&quot%3b&gt%3bKGySoft.Drawing.Wpf&lt%3b/a&gt%3b&lt%3b/li&gt%3b
&lt%3bli&gt%3bUWP support: &lt%3ba href=&quot%3bhttps://www.nuget.org/packages/KGySoft.Drawing.Uwp&quot%3b target=&quot%3b_blank&quot%3b&gt%3bKGySoft.Drawing.Uwp&lt%3b/a&gt%3b&lt%3b/li&gt%3b
&lt%3bli&gt%3bWinUI support: &lt%3ba href=&quot%3bhttps://www.nuget.org/packages/KGySoft.Drawing.WinUI&quot%3b target=&quot%3b_blank&quot%3b&gt%3bKGySoft.Drawing.WinUI&lt%3b/a&gt%3b&lt%3b/li&gt%3b
&lt%3bli&gt%3bSkiaSharp support: &lt%3ba href=&quot%3bhttps://www.nuget.org/packages/KGySoft.Drawing.SkiaSharp&quot%3b target=&quot%3b_blank&quot%3b&gt%3bKGySoft.Drawing.SkiaSharp&lt%3b/a&gt%3b&lt%3b/li&gt%3b</FooterText>
<CopyrightText>Copyright &#169%3b KGy SOFT. All rights reserved.</CopyrightText>
<SdkLinkTarget>Blank</SdkLinkTarget>
<VisibleItems>Attributes, InheritedMembers, Protected, ProtectedInternalAsProtected, NonBrowsable</VisibleItems>
<WarnOnMissingSourceContext>False</WarnOnMissingSourceContext>
<PlugInConfigurations>
<PlugInConfig id="Additional Reference Links" enabled="True">
<configuration>
<targets>
<target htmlSdkLinkType="None" helpViewerSdkLinkType="None" websiteSdkLinkType="None" helpFileProject="..\KGySoft.CoreLibraries\KGySoft.CoreLibraries\KGySoft.CoreLibraries.shfbproj" />
</targets>
</configuration>
</PlugInConfig>
</PlugInConfigurations>
<TransformComponentArguments>
<Argument Key="RobotsMetadata" Value="" xmlns="" />
<Argument Key="BibliographyDataFile" Value="" xmlns="" />
<Argument Key="RootBreadcrumbTitleText" Value="KGy SOFT Drawing Libraries" xmlns="" />
<Argument Key="CollapsibleSections" Value="True" xmlns="" />
<Argument Key="LogoFile" Value="logo.png" xmlns="" />
<Argument Key="LogoHeight" Value="" xmlns="" />
<Argument Key="LogoWidth" Value="" xmlns="" />
<Argument Key="LogoAltText" Value="KGy SOFT Logo" xmlns="" />
<Argument Key="LogoPlacement" Value="Above" xmlns="" />
<Argument Key="LogoAlignment" Value="Left" xmlns="" />
<Argument Key="LogoUrl" Value="https://kgysoft.net/drawing" xmlns="" />
<Argument Key="MaxVersionParts" Value="" xmlns="" />
<Argument Key="DefaultLanguage" Value="cs" xmlns="" />
<Argument Key="IncludeEnumValues" Value="True" xmlns="" />
<Argument Key="EnumMemberSortOrder" Value="Value" xmlns="" />
<Argument Key="FlagsEnumValueFormat" Value="HexValue" xmlns="" />
<Argument Key="FlagsEnumSeparatorSize" Value="0" xmlns="" />
<Argument Key="BaseSourceCodeUrl" Value="" xmlns="" />
<Argument Key="RequestExampleUrl" Value="" xmlns="" />
</TransformComponentArguments>
<TargetFrameworkVersion>v4.8</TargetFrameworkVersion>
<TargetFrameworkProfile />
</PropertyGroup>
<!-- There are no properties for these groups. AnyCPU needs to appear in order for Visual Studio to perform
the build. The others are optional common platform types that may appear. -->
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x64' ">
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x64' ">
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|Win32' ">
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|Win32' ">
</PropertyGroup>
<!-- Import the common build targets during NuGet restore because before the packages are being installed, $(SHFBROOT) is not set yet -->
<Import Project="$(MSBuildToolsPath)\Microsoft.Common.targets" Condition="'$(MSBuildRestoreSessionId)' != ''" />
<!-- Import the SHFB build targets during build -->
<Import Project="$(SHFBROOT)\SandcastleHelpFileBuilder.targets" Condition="'$(MSBuildRestoreSessionId)' == ''" />
<!-- The pre-build and post-build event properties must appear *after* the targets file import in order to be
evaluated correctly. -->
<PropertyGroup>
<PreBuildEvent>
</PreBuildEvent>
<PostBuildEvent>
</PostBuildEvent>
<RunPostBuildEvent>OnBuildSuccess</RunPostBuildEvent>
</PropertyGroup>
<ItemGroup>
<Folder Include="icons\" />
<Folder Include="Help\" />
<Folder Include="Help\Images\" />
</ItemGroup>
<ItemGroup>
<Content Include="icons\logo.png">
<ImageId>logo</ImageId>
<AlternateText>logo</AlternateText>
</Content>
</ItemGroup>
<ItemGroup>
<Content Include="Help\Images\Information48.png">
<ImageId>Information48</ImageId>
<AlternateText>Information 48</AlternateText>
</Content>
<Content Include="Help\Images\Information32.png">
<ImageId>Information32</ImageId>
<AlternateText>Information 32</AlternateText>
</Content>
<Content Include="Help\Images\Information256.png">
<ImageId>Information256</ImageId>
<AlternateText>Information 256</AlternateText>
</Content>
<Content Include="Help\Images\Information16.png">
<ImageId>Information16</ImageId>
<AlternateText>Information 16</AlternateText>
</Content>
<Content Include="Help\Images\Warning256.png">
<ImageId>Warning256</ImageId>
<AlternateText>Warning 256</AlternateText>
</Content>
<Content Include="Help\Images\Warning48.png">
<ImageId>Warning48</ImageId>
<AlternateText>Warning 48</AlternateText>
</Content>
<Content Include="Help\Images\Warning32.png">
<ImageId>Warning32</ImageId>
<AlternateText>Warning 32</AlternateText>
</Content>
<Content Include="Help\Images\Warning16.png">
<ImageId>Warning16</ImageId>
<AlternateText>Warning 16</AlternateText>
</Content>
<Content Include="Help\Images\Shield256.png">
<ImageId>Shield256</ImageId>
<AlternateText>Shield 256</AlternateText>
</Content>
<Content Include="Help\Images\Shield128.png">
<ImageId>Shield128</ImageId>
<AlternateText>Shield 128</AlternateText>
</Content>
<Content Include="Help\Images\Shield48.png">
<ImageId>Shield48</ImageId>
<AlternateText>Shield 48</AlternateText>
</Content>
<Content Include="Help\Images\Shield32.png">
<ImageId>Shield32</ImageId>
<AlternateText>Shield 32</AlternateText>
</Content>
<Content Include="Help\Images\Shield24.png">
<ImageId>Shield24</ImageId>
<AlternateText>Shield 24</AlternateText>
</Content>
<Content Include="Help\Images\Shield16.png">
<ImageId>Shield16</ImageId>
<AlternateText>Shield 16</AlternateText>
</Content>
<Content Include="Help\Images\Shield8.png">
<ImageId>Shield8</ImageId>
<AlternateText>Shield 8</AlternateText>
</Content>
<Content Include="Help\Images\SecurityShield256.png">
<ImageId>SecurityShield256</ImageId>
<AlternateText>Security Shield 256</AlternateText>
</Content>
<Content Include="Help\Images\SecurityShield128.png">
<ImageId>SecurityShield128</ImageId>
<AlternateText>Security Shield 128</AlternateText>
</Content>
<Content Include="Help\Images\SecurityShield48.png">
<ImageId>SecurityShield48</ImageId>
<AlternateText>Security Shield 48</AlternateText>
</Content>
<Content Include="Help\Images\SecurityShield32.png">
<ImageId>SecurityShield32</ImageId>
<AlternateText>Security Shield 32</AlternateText>
</Content>
<Content Include="Help\Images\SecurityShield24.png">
<ImageId>SecurityShield24</ImageId>
<AlternateText>Security Shield 24</AlternateText>
</Content>
<Content Include="Help\Images\SecurityShield16.png">
<ImageId>SecurityShield16</ImageId>
<AlternateText>Security Shield 16</AlternateText>
</Content>
<Content Include="Help\Images\SecurityShield8.png">
<ImageId>SecurityShield8</ImageId>
<AlternateText>Security Shield 8</AlternateText>
</Content>
<Content Include="Help\Images\Question256.png">
<ImageId>Question256</ImageId>
<AlternateText>Question 256</AlternateText>
</Content>
<Content Include="Help\Images\Question64.png">
<ImageId>Question64</ImageId>
<AlternateText>Question 64</AlternateText>
</Content>
<Content Include="Help\Images\Question48.png">
<ImageId>Question48</ImageId>
<AlternateText>Question 48</AlternateText>
</Content>
<Content Include="Help\Images\Question32.png">
<ImageId>Question32</ImageId>
<AlternateText>Question 32</AlternateText>
</Content>
<Content Include="Help\Images\Question16.png">
<ImageId>Question16</ImageId>
<AlternateText>Question 16</AlternateText>
</Content>
<Content Include="Help\Images\Error256.png">
<ImageId>Error256</ImageId>
<AlternateText>Error 256</AlternateText>
</Content>
<Content Include="Help\Images\Error48.png">
<ImageId>Error48</ImageId>
<AlternateText>Error 48</AlternateText>
</Content>
<Content Include="Help\Images\Error32.png">
<ImageId>Error32</ImageId>
<AlternateText>Error 32</AlternateText>
</Content>
<Content Include="Help\Images\Error24.png">
<ImageId>Error24</ImageId>
<AlternateText>Error 24</AlternateText>
</Content>
<Content Include="Help\Images\Error16.png">
<ImageId>Error16</ImageId>
<AlternateText>Error 16</AlternateText>
</Content>
<Content Include="Help\Images\Application16.png">
<ImageId>Application16</ImageId>
<AlternateText>Application 16</AlternateText>
</Content>
<Content Include="Help\Images\Application24.png">
<ImageId>Application24</ImageId>
<AlternateText>Application 24</AlternateText>
</Content>
<Content Include="Help\Images\Application256.png">
<ImageId>Application256</ImageId>
<AlternateText>Application 256</AlternateText>
</Content>
<Content Include="Help\Images\Application32.png">
<ImageId>Application32</ImageId>
<AlternateText>Application 32</AlternateText>
</Content>
<Content Include="Help\Images\Application48.png">
<ImageId>Application48</ImageId>
<AlternateText>Application 48</AlternateText>
</Content>
<Content Include="Help\Images\ApplicationXP16.png">
<ImageId>ApplicationXP16</ImageId>
<AlternateText>ApplicationXP 16</AlternateText>
</Content>
<Content Include="Help\Images\ApplicationXP32.png">
<ImageId>ApplicationXP32</ImageId>
<AlternateText>ApplicationXP 32</AlternateText>
</Content>
<Content Include="Help\Images\ErrorXP16.png">
<ImageId>ErrorXP16</ImageId>
<AlternateText>ErrorXP 16</AlternateText>
</Content>
<Content Include="Help\Images\ErrorXP32.png">
<ImageId>ErrorXP32</ImageId>
<AlternateText>ErrorXP 32</AlternateText>
</Content>
<Content Include="Help\Images\InformationXP16.png">
<ImageId>InformationXP16</ImageId>
<AlternateText>InformationXP 16</AlternateText>
</Content>
<Content Include="Help\Images\InformationXP32.png">
<ImageId>InformationXP32</ImageId>
<AlternateText>InformationXP 32</AlternateText>
</Content>
<Content Include="Help\Images\QuestionXP16.png">
<ImageId>QuestionXP16</ImageId>
<AlternateText>QuestionXP 16</AlternateText>
</Content>
<Content Include="Help\Images\QuestionXP32.png">
<ImageId>QuestionXP32</ImageId>
<AlternateText>QuestionXP 32</AlternateText>
</Content>
<Content Include="Help\Images\SecurityError16.png">
<ImageId>SecurityError16</ImageId>
<AlternateText>Security Error 16</AlternateText>
</Content>
<Content Include="Help\Images\SecurityError24.png">
<ImageId>SecurityError24</ImageId>
<AlternateText>Security Error 24</AlternateText>
</Content>
<Content Include="Help\Images\SecurityError256.png">
<ImageId>SecurityError256</ImageId>
<AlternateText>Security Error 256</AlternateText>
</Content>
<Content Include="Help\Images\SecurityError32.png">
<ImageId>SecurityError32</ImageId>
<AlternateText>Security Error 32</AlternateText>
</Content>
<Content Include="Help\Images\SecurityError48.png">
<ImageId>SecurityError48</ImageId>
<AlternateText>Security Error 48</AlternateText>
</Content>
<Content Include="Help\Images\SecurityQuestion16.png">
<ImageId>SecurityQuestion16</ImageId>
<AlternateText>Security Question 16</AlternateText>
</Content>
<Content Include="Help\Images\SecurityQuestion24.png">
<ImageId>SecurityQuestion24</ImageId>
<AlternateText>Security Question 24</AlternateText>
</Content>
<Content Include="Help\Images\SecurityQuestion256.png">
<ImageId>SecurityQuestion256</ImageId>
<AlternateText>Security Question 256</AlternateText>
</Content>
<Content Include="Help\Images\SecurityQuestion32.png">
<ImageId>SecurityQuestion32</ImageId>
<AlternateText>Security Question 32</AlternateText>
</Content>
<Content Include="Help\Images\SecurityQuestion48.png">
<ImageId>SecurityQuestion48</ImageId>
<AlternateText>Security Question 48</AlternateText>
</Content>
<Content Include="Help\Images\SecuritySuccess16.png">
<ImageId>SecuritySuccess16</ImageId>
<AlternateText>Security Success 16</AlternateText>
</Content>
<Content Include="Help\Images\SecuritySuccess24.png">
<ImageId>SecuritySuccess24</ImageId>
<AlternateText>Security Success 24</AlternateText>
</Content>
<Content Include="Help\Images\SecuritySuccess256.png">
<ImageId>SecuritySuccess256</ImageId>
<AlternateText>Security Success 256</AlternateText>
</Content>
<Content Include="Help\Images\SecuritySuccess32.png">
<ImageId>SecuritySuccess32</ImageId>
<AlternateText>Security Success 32</AlternateText>
</Content>
<Content Include="Help\Images\SecuritySuccess48.png">
<ImageId>SecuritySuccess48</ImageId>
<AlternateText>Security Success 48</AlternateText>
</Content>
<Content Include="Help\Images\SecurityWarning16.png">
<ImageId>SecurityWarning16</ImageId>
<AlternateText>Security Warning 16</AlternateText>
</Content>
<Content Include="Help\Images\SecurityWarning24.png">
<ImageId>SecurityWarning24</ImageId>
<AlternateText>Security Warning 24</AlternateText>
</Content>
<Content Include="Help\Images\SecurityWarning256.png">
<ImageId>SecurityWarning256</ImageId>
<AlternateText>Security Warning 256</AlternateText>
</Content>
<Content Include="Help\Images\SecurityWarning32.png">
<ImageId>SecurityWarning32</ImageId>
<AlternateText>Security Warning 32</AlternateText>
</Content>
<Content Include="Help\Images\SecurityWarning48.png">
<ImageId>SecurityWarning48</ImageId>
<AlternateText>Security Warning 48</AlternateText>
</Content>
<Content Include="Help\Images\ShieldXP16.png">
<ImageId>ShieldXP16</ImageId>
<AlternateText>ShieldXP 16</AlternateText>
</Content>
<Content Include="Help\Images\ShieldXP32.png">
<ImageId>ShieldXP32</ImageId>
<AlternateText>ShieldXP 32</AlternateText>
</Content>
<Content Include="Help\Images\ShieldXP48.png">
<ImageId>ShieldXP48</ImageId>
<AlternateText>ShieldXP 48</AlternateText>
</Content>
<Content Include="Help\Images\WarningXP16.png">
<ImageId>WarningXP16</ImageId>
<AlternateText>WarningXP 16</AlternateText>
</Content>
<Content Include="Help\Images\WarningXP32.png">
<ImageId>WarningXP32</ImageId>
<AlternateText>WarningXP 32</AlternateText>
</Content>
<Content Include="Help\Images\Warning64.png">
<ImageId>Warning64</ImageId>
<AlternateText>Warning 64</AlternateText>
</Content>
<Content Include="Help\Images\Warning32W10.png">
<ImageId>Warning32W10</ImageId>
<AlternateText>Warning 32 W 10</AlternateText>
</Content>
<Content Include="Help\Images\Warning24.png">
<ImageId>Warning24</ImageId>
<AlternateText>Warning 24</AlternateText>
</Content>
<Content Include="Help\Images\Warning20.png">
<ImageId>Warning20</ImageId>
<AlternateText>Warning 20</AlternateText>
</Content>
<Content Include="Help\Images\Warning16W10.png">
<ImageId>Warning16W10</ImageId>
<AlternateText>Warning 16 W 10</AlternateText>
</Content>
<Content Include="Help\Images\Warning16W11.png">
<ImageId>Warning16W11</ImageId>
</Content>
<Content Include="Help\Images\Warning32W11.png">
<ImageId>Warning32W11</ImageId>
</Content>
<Content Include="Help\Images\Shield32W10.png">
<ImageId>Shield32W10</ImageId>
<AlternateText>Shield 32 W 10</AlternateText>
</Content>
<Content Include="Help\Images\Shield16W10.png">
<ImageId>Shield16W10</ImageId>
<AlternateText>Shield 16 W 10</AlternateText>
</Content>
<Content Include="Help\Images\Shield16W11.png">
<ImageId>Shield16W11</ImageId>
</Content>
<Content Include="Help\Images\Shield32W11.png">
<ImageId>Shield32W11</ImageId>
</Content>
<Content Include="Help\Images\Question32W10.png">
<ImageId>Question32W10</ImageId>
<AlternateText>Question 32 W 10</AlternateText>
</Content>
<Content Include="Help\Images\Question24.png">
<ImageId>Question24</ImageId>
<AlternateText>Question 24</AlternateText>
</Content>
<Content Include="Help\Images\Question20.png">
<ImageId>Question20</ImageId>
<AlternateText>Question 20</AlternateText>
</Content>
<Content Include="Help\Images\Question16W10.png">
<ImageId>Question16W10</ImageId>
<AlternateText>Question 16 W 10</AlternateText>
</Content>
<Content Include="Help\Images\Question16W11.png">
<ImageId>Question16W11</ImageId>
</Content>
<Content Include="Help\Images\Question32W11.png">
<ImageId>Question32W11</ImageId>
</Content>
<Content Include="Help\Images\Information64.png">
<ImageId>Information64</ImageId>
<AlternateText>Information 64</AlternateText>
</Content>
<Content Include="Help\Images\Information32W10.png">
<ImageId>Information32W10</ImageId>
<AlternateText>Information 32 W 10</AlternateText>
</Content>
<Content Include="Help\Images\Information24.png">
<ImageId>Information24</ImageId>
<AlternateText>Information 24</AlternateText>
</Content>
<Content Include="Help\Images\Information20.png">
<ImageId>Information20</ImageId>
<AlternateText>Information 20</AlternateText>
</Content>
<Content Include="Help\Images\Information16W10.png">
<ImageId>Information16W10</ImageId>
<AlternateText>Information 16 W 10</AlternateText>
</Content>
<Content Include="Help\Images\Information16W11.png">
<ImageId>Information16W11</ImageId>
</Content>
<Content Include="Help\Images\Information32W11.png">
<ImageId>Information32W11</ImageId>
</Content>
<Content Include="Help\Images\Error64.png">
<ImageId>Error64</ImageId>
<AlternateText>Error 64</AlternateText>
</Content>
<Content Include="Help\Images\Error32W10.png">
<ImageId>Error32W10</ImageId>
<AlternateText>Error 32 W 10</AlternateText>
</Content>
<Content Include="Help\Images\Error20.png">
<ImageId>Error20</ImageId>
<AlternateText>Error 20</AlternateText>
</Content>
<Content Include="Help\Images\Error16W10.png">
<ImageId>Error16W10</ImageId>
<AlternateText>Error 16 W 10</AlternateText>
</Content>
<Content Include="Help\Images\Error16W11.png">
<ImageId>Error16W11</ImageId>
</Content>
<Content Include="Help\Images\Error32W11.png">
<ImageId>Error32W11</ImageId>
</Content>
<Content Include="Help\Images\Application64.png">
<ImageId>Application64</ImageId>
<AlternateText>Application 64</AlternateText>
</Content>
<Content Include="Help\Images\Application32W10.png">
<ImageId>Application32W10</ImageId>
<AlternateText>Application 32 W 10</AlternateText>
</Content>
<Content Include="Help\Images\Application16W10.png">
<ImageId>Application16W10</ImageId>
<AlternateText>Application 16 W 10</AlternateText>
</Content>
<Content Include="Help\Images\Application32W11.png">
<ImageId>Application32W11</ImageId>
</Content>
<Content Include="Help\Images\Application16W11.png">
<ImageId>Application16W11</ImageId>
</Content>
<Content Include="Help\Images\Shield24bppCyan.png">
<ImageId>ConvertPixelFormat24bppCyan</ImageId>
<AlternateText>Convert Pixel Format 24bpp Cyan</AlternateText>
</Content>
<Content Include="Help\Images\ShieldGrayscaleCyan.png">
<ImageId>ConvertPixelFormat16bppGrayscale</ImageId>
<AlternateText>Convert Pixel Format 16bpp Grayscale</AlternateText>
</Content>
<Content Include="Help\Images\ShieldMedianCut256BlackDitheredBN.gif">
<ImageId>ConvertPixelFormat8bppOptimizedDithered</ImageId>
<AlternateText>Convert Pixel Format 8bpp Optimized Dithered</AlternateText>
</Content>
<Content Include="Help\Images\AlphaGradient.png">
<ImageId>AlphaGradient</ImageId>
<AlternateText>Alpha Gradient</AlternateText>
</Content>
<Content Include="Help\Images\AlphaGradientRgb888Black.png">
<ImageId>AlphaGradientRgb888Black</ImageId>
<AlternateText>Alpha Gradient Rgb 888 Black</AlternateText>
</Content>
<Content Include="Help\Images\AlphaGradientRgb888White.png">
<ImageId>AlphaGradientRgb888White</ImageId>
<AlternateText>Alpha Gradient Rgb 888 White</AlternateText>
</Content>
<Content Include="Help\Images\AlphaGradientRgb888Silver.png">
<ImageId>AlphaGradientRgb888Silver</ImageId>
<AlternateText>Alpha Gradient Rgb 888 Silver</AlternateText>
</Content>
<Content Include="Help\Images\ShieldRgb888Silver.png">
<ImageId>ShieldRgb888Silver</ImageId>
<AlternateText>Shield Rgb 888 Silver</AlternateText>
</Content>
<Content Include="Help\Images\AlphaGradientRgb565Black.png">
<ImageId>AlphaGradientRgb565Black</ImageId>
<AlternateText>Alpha Gradient Rgb 565 Black</AlternateText>
</Content>
<Content Include="Help\Images\AlphaGradientRgb565Silver.png">
<ImageId>AlphaGradientRgb565Silver</ImageId>
<AlternateText>Alpha Gradient Rgb 565 Silver</AlternateText>
</Content>
<Content Include="Help\Images\ShieldRgb565Black.png">
<ImageId>ShieldRgb565Black</ImageId>
<AlternateText>Shield Rgb 565 Black</AlternateText>
</Content>
<Content Include="Help\Images\ShieldRgb565Silver.png">
<ImageId>ShieldRgb565Silver</ImageId>
<AlternateText>Shield Rgb 565 Silver</AlternateText>
</Content>
<Content Include="Help\Images\AlphaGradientRgb555Black.png">
<ImageId>AlphaGradientRgb555Black</ImageId>
<AlternateText>Alpha Gradient Rgb 555 Black</AlternateText>
</Content>
<Content Include="Help\Images\AlphaGradientRgb555Silver.png">
<ImageId>AlphaGradientRgb555Silver</ImageId>
<AlternateText>Alpha Gradient Rgb 555 Silver</AlternateText>
</Content>
<Content Include="Help\Images\ShieldRgb555Black.png">
<ImageId>ShieldRgb555Black</ImageId>
<AlternateText>Shield Rgb 555 Black</AlternateText>
</Content>
<Content Include="Help\Images\ShieldRgb555Silver.png">
<ImageId>ShieldRgb555Silver</ImageId>
<AlternateText>Shield Rgb 555 Silver</AlternateText>
</Content>
<Content Include="Help\Images\AlphaGradientRgb565SilverDithered.png">
<ImageId>AlphaGradientRgb565SilverDithered</ImageId>
<AlternateText>Alpha Gradient Rgb 565 Silver Dithered</AlternateText>
</Content>
<Content Include="Help\Images\ShieldRgb565SilverDithered.png">
<ImageId>ShieldRgb565SilverDithered</ImageId>
<AlternateText>Shield Rgb 565 Silver Dithered</AlternateText>
</Content>
<Content Include="Help\Images\AlphaGradientRgb555SilverDithered.png">
<ImageId>AlphaGradientRgb555SilverDithered</ImageId>
<AlternateText>Alpha Gradient Rgb 555 Silver Dithered</AlternateText>
</Content>
<Content Include="Help\Images\ShieldRgb555SilverDithered.png">
<ImageId>ShieldRgb555SilverDithered</ImageId>
<AlternateText>Shield Rgb 555 Silver Dithered</AlternateText>
</Content>
<Content Include="Help\Images\AlphaGradientArgb1555BlackA128.png">
<ImageId>AlphaGradientArgb1555BlackA128</ImageId>
<AlternateText>Alpha Gradient Argb 1555 Black A 128</AlternateText>
</Content>
<Content Include="Help\Images\AlphaGradientArgb1555SilverA1.png">
<ImageId>AlphaGradientArgb1555SilverA1</ImageId>
<AlternateText>Alpha Gradient Argb 1555 Silver A 1</AlternateText>
</Content>
<Content Include="Help\Images\AlphaGradientArgb1555SilverDithered.png">
<ImageId>AlphaGradientArgb1555SilverDithered</ImageId>
<AlternateText>Alpha Gradient Argb 1555 Silver Dithered</AlternateText>
</Content>
<Content Include="Help\Images\ShieldArgb1555BlackA128.png">
<ImageId>ShieldArgb1555BlackA128</ImageId>
<AlternateText>Shield Argb 1555 Black A 128</AlternateText>
</Content>
<Content Include="Help\Images\ShieldArgb1555SilverA1.png">
<ImageId>ShieldArgb1555SilverA1</ImageId>
<AlternateText>Shield Argb 1555 Silver A 1</AlternateText>
</Content>
<Content Include="Help\Images\ShieldArgb1555SilverA128Dithered.png">
<ImageId>ShieldArgb1555SilverA128Dithered</ImageId>
<AlternateText>Shield Argb 1555 Silver A 128 Dithered</AlternateText>
</Content>
<Content Include="Help\Images\Lena.png">
<ImageId>Lena</ImageId>
<AlternateText>Lena</AlternateText>
</Content>
<Content Include="Help\Images\AlphaGradientRgb332Black.gif">
<ImageId>AlphaGradientRgb332Black</ImageId>
<AlternateText>Alpha Gradient Rgb 332 Black</AlternateText>
</Content>
<Content Include="Help\Images\AlphaGradientRgb332Silver.gif">
<ImageId>AlphaGradientRgb332Silver</ImageId>
<AlternateText>Alpha Gradient Rgb 332 Silver</AlternateText>
</Content>
<Content Include="Help\Images\AlphaGradientRgb332SilverDM.gif">
<ImageId>AlphaGradientRgb332SilverDM</ImageId>
<AlternateText>Alpha Gradient Rgb 332 SilverDM</AlternateText>
</Content>
<Content Include="Help\Images\AlphaGradientRgb332SilverDMDitheredB8.gif">
<ImageId>AlphaGradientRgb332SilverDMDithered</ImageId>
<AlternateText>Alpha Gradient Rgb 332 SilverDMDithered</AlternateText>
</Content>
<Content Include="Help\Images\LenaRgb332.gif">
<ImageId>LenaRgb332</ImageId>
<AlternateText>Lena Rgb 332</AlternateText>
</Content>
<Content Include="Help\Images\LenaRgb332DM.gif">
<ImageId>LenaRgb332DM</ImageId>
<AlternateText>Lena Rgb 332DM</AlternateText>
</Content>
<Content Include="Help\Images\LenaRgb332DMFloydSteinberg.gif">
<ImageId>LenaRgb332DMDithered</ImageId>
<AlternateText>Lena Rgb 332DMDithered</AlternateText>
</Content>
<Content Include="Help\Images\ShieldRgb332Black.gif">
<ImageId>ShieldRgb332Black</ImageId>
<AlternateText>Shield Rgb 332 Black</AlternateText>
</Content>
<Content Include="Help\Images\ShieldRgb332Silver.gif">
<ImageId>ShieldRgb332Silver</ImageId>
<AlternateText>Shield Rgb 332 Silver</AlternateText>
</Content>
<Content Include="Help\Images\ShieldRgb332SilverDM.gif">
<ImageId>ShieldRgb332SilverDM</ImageId>
<AlternateText>Shield Rgb 332 SilverDM</AlternateText>
</Content>
<Content Include="Help\Images\ShieldRgb332SilverDMDithered.gif">
<ImageId>ShieldRgb332SilverDMDithered</ImageId>
<AlternateText>Shield Rgb 332 SilverDMDithered</AlternateText>
</Content>
<Content Include="Help\Images\AlphaGradientGray8bppBlack.gif">
<ImageId>AlphaGradientGray8bppBlack</ImageId>
<AlternateText>Alpha Gradient Gray 8bpp Black</AlternateText>
</Content>
<Content Include="Help\Images\AlphaGradientGray8bppSilver.gif">
<ImageId>AlphaGradientGray8bppSilver</ImageId>
<AlternateText>Alpha Gradient Gray 8bpp Silver</AlternateText>
</Content>
<Content Include="Help\Images\ShieldGray8bppBlack.gif">
<ImageId>ShieldGray8bppBlack</ImageId>
<AlternateText>Shield Gray 8bpp Black</AlternateText>
</Content>
<Content Include="Help\Images\ShieldGray8bppSilver.gif">
<ImageId>ShieldGray8bppSilver</ImageId>
<AlternateText>Shield Gray 8bpp Silver</AlternateText>
</Content>
<Content Include="Help\Images\Cameraman.png">
<ImageId>Cameraman</ImageId>
<AlternateText>Cameraman</AlternateText>
</Content>
<Content Include="Help\Images\ShieldGrayscale.png">
<ImageId>ShieldGrayscale</ImageId>
<AlternateText>Shield Grayscale</AlternateText>
</Content>
<Content Include="Help\Images\ShieldRgb888Black.png">
<ImageId>ShieldRgb888Black</ImageId>
<AlternateText>Shield Rgb 888 Black</AlternateText>
</Content>
<Content Include="Help\Images\AlphaGradientGray2bppBlack.gif">
<ImageId>AlphaGradient2bppBlack</ImageId>
<AlternateText>Alpha Gradient 2bpp Black</AlternateText>
</Content>
<Content Include="Help\Images\AlphaGradientGray2bppSilver.gif">
<ImageId>AlphaGradient2bppSilver</ImageId>
<AlternateText>Alpha Gradient 2bpp Silver</AlternateText>
</Content>
<Content Include="Help\Images\AlphaGradientGray2bppSilverDirect.gif">
<ImageId>AlphaGradient2bppSilverDirect</ImageId>
<AlternateText>Alpha Gradient 2bpp Silver Direct</AlternateText>
</Content>
<Content Include="Help\Images\AlphaGradientGray2bppSilverDitheredB8.gif">
<ImageId>AlphaGradient2bppSilverDirectDitheredB8</ImageId>
<AlternateText>Alpha Gradient 2bpp Silver Direct Dithered B 8</AlternateText>
</Content>
<Content Include="Help\Images\Cameraman2bpp.gif">
<ImageId>Cameraman2bpp</ImageId>
<AlternateText>Cameraman 2bpp</AlternateText>
</Content>
<Content Include="Help\Images\Cameraman2bppDirect.gif">
<ImageId>Cameraman2bppDirect</ImageId>
<AlternateText>Cameraman 2bpp Direct</AlternateText>
</Content>
<Content Include="Help\Images\Cameraman2bppDirectDitheredFS.gif">
<ImageId>Cameraman2bppDirectDitheredFS</ImageId>
<AlternateText>Cameraman 2bpp Direct DitheredFS</AlternateText>
</Content>
<Content Include="Help\Images\GrayShades2bpp.gif">
<ImageId>GrayShades2bpp</ImageId>
<AlternateText>Gray Shades 2bpp</AlternateText>
</Content>
<Content Include="Help\Images\GrayShades2bppDirect.gif">
<ImageId>GrayShades2bppDirect</ImageId>
<AlternateText>Gray Shades 2bpp Direct</AlternateText>
</Content>
<Content Include="Help\Images\GrayShades2bppDitheredB8.gif">
<ImageId>GrayShades2bppDitheredB8</ImageId>
<AlternateText>Gray Shades 2bpp Dithered B 8</AlternateText>
</Content>
<Content Include="Help\Images\ShieldGray2bppBlack.gif">
<ImageId>Shield2bppBlack</ImageId>
<AlternateText>Shield 2bpp Black</AlternateText>
</Content>
<Content Include="Help\Images\ShieldGray2bppSilver.gif">
<ImageId>Shield2bppSilver</ImageId>
<AlternateText>Shield 2bpp Silver</AlternateText>
</Content>
<Content Include="Help\Images\ShieldGray2bppSilverDirect.gif">
<ImageId>Shield2bppSilverDirect</ImageId>
<AlternateText>Shield 2bpp Silver Direct</AlternateText>
</Content>
<Content Include="Help\Images\ShieldGray2bppSilverDirectDitheredFS.gif">
<ImageId>Shield2bppSilverDirectDitheredFS</ImageId>
<AlternateText>Shield 2bpp Silver Direct DitheredFS</AlternateText>
</Content>
<Content Include="Help\Images\GrayShades.gif">
<ImageId>GrayShades</ImageId>
<AlternateText>Gray Shades</AlternateText>
</Content>
<Content Include="Help\Images\AlphaGradientGray4bppBlack.gif">
<ImageId>AlphaGradientGray4bppBlack</ImageId>
<AlternateText>Alpha Gradient Gray 4bpp Black</AlternateText>
</Content>
<Content Include="Help\Images\AlphaGradientGray4bppSilver.gif">
<ImageId>AlphaGradientGray4bppSilver</ImageId>
<AlternateText>Alpha Gradient Gray 4bpp Silver</AlternateText>
</Content>
<Content Include="Help\Images\AlphaGradientGray4bppSilverDirect.gif">
<ImageId>AlphaGradientGray4bppSilverDirect</ImageId>
<AlternateText>Alpha Gradient Gray 4bpp Silver Direct</AlternateText>
</Content>
<Content Include="Help\Images\AlphaGradientGray4bppSilverDitheredB8.gif">
<ImageId>AlphaGradientGray4bppSilverDitheredB8</ImageId>
<AlternateText>Alpha Gradient Gray 4bpp Silver Dithered B 8</AlternateText>
</Content>
<Content Include="Help\Images\GrayShades4bpp.gif">
<ImageId>GrayShades4bpp</ImageId>
<AlternateText>Gray Shades 4bpp</AlternateText>
</Content>
<Content Include="Help\Images\GrayShades4bppDirect.gif">
<ImageId>GrayShades4bppDirect</ImageId>
<AlternateText>Gray Shades 4bpp Direct</AlternateText>
</Content>
<Content Include="Help\Images\GrayShades4bppDitheredB8.gif">
<ImageId>GrayShades4bppDitheredB8</ImageId>
<AlternateText>Gray Shades 4bpp Dithered B 8</AlternateText>
</Content>
<Content Include="Help\Images\ShieldGray4bppBlack.gif">
<ImageId>ShieldGray4bppBlack</ImageId>
<AlternateText>Shield Gray 4bpp Black</AlternateText>
</Content>
<Content Include="Help\Images\ShieldGray4bppSilver.gif">
<ImageId>ShieldGray4bppSilver</ImageId>
<AlternateText>Shield Gray 4bpp Silver</AlternateText>
</Content>
<Content Include="Help\Images\ShieldGray4bppSilverDirect.gif">
<ImageId>ShieldGray4bppSilverDirect</ImageId>
<AlternateText>Shield Gray 4bpp Silver Direct</AlternateText>
</Content>
<Content Include="Help\Images\ShieldGray4bppSilverDirectDitheredFS.gif">
<ImageId>ShieldGray4bppSilverDirectDitheredFS</ImageId>
<AlternateText>Shield Gray 4bpp Silver Direct DitheredFS</AlternateText>
</Content>
<Content Include="Help\Images\GrayShadesRgb332.gif">
<ImageId>GrayShadesRgb332</ImageId>
<AlternateText>Gray Shades Rgb 332</AlternateText>
</Content>
<Content Include="Help\Images\GrayShadesRgb332Direct.gif">
<ImageId>GrayShadesRgb332Direct</ImageId>
<AlternateText>Gray Shades Rgb 332 Direct</AlternateText>
</Content>
<Content Include="Help\Images\GrayShadesRgb332DirectDitheredB8.gif">
<ImageId>GrayShadesRgb332DirectDitheredB8</ImageId>
<AlternateText>Gray Shades Rgb 332 Direct Dithered B 8</AlternateText>
</Content>
<Content Include="Help\Images\GrayShadesRgb332DitheredB8.gif">
<ImageId>GrayShadesRgb332DitheredB8</ImageId>
<AlternateText>Gray Shades Rgb 332 Dithered B 8</AlternateText>
</Content>
<Content Include="Help\Images\AlphaGradientBWBlack.gif">
<ImageId>AlphaGradientBWBlack</ImageId>
<AlternateText>Alpha GradientBWBlack</AlternateText>
</Content>
<Content Include="Help\Images\AlphaGradientBWSilver.gif">
<ImageId>AlphaGradientBWSilver</ImageId>
<AlternateText>Alpha GradientBWSilver</AlternateText>
</Content>
<Content Include="Help\Images\AlphaGradientBWSilverDitheredB8.gif">
<ImageId>AlphaGradientBWSilverDitheredB8</ImageId>
<AlternateText>Alpha GradientBWSilver Dithered B 8</AlternateText>
</Content>
<Content Include="Help\Images\CameramanBW.gif">
<ImageId>CameramanBW</ImageId>
<AlternateText>CameramanBW</AlternateText>
</Content>
<Content Include="Help\Images\CameramanBWThr96.gif">
<ImageId>CameramanBWThr96</ImageId>
<AlternateText>CameramanBWThr 96</AlternateText>
</Content>
<Content Include="Help\Images\CameramanBWThr96DitheredB8.gif">
<ImageId>CameramanBWThr96DitheredB8</ImageId>
<AlternateText>CameramanBWThr 96 Dithered B 8</AlternateText>
</Content>
<Content Include="Help\Images\CameramanBWThr96DitheredFS.gif">
<ImageId>CameramanBWThr96DitheredFS</ImageId>
<AlternateText>CameramanBWThr 96 DitheredFS</AlternateText>
</Content>
<Content Include="Help\Images\GrayShadesBW.gif">
<ImageId>GrayShadesBW</ImageId>
<AlternateText>Gray ShadesBW</AlternateText>
</Content>
<Content Include="Help\Images\GrayShadesBWDitheredB8.gif">
<ImageId>GrayShadesBWDitheredB8</ImageId>
<AlternateText>Gray ShadesBWDithered B 8</AlternateText>
</Content>
<Content Include="Help\Images\GrayShadesBWThr224.gif">
<ImageId>GrayShadesBWThr224</ImageId>
<AlternateText>Gray ShadesBWThr 224</AlternateText>
</Content>
<Content Include="Help\Images\GrayShadesBWThr32.gif">
<ImageId>GrayShadesBWThr32</ImageId>
<AlternateText>Gray ShadesBWThr 32</AlternateText>
</Content>
<Content Include="Help\Images\ShieldBWBlack.gif">
<ImageId>ShieldBWBlack</ImageId>
<AlternateText>ShieldBWBlack</AlternateText>
</Content>
<Content Include="Help\Images\ShieldBWSilver.gif">
<ImageId>ShieldBWSilver</ImageId>
<AlternateText>ShieldBWSilver</AlternateText>
</Content>
<Content Include="Help\Images\ShieldBWSilverDitheredFS.gif">
<ImageId>ShieldBWSilverDitheredFS</ImageId>
<AlternateText>ShieldBWSilver DitheredFS</AlternateText>
</Content>
<Content Include="Help\Images\AlphaGradientDefault8bppBlackA128.gif">
<ImageId>AlphaGradientDefault8bppBlackA128</ImageId>
<AlternateText>Alpha Gradient Default 8bpp Black A 128</AlternateText>
</Content>
<Content Include="Help\Images\AlphaGradientDefault8bppSilverA1.gif">
<ImageId>AlphaGradientDefault8bppSilverA1</ImageId>
<AlternateText>Alpha Gradient Default 8bpp Silver A 1</AlternateText>
</Content>
<Content Include="Help\Images\AlphaGradientDefault8bppSilverA128DitheredB8.gif">
<ImageId>AlphaGradientDefault8bppSilverDitheredB8</ImageId>
<AlternateText>Alpha Gradient Default 8bpp Silver Dithered B 8</AlternateText>
</Content>
<Content Include="Help\Images\GrayShadesDefault8bpp.gif">
<ImageId>GrayShadesDefault8bpp</ImageId>
<AlternateText>Gray Shades Default 8bpp</AlternateText>
</Content>
<Content Include="Help\Images\GrayShadesDefault8bppDitheredB8.gif">
<ImageId>GrayShadesDefault8bppDitheredB8</ImageId>
<AlternateText>Gray Shades Default 8bpp Dithered B 8</AlternateText>
</Content>
<Content Include="Help\Images\ShieldDefault8bppBlack.gif">
<ImageId>ShieldDefault8bppBlack</ImageId>
<AlternateText>Shield Default 8bpp Black</AlternateText>
</Content>
<Content Include="Help\Images\ShieldDefault8bppBlackDitheredB8.gif">
<ImageId>ShieldDefault8bppBlackDitheredB8</ImageId>
<AlternateText>Shield Default 8bpp Black Dithered B 8</AlternateText>
</Content>
<Content Include="Help\Images\ShieldDefault8bppSilverA1DitheredFS.gif">
<ImageId>ShieldDefault8bppSilverA1DitheredFS</ImageId>
<AlternateText>Shield Default 8bpp Silver A 1 DitheredFS</AlternateText>
</Content>
<Content Include="Help\Images\AlphaGradientDefault4bppBlack.gif">
<ImageId>AlphaGradientDefault4bppBlack</ImageId>
<AlternateText>Alpha Gradient Default 4bpp Black</AlternateText>
</Content>
<Content Include="Help\Images\AlphaGradientDefault4bppSilver.gif">
<ImageId>AlphaGradientDefault4bppSilver</ImageId>
<AlternateText>Alpha Gradient Default 4bpp Silver</AlternateText>
</Content>
<Content Include="Help\Images\AlphaGradientDefault4bppSilverDitheredB8.gif">
<ImageId>AlphaGradientDefault4bppSilverDitheredB8</ImageId>
<AlternateText>Alpha Gradient Default 4bpp Silver Dithered B 8</AlternateText>
</Content>
<Content Include="Help\Images\GrayShadesDefault4bpp.gif">
<ImageId>GrayShadesDefault4bpp</ImageId>
<AlternateText>Gray Shades Default 4bpp</AlternateText>
</Content>
<Content Include="Help\Images\GrayShadesDefault4bppDitheredB8.gif">
<ImageId>GrayShadesDefault4bppDitheredB8</ImageId>
<AlternateText>Gray Shades Default 4bpp Dithered B 8</AlternateText>
</Content>
<Content Include="Help\Images\GrayShadesDefault4bppDitheredB8Str-5.gif">
<ImageId>GrayShadesDefault4bppDitheredB8Str-5</ImageId>
<AlternateText>Gray Shades Default 4bpp Dithered B 8 Str-5</AlternateText>
</Content>
<Content Include="Help\Images\GrayShadesDefault4bppDitheredB8Interpolated.gif">
<ImageId>GrayShadesDefault4bppDitheredB8Interpolated</ImageId>
</Content>
<Content Include="Help\Images\ShieldDefault4bppBlack.gif">
<ImageId>ShieldDefault4bppBlack</ImageId>
<AlternateText>Shield Default 4bpp Black</AlternateText>
</Content>
<Content Include="Help\Images\ShieldDefault4bppSilver.gif">
<ImageId>ShieldDefault4bppSilver</ImageId>
<AlternateText>Shield Default 4bpp Silver</AlternateText>
</Content>
<Content Include="Help\Images\ShieldDefault4bppSilverDitheredFS.gif">
<ImageId>ShieldDefault4bppSilverDitheredFS</ImageId>
<AlternateText>Shield Default 4bpp Silver DitheredFS</AlternateText>
</Content>
<Content Include="Help\Images\AlphaGradientRgb111Black.gif">
<ImageId>AlphaGradientRgb111Black</ImageId>
<AlternateText>Alpha Gradient Rgb 111 Black</AlternateText>
</Content>
<Content Include="Help\Images\AlphaGradientRgb111Silver.gif">
<ImageId>AlphaGradientRgb111Silver</ImageId>
<AlternateText>Alpha Gradient Rgb 111 Silver</AlternateText>
</Content>
<Content Include="Help\Images\AlphaGradientRgb111SilverDitheredB8.gif">
<ImageId>AlphaGradientRgb111SilverDitheredB8</ImageId>
<AlternateText>Alpha Gradient Rgb 111 Silver Dithered B 8</AlternateText>
</Content>
<Content Include="Help\Images\LenaRgb111DitheredFS.gif">
<ImageId>LenaRgb111DitheredFS</ImageId>
<AlternateText>Lena Rgb 111 DitheredFS</AlternateText>
</Content>
<Content Include="Help\Images\ShieldRgb111Black.gif">
<ImageId>ShieldRgb111Black</ImageId>
<AlternateText>Shield Rgb 111 Black</AlternateText>
</Content>
<Content Include="Help\Images\ShieldRgb111Silver.gif">
<ImageId>ShieldRgb111Silver</ImageId>
<AlternateText>Shield Rgb 111 Silver</AlternateText>
</Content>
<Content Include="Help\Images\ShieldRgb111SilverDitheredFS.gif">
<ImageId>ShieldRgb111SilverDitheredFS</ImageId>
<AlternateText>Shield Rgb 111 Silver DitheredFS</AlternateText>
</Content>
<Content Include="Help\Images\AlphaGradientGrayscale.png">
<ImageId>AlphaGradientGrayscale</ImageId>
<AlternateText>Alpha Gradient Grayscale</AlternateText>