首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 媒体动画 > CAD教程 >

ChildWindow如何加UserControl.Resources

2012-03-23 
ChildWindow怎么加UserControl.Resources啊xaml中加入UserControl.ResourcesUserControl.Resourceslo

ChildWindow怎么加UserControl.Resources啊
xaml中加入 <UserControl.Resources>


<UserControl.Resources>
  <local:TimeConverter x:Key="TimeConverter" />
  </UserControl.Resources>


提示错误
The property 'Resources' does not exist on the type 'ChildWindow' in the XML namespace...

[解决办法]
ChildWindow 确定是一个 UserControl ?
[解决办法]
<basics:ChildWindow.Resources> 
<local:TimeConverter x:Key="TimeConverter" />
 </basics:ChildWindow.Resources>

请使用这种形式来写ChildWindow资源。它已经不是UserControl
[解决办法]
<controls:ChildWindow.Resources>
<local:TimeConverter x:Key="TimeConverter" />
</controls:ChildWindow.Resources>
[解决办法]
<controls:ChildWindow.Resources>
<local:TimeConverter x:Key="TimeConverter" />
</controls:ChildWindow.Resources>

热点排行