Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试使用 svg 文件在 WinUI 应用程序中创建一些可扩展的按钮。目前我已经使用图像控件作为按钮的上下文来实现这一点,类似于以下内容:
<Button Name="MyButton"> <Image Source="Path/To/My/Image.svg"/> </Button>
svgs 是简单的黑白图像,但我想根据当前应用程序主题更改笔触颜色。有没有办法做到这一点,而不涉及创建一组单独的 DarkMode svgs?