using System; namespace Toolkit.UI.WinUI; public class IsStringNotNullOrEmptyConverter : ValueConverter { protected override bool ConvertTo(string value, Type? targetType, object? parameter, string? language) => !string.IsNullOrEmpty(value); }