mirror of
https://github.com/babalae/better-genshin-impact.git
synced 2026-04-17 21:19:14 +08:00
22 lines
562 B
C#
22 lines
562 B
C#
using System.Globalization;
|
|
|
|
namespace MicaSetup.Design.Converters;
|
|
|
|
public enum PreferredCulture
|
|
{
|
|
/// <summary>
|
|
/// Uses the default culture provided by <seealso cref="IValueConverter"/>.
|
|
/// </summary>
|
|
ConverterCulture,
|
|
|
|
/// <summary>
|
|
/// Overrides the default converter culture with <seealso cref="CultureInfo.CurrentCulture"/>.
|
|
/// </summary>
|
|
CurrentCulture,
|
|
|
|
/// <summary>
|
|
/// Overrides the default converter culture with <seealso cref="CultureInfo.CurrentUICulture"/>.
|
|
/// </summary>
|
|
CurrentUICulture,
|
|
}
|