您可以在 WPF 应用程序中使用 sketchflow 控件/样式吗?
我真的很喜欢 Sketchflow 按钮和控件的粗略性,并且很想在我自己的 WPF 应用程序中使用这些控件/样式,这是否可以完成?也许只引用 Sketchflow 二进制文件?
I really love the sketchy-ness of the Sketchflow buttons and controls, and would love to use those controls/styles in my own WPF app, can this be done in anyway? Perhaps just reference the Sketchflow binaries?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我相信如果您执行以下操作,这应该有效:
最后,在 xaml 编辑模式下编辑 app.xaml 并确保其如下所示:
I believe this should work if you do the following:
Last, edit app.xaml in xaml editing mode and make sure it looks like this:
Sketchflow 应用程序对所有草图样式使用“SketchStyle.xaml”。当您使用 Blend 创建新的 Sketchflow 应用程序时,您可以找到此 xaml 文件。
您可以从这个 xaml 文件中复制样式。您只需将所有样式复制到应用程序或资源字典的 app.xaml 中。
而且您可以直接使用它们,例如用于按钮:
我希望这对您有帮助。
the Sketchflow Application uses the "SketchStyle.xaml" for all of the Sketch-Styles. You can find this xaml-file when you create a new Sketchflow-Application with Blend.
And from this xaml-file you can copy the styles. You just have to copy all the style into the app.xaml of your Application or your ResourceDictionary.
And than you can just use them, for example for your buttons, with:
I hope this helped you.