mirror of
https://github.com/greenshot/greenshot
synced 2025-07-15 01:23:47 -07:00
git-svn-id: http://svn.code.sf.net/p/greenshot/code/trunk@1825 7dccd23d-a4a3-4e1f-8c07-b4c1b4018ab4
27 lines
1 KiB
C#
27 lines
1 KiB
C#
#region Using directives
|
|
|
|
using System.Resources;
|
|
using System.Windows;
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
//In order to begin building localizable applications, set
|
|
//<UICulture>CultureYouAreCodingWith</UICulture> in your .csproj file
|
|
//inside a <PropertyGroup>. For example, if you are using US english
|
|
//in your source files, set the <UICulture> to en-US. Then uncomment
|
|
//the NeutralResourceLanguage attribute below. Update the "en-US" in
|
|
//the line below to match the UICulture setting in the project file.
|
|
|
|
//[assembly: NeutralResourcesLanguage("en-US", UltimateResourceFallbackLocation.Satellite)]
|
|
|
|
|
|
[assembly: ThemeInfo(
|
|
ResourceDictionaryLocation.None, //where theme specific resource dictionaries are located
|
|
//(used if a resource is not found in the page,
|
|
// or application resource dictionaries)
|
|
ResourceDictionaryLocation.SourceAssembly //where the generic resource dictionary is located
|
|
//(used if a resource is not found in the page,
|
|
// app, or any theme specific resource dictionaries)
|
|
)]
|