Windows Phone ContentProperty

时间:2014-11-20 09:34:04

标签: c# xaml windows-phone-8

我在Windows Phone 8项目中使用UserControl,我想放一些像这样的控件

<MyUserControl>
    <Grid Name="MyGrid">
        ...
    </Grid>
</MyUserControl>

我写这段代码:

[ContentProperty("MyContent")]
public partial class MyUserControl : UserControl
{

    public static readonly DependencyProperty MyContentProperty = DependencyProperty.Register(
        "MyContent",
        typeof(object),
        typeof(MyUserControl),
        new PropertyMetadata(null));

    public object MyContent
    {
        get { return GetValue(MyContentProperty); }
        set
        {
            SetValue(MyContentProperty, value);
        }
    }
}

MyUserControl的XAML文件:

<UserControl x:Name="RootUserControl"
    DataContext="{Binding RelativeSource={RelativeSource Self}}"
    ...>
    <Grid x:Name="LayoutRoot">
        <ContentPresenter Name="Presenter" Content="{Binding MyContent, ElementName=RootUserControl}"/>
    </Grid>
</UserControl>

它的工作,但部分工作。当我尝试将MyGrid或其他内容用于MyUserControl时,它返回null。怎么了?

0 个答案:

没有答案