mirror of
https://github.com/Stone-Red-Code/docs-desktop.git
synced 2026-09-04 00:56:03 +02:00
* Update article and code projects * Further edits * Fix links * Relocate article & snippets to wpf/properties folder * add toc and redirects * Add acrolinx comment and make a minor edit. * minor Co-authored-by: Andy De George (adegeo) <[email protected]>
12 lines
553 B
VB.net
12 lines
553 B
VB.net
Imports System.Windows
|
|
|
|
'The ThemeInfo attribute describes where any theme specific and generic resource dictionaries can be found.
|
|
'1st parameter: where theme specific resource dictionaries are located
|
|
'(used if a resource is not found in the page,
|
|
' or application resource dictionaries)
|
|
|
|
'2nd parameter: where the generic resource dictionary is located
|
|
'(used if a resource is not found in the page,
|
|
'app, and any theme specific resource dictionaries)
|
|
<Assembly: ThemeInfo(ResourceDictionaryLocation.None, ResourceDictionaryLocation.SourceAssembly)>
|