簡體   English   中英

xaml中定義的Silverlight控件在運行時為null

[英]Silverlight controls defined in xaml are null at runtime

我已經創建了一個名為Section的用戶控件,該控件具有2個自定義DependencyProperty :Title和Elements(有點像內容)。 我在幾頁上使用了Section ,它在每頁上都顯示得很好。

以下xaml代碼是我的AccountView類的一部分

    <Controls:Section Title="Epic Movies" Grid.Column="1" Grid.Row="1" x:Name="DescriptionSection" Visibility="Collapsed">
        <Controls:Section.Elements>
            <StackPanel>
                <TextBlock Style="{StaticResource FrameLabel}" Text="Description:" Grid.Column="1"/>
                <TextBlock x:Name="DescriptionField" Style="{StaticResource FrameText}" Text="some text..." Grid.Column="1" Grid.Row="1"/>
                <TextBlock Text="Products:" Style="{StaticResource FrameLabel}"/>
                <ScrollViewer Margin="12,0" VerticalScrollBarVisibility="Auto" MaxHeight="180">
                    <StackPanel x:Name="ProductList"/>
                </ScrollViewer>
                <TextBlock Style="{StaticResource FrameLabel}" Text="Category"/>
                <TextBlock x:Name="CategoryField" Style="{StaticResource FrameText}" Text="some category"/>
                <TextBlock Style="{StaticResource FrameLabel}" Text="Views:"/>
                <TextBlock x:Name="ViewsField" Style="{StaticResource FrameText}" Text="12322 Views"/>
                <TextBlock Style="{StaticResource FrameLabel}" Text="Price:"/>
                <TextBlock x:Name="PriceField" Style="{StaticResource FrameText}" Text="455$"/>
                <Button Content="Go to Module" Grid.Column="1" FontSize="15" Grid.Row="1" VerticalAlignment="Bottom" HorizontalAlignment="Right" Margin="20,15"/>
            </StackPanel>
        </Controls:Section.Elements>
    </Controls:Section>

當我嘗試在C#代碼中設置TextBlocks的文本時,所有TextBlock都為null

    private void ShowModuleInformation(Module m)
    {
        DescriptionSection.Title = m.Name;
        //DescriptionField is null even though clearly defined in xaml
        DescriptionField.Text = m.Description;
        PriceField.Text = m.Price + "";
        ViewsField.Text = m.views+"";
        CategoryField.Text = m.Category.Name;
        foreach (Product p in m.Products)
        {
            TextBlock t = new TextBlock() { Text = p.Name };
            ProductList.Children.Add(t);
        }

        DescriptionSection.Visibility = Visibility.Visible;
    }

我的Section c#類如下所示:

    public partial class Section : UserControl
{
    public static readonly DependencyProperty TitleProperty = DependencyProperty.Register(
        "Title", typeof(string), typeof(Section), new PropertyMetadata(new PropertyChangedCallback(TitleChanged)));
    public static readonly DependencyProperty ElementsProperty = DependencyProperty.Register(
        "Elements", typeof(UIElement), typeof(Section), new PropertyMetadata(new PropertyChangedCallback(ElementsChanged)));

    public Section()
    {
        InitializeComponent();
    }

    public string Title
    {
        get { return (string)GetValue(TitleProperty); }
        set { SetValue(TitleProperty, value); }
    }

    public UIElement Elements
    {
        get { return (UIElement)GetValue(ElementsProperty); }
        set { SetValue(ElementsProperty, value); }
    }

    private static void TitleChanged(DependencyObject d, DependencyPropertyChangedEventArgs e)
    {
        var sec = (Section)d;
        if (sec != null)
        {
            sec.TitleField.Text = (string)e.NewValue;
        }
    }

    private static void ElementsChanged(DependencyObject d, DependencyPropertyChangedEventArgs e)
    {
        Section sec = (Section)d;
        if (sec != null)
        {
            sec.ElementPanel.Content = (UIElement)e.NewValue;
        }
    }

我已經在此線程的幫助下解決了此問題。 我要做的就是讓Section派生ContentControl而不是User Control

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM