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