feat:颜色设置中文字颜色透明修改

master
sunhonglei 6 months ago
parent 71a83be238
commit 6a723da533
  1. 7
      Views/Configuration/SettingPages/ModelColorSetPage.xaml.cs

@ -55,8 +55,11 @@ public partial class ModelColorSetPage
// 在这里处理 Content 变化后的逻辑
// 例如:
label.Background = new SolidColorBrush((Color)ColorConverter.ConvertFromString(newContent));
label.Foreground = new SolidColorBrush((Color)ColorConverter.ConvertFromString(newContent));
#if DEBUG
label.Foreground = GetInverseBrush(new SolidColorBrush((Color)ColorConverter.ConvertFromString(newContent)));
#else
label.Foreground = new SolidColorBrush(Colors.Transparent);
#endif
}
}

Loading…
Cancel
Save