WPF 求助
初学WPF,请高手帮帮我一个问题:
想做一个自定义控件(把ControlTemplete放在ResourceDictionary中),使用的时候通过字典关键字x:Key
比如添加了一个Dic.xaml资源字典;
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
<ControlTemplate x:Key="Fload_Control">
..........
</ControlTemplate>
</ResourceDictionary>
问题:
如果想设置使用该Templete的Control的外观,如何获取该Control的尺寸(width,Height)?
[解决办法]
你可以再Control中自定义2个属性(width,Height)。如果需要绑定的话,注意要定义成依赖属性.