mirror of
https://github.com/achiez/NebulaAuth-Steam-Desktop-Authenticator-by-Achies.git
synced 2026-07-25 06:14:31 +00:00
1e65cd4a06
NebulaAuth: - Added MAAC and PortableMaClient for multi-confirmations - Code clean-ups, removed unused classes, refactoring of old files - SteamLib updated - Localization and UI updates - Dependcies updated to the last version LegacyConverter: - Added mode to decrypt mafiles
30 lines
749 B
C#
30 lines
749 B
C#
using System;
|
|
using System.Globalization;
|
|
using System.Windows;
|
|
using System.Windows.Data;
|
|
|
|
namespace NebulaAuth.Converters;
|
|
|
|
public class AnyMafilesToVisibilityConverter : IValueConverter
|
|
{
|
|
private static bool _everAnyMafiles;
|
|
public object Convert(object? value, Type targetType, object? parameter, CultureInfo culture)
|
|
{
|
|
if (_everAnyMafiles)
|
|
{
|
|
return Visibility.Collapsed;
|
|
}
|
|
if (value is 0)
|
|
{
|
|
return Visibility.Visible;
|
|
}
|
|
|
|
_everAnyMafiles = true;
|
|
return Visibility.Collapsed;
|
|
}
|
|
|
|
public object ConvertBack(object? value, Type targetType, object? parameter, CultureInfo culture)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
} |