我想獲取資源控件。但對我來說很難。WPF:在資源中查找控件
1.資源(XAML)
<Span x:Key="spanParagrahTitle" x:Shared="false">
<InlineUIContainer BaselineAlignment="Center">
<dgWPFCtrl:IconButton x:Name="ibtnAddToFavorite" Cursor="Hand" IsPressible="True"/>
<InlineUIContainer BaselineAlignment="Center">
</Span>
2碼
Span myTitle = (Span)appRes["spanParagrahTitle"];
IconButton ibtnAddToFavorite = (IconButton)myTitle.FindName("ibtnAddToFavorite");
我怎樣才能在XAML控制ibtnAddToFavorite?原因爲 ,FindName失敗。 (它返回空)。
ps。 IconButton是用戶控件。
謝謝你給的線索給我。解決此問題的最佳方法是LogicalTreeHelper.FindLogicalNode()方法。 – mjk6026