Nu fungerar RoundRunningView med minimal codeBehind

This commit is contained in:
2025-10-22 10:42:39 +02:00
parent ecd3e90dbf
commit 26ff51169f
13 changed files with 374 additions and 116 deletions

View File

@ -0,0 +1,12 @@
using System.Globalization;
namespace GreadyPoang.Common;
public class HeaderColorConverter : IValueConverter
{
public object Convert(object value, Type targetType, object parameter, CultureInfo culture) =>
(bool)value ? Colors.DarkGray : Colors.Yellow;
public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture) =>
throw new NotImplementedException();
}