如何创建像MahApps.Metro这样的资源字典文件?

时间:2013-06-25 09:16:23

标签: wpf styles

MahApps.Metro中,文件组织如下:

enter image description here

但我尝试这样:

enter image description here

谁能帮帮我?

1 个答案:

答案 0 :(得分:1)

这只是添加一个DependentUpon属性,将子项链接到父文件。

MahApps.Metro.csproj有类似的内容:

<Page Include="Styles\Controls.ComboBox.xaml">
  ...
  <DependentUpon>Controls.xaml</DependentUpon>
</Page>

您可以通过Addin for VisualStudio轻松完成此操作 - NestIn

然后,您可以选择多个文件 - &gt;右键单击 - &gt;选择Nest Item - &gt;选择父级,您应该根据所选集合编辑后端* .csproj。

可以找到here手动执行此操作的详细说明。