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.
我正在使用表达式混合。
我有一个草图按钮,按钮的边框看起来粗略且呈波浪状。有没有一种方法可以在不删除按钮的情况下将边框更改为实线?
它只是按钮上的一种样式。当你在做一个 Sketchflow 项目时,默认样式是在 SketchStyles.xaml 中定义的。ResourceDictionary当你将按钮添加到你的视图中时,应该有一些类似的东西Style="{DynamicResource Button-Sketch}"添加到该行中。只需删除它,您的按钮样式就消失了。您可以创建自定义样式以使按钮看起来像您想要的那样。
ResourceDictionary
Style="{DynamicResource Button-Sketch}"
如果您花时间设计您的视图,为什么要使用 SketchFlow?它背后的想法是快速原型化您的视图。它并不意味着成为您的最终产品。