mirror of
https://github.com/babalae/better-genshin-impact.git
synced 2026-04-05 11:25:20 +08:00
10 lines
208 B
C#
10 lines
208 B
C#
using System.Windows;
|
|
using System.Windows.Data;
|
|
|
|
namespace MicaSetup.Design.Converters;
|
|
|
|
[ValueConversion(typeof(bool), typeof(Style))]
|
|
public class BoolToStyleConverter : BoolToValueConverter<Style>
|
|
{
|
|
}
|