具有多个控件和 generic.xaml 的自定义控件库
如果我在一个自定义控件库中为两个不同的控件定义两种默认样式,我会收到错误...
是否可以在一个库中拥有两个或多个具有默认 generic.xaml 的控件?
谢谢
if i define two default styles for two different controls in one custom control lib i get errors...
is it possible to have two or more controls with a default generic.xaml in one lib?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
是的,这是可能的。推荐的方法是将每个控件的样式放置在其自己的资源字典中,并拥有一个引用其他控件的 Generic.xaml 文件。
例如,如果库中有两个控件:MyControl1 和 MyControl2。然后,您的项目的
Themes
文件夹中将包含以下文件:并且您的 generic.xaml 将如下所示:
Yes, it is possible. The recommended approach is to place styles for each control in its own resource dictionary and have one Generic.xaml file that will reference others.
So, for example, if you have two controls in your library: MyControl1 and MyControl2. Then you will have the following files in the
Themes
folder of your project:And your generic.xaml will look like this:
是的。
这不仅是可能的,而且是默认行为。
当然,这是假设这两个控件位于同一命名空间中。
您没有指定您遇到的错误,因此我无法提供更多详细信息。
Yes.
Not only is it possible, it is the default behavior.
This is, of course, assuming that the two controls are in the same namespace.
You don't specify the error(s) that you are getting, so I can't offer much more detail.