0

我在应用程序中嵌入了一个 WPF 用户控件,它继承了应用程序的样式。我在设计用户控件时考虑了默认的 WPF 样式,它没有定义自己的资源/样式。但是,由于继承了宿主应用程序的样式,它看起来并不正确。如果用户控件只使用默认的 WPF 样式,我会更喜欢。有没有一种简单的方法可以做到这一点?

UserControl 本身由 a 组成System.Windows.Controls.Frame,它引用 a System.Windows.Control.Page

<UserControl x:Class="OrderParcelAddInPrototype.WpfControls.Controls.OrderParcelControl"
             xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
             xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
             xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" 
             xmlns:d="http://schemas.microsoft.com/expression/blend/2008" 
             mc:Ignorable="d"  d:DesignHeight="300" d:DesignWidth="450">
    <Frame Source="/OrderParcelAddInPrototype.WpfControls;component/Pages/MainPage.xaml" />
</UserControl>

theUserControl或 the都没有Page定义自己的样式。

<Page x:Class="OrderParcelAddInPrototype.WpfControls.Pages.StartPage"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
        xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
        mc:Ignorable="d" d:DesignHeight="300" d:DesignWidth="450" Title="Main Page">

    <ScrollViewer VerticalScrollBarVisibility="Auto">
        <StackPanel VerticalAlignment="Top" MaxWidth="350" CanVerticallyScroll="True"
                    ScrollViewer.CanContentScroll="True">
            <!-- Removed for brevity -->
        </StackPanel>
    </ScrollViewer>
</Page>
4

1 回答 1

0

在用户控件资源中定义您的用户控件样式并将该样式应用于用户控件

 <UserControl x:Class="MyNamespace.MyUserControl"
         ...
         Style="{DynamicResource ResourceKey=MyUserControlStyle}">
<UserControl.Resources>
    ...
    <Style x:Key="MyUserControlStyle" TargetType="{x:Type UserControl}">

    </Style>
</UserControl.Resources>

否则,您可以通过在 app.xaml 的资源字典中使用 mergedictionary 来合并用户控件的资源字典

于 2015-06-06T17:42:02.450 回答