将UserControl设置为DependencyProperty的简短方法

时间:2019-05-20 11:09:05

标签: wpf xaml dependency-properties

一种缩短下面代码记录的方法。

<local:MyUserControl>
   <local:MyUserControl.MyDependencyProperty>
         <local:MyOtherUserControl>
   </local:MyUserControl.MyDependencyProperty>
</local:MyUserControl>

我想写成一行:

<local:MyUserControl>
     <local:MyUserControl.MyDependencyProperty="(..) local:MyOtherUserControl" />
</local:MyUserControl>

有什么可行的方法吗?我尝试使用x:Type,DynamicResource,没有任何作用。

0 个答案:

没有答案