mirror of
https://github.com/babalae/better-genshin-impact.git
synced 2026-04-12 15:33:32 +08:00
10 lines
214 B
C#
10 lines
214 B
C#
using System.Windows.Data;
|
|
using System.Windows.Media;
|
|
|
|
namespace MicaSetup.Design.Converters;
|
|
|
|
[ValueConversion(typeof(bool), typeof(Brush))]
|
|
public class BoolToBrushConverter : BoolToValueConverter<Brush>
|
|
{
|
|
}
|