我非常喜欢Sketchflow按钮和控件的粗略描述,并且很乐意在我自己的WPF应用程序中使用这些控件/样式,这可以在任何方面完成吗?也许只是引用Sketchflow二进制文件?
答案 0 :(得分:12)
我相信如果您执行以下操作,这应该有效:
最后,在xaml编辑模式下编辑app.xaml并确保它看起来像这样:
<Application.Resources>
<!-- Resources scoped at the Application level should be defined here. -->
<ResourceDictionary>
<ResourceDictionary.MergedDictionaries>
<ResourceDictionary Source="/Microsoft.Expression.Prototyping.SketchControls;component/ScrollViewerStyles.xaml"/>
<ResourceDictionary Source="SketchStyles.xaml" />
</ResourceDictionary.MergedDictionaries>
</ResourceDictionary>
</Application.Resources>
答案 1 :(得分:3)
Sketchflow应用程序对所有Sketch-Styles使用“SketchStyle.xaml”。您可以在使用Blend创建新的Sketchflow-Application时找到此xaml文件。
从这个xaml文件中你可以复制样式。您只需将所有样式复制到应用程序的app.xaml或ResourceDictionary中。 而且你可以使用它们,例如你的按钮,用:
<Button Content="My Button" Style="{DynamicResource Button-Sketch}"/>
我希望这对你有所帮助。