Skip to content

v0.10.0

Compare
Choose a tag to compare
@sourcechord sourcechord released this 11 Aug 13:01
· 13 commits to master since this release

New Features ✨

  • Update AcrylicWindow's acrylic effects
    • Add AcrylicWindow.AcrylicAccentState property
      • Specifies the type of acrylic effects.
    • Support Disabling acrylic effect by setting AcrylicWindow.Enabled to false(#88, #94)
      SwitchAcrylicEffect
    • Support ACCENT_ENABLE_ACRYLICBLURBEHIND(#42)
      • Windows10 still has laggy behavior with ACRYLICBLURBEHIND
      • Avoid laggy behavior by disabling acrylic blur when resizing or moving the window.
        AcrylicBlur
    • Fix full screen behavior(#36)
      • Prevent showing unnecessary blurred region on the another display
  • Add AcrylicMessageBox control.
var result = AcrylicMessageBox.Show(this, "This is AcrylicMessageBox\nTest", "Title", MessageBoxButton.YesNoCancel);

image

Bug Fix 🐛

  • Fix the issue that AcrylicBrush doesn't be rendered correctly without Width/Height properties(#10)
  • Fix the issue that sometimes TextBlock doesn't follow system themes(#120)
  • Fix the issue that DisplayMemberPath doesn't work with ComboBoxRevealStyle(#123)
  • Fix the issue that app crashes when referenced AccentColors before Application.Current.MainWindow initialized(#107)