我正在尝试创建自己的自定义布局控件,因此我创建了一个 UserControl,如下所示:
public partial class KTopContentBottomLayout : UserControl
{
Orientation _Orientation = Orientation.Vertical;
public Orientation Orientation { get { return this._Orientation; } set { this._Orientation = value; } }
public UIElementCollection Children
{
get
{
return this.LayoutRoot.Children;
}
}
public KTopContentBottomLayout()
{
InitializeComponent();
CreateProperLayout();
}
//Some other code that creates the layouts
}
然后在使用此控件的 MainPage.xaml 中:
<Grid x:Name="LayoutRoot" Background="White">
<local:KTopContentBottomLayout Orientation="Vertical" HorizontalAlignment="Stretch" VerticalAlignment="Stretch">
<local:KTopContentBottomLayout.Children>
<StackPanel>
<c1:C1RichTextBoxToolbar RichTextBox="{Binding ElementName=MyRichTextBox}"/>
</StackPanel>
<c1:C1RichTextBox x:Name="MyRichTextBox" ReturnMode="HardLineBreak" />
</local:KTopContentBottomLayout.Children>
</local:KTopContentBottomLayout>
</Grid>
到目前为止,一切都可以正常编译并正确显示。但是当我尝试在 Loaded 事件中使用控件时:
void MainPage_Loaded(object sender, RoutedEventArgs e)
{
this.MyRichTextBox.GotFocus += MyRichTextBox_GotFocus;
this.MyRichTextBox.LostFocus += MyRichTextBox_LostFocus;
}
该MyRichTextBox
对象返回空...
我试图将控件从我的自定义布局控件中移出并且工作正常。那么我做错了什么?
编辑:
我注意到如果我MyRichTextBox
通过访问KTopContentBottomLayout
,我可以MyRichTextBox
正确访问。
即使用 Children.First() 等创建属性/访问。
但我不明白为什么如果我MainPage.xaml
直接访问MyRichTextBox
将给我null。
如果我替换KTopContentBottomLayout
为 as Grid/StackPanel
,他们可以MyRichTextBox
直接访问,但原因是什么?