我有一个自定义UserControl
我尝试添加到另一个UserControl
:
<UserControl x:Class="MyProject.Screens.Test"
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"
xmlns:local="clr-namespace:MyProject.Screens"
mc:Ignorable="d"
d:DesignHeight="300" d:DesignWidth="300">
<Grid>
<Button Style="{StaticResource TestStyle}"/>
</Grid>
<UserControl.Resources>
<Style x:Key="TestStyle" TargetType="{x:Type Button}">
<Setter Property="Padding" Value="1"/>
</Style>
</UserControl.Resources>
在设计窗口中看起来没问题,项目编译得很好。但是,如果我尝试将此UserControl
添加到另一个UserControl
:
<UserControl x:Class="MyProject.Screens.MainScreen"
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"
xmlns:local="clr-namespace:MyProject.Screens"
mc:Ignorable="d"
d:DesignHeight="1080" d:DesignWidth="1920">
<Grid>
<local:Test/>
</Grid>
</UserControl>
我收到一个错误:
找不到资源&#34; TestStyle&#34;
MainScreen
中的。 我做错了什么?
答案 0 :(得分:1)
将资源声明放在内容之前:
<UserControl ...>
<UserControl.Resources>
<Style x:Key="TestStyle" TargetType="{x:Type Button}">
<Setter Property="Padding" Value="1"/>
</Style>
</UserControl.Resources>
<Grid>
<Button Style="{StaticResource TestStyle}"/>
</Grid>
</UserControl>