mirror of
https://github.com/sourcegit-scm/sourcegit.git
synced 2024-12-26 21:17:20 -08:00
16 lines
No EOL
494 B
C#
16 lines
No EOL
494 B
C#
using Avalonia.Data.Converters;
|
|
|
|
namespace SourceGit.Converters
|
|
{
|
|
public static class IntConverters
|
|
{
|
|
public static FuncValueConverter<int, bool> IsGreaterThanZero =
|
|
new FuncValueConverter<int, bool>(v => v > 0);
|
|
|
|
public static FuncValueConverter<int, bool> IsZero =
|
|
new FuncValueConverter<int, bool>(v => v == 0);
|
|
|
|
public static FuncValueConverter<int, bool> IsOne =
|
|
new FuncValueConverter<int, bool>(v => v == 1);
|
|
}
|
|
} |