0

我正在尝试创建自己的自定义布局控件,因此我创建了一个 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直接访问,但原因是什么?

4

1 回答 1

0

尝试放入MyRichTextBox某种Panel( StackPanel, Grid, 等)。

编辑:实际上,为什么不StackPanel开始呢?StackPanel如果您想要一些层次结构,请为工具栏做一个嵌套的外部StackPanel

另一个编辑:我现在不能将它复制到一个项目中来尝试它,但是这条线是:this.LayoutRoot.Children返回你认为它做了什么?

于 2012-07-03T18:24:40.497 回答