gpt4 book ai didi

c# - 在 WPF 自定义控件库 (.NET Framework) 中使用来自普通 WPF 项目的 App.xaml

转载 作者:行者123 更新时间:2023-11-30 23:10:17 24 4
gpt4 key购买 nike

我有一个带有 App.xaml(不是资源字典)的 WPF 项目,其中包含一些 Material 设计内容和一个 ViewModelLocator(MVVM),如下所示:

<Application.Resources>
<ResourceDictionary>
<ResourceDictionary.MergedDictionaries>
<ResourceDictionary Source="pack://application:,,,/MaterialDesignThemes.Wpf;component/Themes/MaterialDesignTheme.Light.xaml">
</ResourceDictionary>
<ResourceDictionary Source="pack://application:,,,/MaterialDesignThemes.Wpf;component/Themes/MaterialDesignTheme.Defaults.xaml">
</ResourceDictionary>
<!--<ResourceDictionary Source="pack://application:,,,/MaterialDesignColors;component/Themes/Recommended/Primary/MaterialDesignColor.DeepPurple.xaml">
</ResourceDictionary>
<ResourceDictionary Source="pack://application:,,,/MaterialDesignColors;component/Themes/Recommended/Accent/MaterialDesignColor.Lime.xaml">
</ResourceDictionary>-->
<!-- primary color -->
<ResourceDictionary>
<!-- include your primary palette -->
<ResourceDictionary.MergedDictionaries>
<ResourceDictionary Source="pack://application:,,,/MaterialDesignColors;component/Themes/MaterialDesignColor.teal.xaml">
</ResourceDictionary>
</ResourceDictionary.MergedDictionaries>
<!--
include three hues from the primary palette (and the associated forecolours).
Do not rename, keep in sequence; light to dark.
-->
<SolidColorBrush x:Key="PrimaryHueLightBrush"
Color="{StaticResource Primary100}" />
<SolidColorBrush x:Key="PrimaryHueLightForegroundBrush"
Color="{StaticResource Primary100Foreground}" />
<SolidColorBrush x:Key="PrimaryHueMidBrush"
Color="{StaticResource Primary500}" />
<SolidColorBrush x:Key="PrimaryHueMidForegroundBrush"
Color="{StaticResource Primary500Foreground}" />
<SolidColorBrush x:Key="PrimaryHueDarkBrush"
Color="{StaticResource Primary700}" />
<SolidColorBrush x:Key="PrimaryHueDarkForegroundBrush"
Color="{StaticResource Primary700Foreground}" />
</ResourceDictionary>
<!-- secondary colour -->
<ResourceDictionary>
<!-- include your secondary pallette -->
<ResourceDictionary.MergedDictionaries>
<ResourceDictionary Source="pack://application:,,,/MaterialDesignColors;component/Themes/MaterialDesignColor.teal.xaml">
</ResourceDictionary>
</ResourceDictionary.MergedDictionaries>
<!-- include a single secondary accent color (and the associated forecolour) -->
<SolidColorBrush x:Key="SecondaryAccentBrush"
Color="{StaticResource Accent200}" />
<SolidColorBrush x:Key="SecondaryAccentForegroundBrush"
Color="{StaticResource Accent200Foreground}" />
</ResourceDictionary>
<!-- Include the Dragablz Material Design style -->
<ResourceDictionary Source="pack://application:,,,/Dragablz;component/Themes/materialdesign.xaml">
</ResourceDictionary>

<ResourceDictionary Source="Resources/CustomMaterialDesignControls.xaml" />

</ResourceDictionary.MergedDictionaries>
<!-- tell Dragablz tab control to use the Material Design theme -->
<Style TargetType="{x:Type dragablz:TabablzControl}"
BasedOn="{StaticResource MaterialDesignTabablzControlStyle}" />
<vm:ViewModelLocator x:Key="Locator"
d:IsDataSource="True"
xmlns:vm="clr-namespace:**WPFProject**.ViewModels" />
</ResourceDictionary>
</Application.Resources>

当我在 WPFProject 中创建一个窗口时,它工作得很好。

但我还有一个 WPF 客户库项目。如何在我的自定义 WPF 项目中从 WPFProject 访问 App.xaml。

这是自定义 WPF 库项目中的 Window.xaml:

<Window x:Class="**CustomWPFLibrary**.Views.PersonView"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d"
xmlns:materialDesign="http://materialdesigninxaml.net/winfx/xaml/themes"
xmlns:i="clr-namespace:System.Windows.Interactivity;assembly=System.Windows.Interactivity"
TextElement.Foreground="{DynamicResource MaterialDesignBody}"
TextElement.FontWeight="Regular"
TextElement.FontSize="12"
TextOptions.TextFormattingMode="Ideal"
TextOptions.TextRenderingMode="Auto"
Background="{DynamicResource MaterialDesignPaper}"
FontFamily="{DynamicResource MaterialDesignFont}"
Title=" eFenKa - PERSONEN"
WindowStyle="SingleBorderWindow"
ResizeMode="CanResize"
WindowStartupLocation="CenterScreen"
WindowState="Maximized"
DataContext="{Binding PersonViewModel, Mode=OneWay, Source={StaticResource Locator}}">
<Grid>

</Grid>

Locator 和 MaterialDesign 的东西无法解决。有任何想法吗?或者这甚至可能吗?

最佳答案

TL;DR:我在 GitHub 上举了一个例子


编辑:另一位 GitHub 用户发布了一篇关于此主题的不错的文章:article .


问题

有两个项目,您希望在两个项目的设计器中显示样式。概括地说:

  • 一个WpfApplication项目(WindowsApplication的输出类型)
  • CustomControls 项目(ClassLibrary 的输出类型)

解决方案

我看到帖子建议共享 App.xaml 文件。根据完成方式的不同,可能会创建循环依赖关系,或者您可能会在尝试强制类库包含 ApplicationDefinition 时遇到问题。因此,我建议您将样式分离到第三个项目中。您的解决方案结构现在如下所示:

  • 一个WpfApplication项目(WindowsApplication的输出类型)
  • CustomControls 项目(ClassLibrary 的输出类型)
  • StylesProject 项目(ClassLibrary 的输出类型)

要使这些样式出现在 CustomControls 项目的设计 View 中并供您的 WpfApplication 使用:

  1. 一如既往,在进行更改之前备份您的解决方案(以防出现问题)。
  2. 在您的StylesProject 中,创建一个新的ResourceDictionary。这将是合并所有其他样式和资源的字典,因此请适当命名。
  3. 将您在 App.xaml 中定义的所有样式相关资源剪切并粘贴到新资源字典中。
  4. 在您的 WpfApplication 项目中,在您的 App.xaml 文件中引用您的新资源字典。您的应用程序现在应该看起来像您开始进行更改之前的样子。
  5. 在您的 CustomControls 项目中,在 Properties 文件夹下创建一个名为 DesignTimeResources.xaml 的新 ResourceDictionary。
  6. 构建您的解决方案。 注意:此时您实际上只需要构建 CustomControls 项目。
  7. 您现在必须编辑 CustomControls csproj。 注意:您可能必须卸载项目才能从 Visual Studio 执行此操作。
  8. CustomControls.csproj 中,搜索 DesignTimeResources.xaml。您应该找到一个如下所示的 block :
<Page Include="Properties\DesignTimeResources.xaml">
<SubType>Designer</SubType>
<Generator>MSBuild:Compile</Generator>
</Page>
  1. 将步骤 8 中的 block 替换为以下内容:
<Page Include="Properties\DesignTimeResources.xaml" Condition="'$(DesignTime)'=='true' OR ('$(SolutionPath)'!='' AND Exists('$(SolutionPath)') AND '$(BuildingInsideVisualStudio)'!='true' AND '$(BuildingInsideExpressionBlend)'!='true')">
<Generator>MSBuild:Compile</Generator>
<SubType>Designer</SubType>
<ContainsDesignTimeResources>true</ContainsDesignTimeResources>
</Page>
  1. 现在重新加载/构建 CustomControls 项目。
  2. 将对 ResourceDictionary 的引用从您的 StylesProject 添加到您刚刚创建的 DesignTimeResources.xaml 文件中。
  3. 重建您的解决方案。

您现在应该在您的 CustomControls 项目的设计器中看到您的样式!

关于c# - 在 WPF 自定义控件库 (.NET Framework) 中使用来自普通 WPF 项目的 App.xaml,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45441412/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com