4

我正在 VS2012 中制作一个 Windows 8 应用程序,并尝试将对象(卡片)列表绑定到将显示两个字符串的用户控件。这是我在一页上的用户控件的代码:

<FlipView x:Name="cardView"/>
   <FlipView.ItemTemplate>
      <DataTemplate>
         <local:TileControl x:Name="cardTile" Width="600" Height="400" QuestionText="{Binding Value.question}" AnswerText="{Binding Value.answer}"/>
      </DataTemplate>
   </FlipView.ItemTemplate>
</FlipView>

这是在后面的 C# 代码中设置的:

cardView.ItemsSource = Storage.content.Decks[currentDeck].Cards;

用户控件“TileControl”控件内部包含以下变量:

public string questionTextStr { get; set; }   
public string answerTextStr { get; set; }

public string QuestionText
{
    get
    {
        return questionTextStr;
    }
    set
    {
        questionTextStr = value;
        questionText.Text = value; //set the textbox content
    }
}

public string AnswerText
{
    get
    {
        return answerTextStr;
    }
    set
    {
        answerTextStr = value;
        answerText.Text = value; //set the textbox content
    }
}

错误列表中有错误提示“无法分配给属性 'Flashdeck.TileControl.AnswerText'”。它也适用于 QuestionText。该应用程序将编译并运行,但是当我打开包含用户控件的页面时崩溃。我做错了什么导致错误和崩溃?谢谢。

编辑:有关套牌和卡片类的更多信息。甲板:

public class Deck
    {
        public List<Card> Cards { get; set; }
        public bool flagged { get; set; }

        public Deck()
        {
        }

        public Deck(List<Card> iCards)
        {
            Cards = iCards;
            flagged = false;
        }

        public Deck(List<Card> iCards, bool iFlag)
        {
            Cards = iCards;
            flagged = iFlag;
        }
    }

卡片:

public class Card
    {
        public string question { get; set; }
        public string answer { get; set; }
        public bool flagged { get; set; }

        public Card()
        {
        }

        public Card(string iQ, string iA)
        {
            question = iQ;
            answer = iA;
            flagged = false;
        }
    }
4

2 回答 2

6

您的属性必须是 DependencyProperties 才能将值绑定到它:

public string QuestionText
{
    get
    {
        return (string)GetValue(QuestionTextProperty);
    }
    set
    {
        SetValue(QuestionTextProperty, value);
        questionText.Text = value; //set the textbox content
    }
}
public static DependencyProperty QuestionTextProperty = DependencyProperty.Register("QuestionText", typeof(string), typeof(Deck), new PropertyMetadata(""));

...

为此,您的类 Deck 必须从 DependencyObject 继承。

编辑:在您的 Card-Class 中没有称为 Value 的属性,这就是绑定到 Value.question 不起作用的原因,请尝试

<FlipView x:Name="cardView"/>
   <FlipView.ItemTemplate>
      <DataTemplate>
         <local:TileControl x:Name="cardTile" Width="600" Height="400" QuestionText="{Binding Path=question}" AnswerText="{Binding Path=answer}"/>
      </DataTemplate>
   </FlipView.ItemTemplate>
</FlipView>

并在您的问题/答案属性的设置器中调用 PropertyChanged 事件,如此处所述以在您的属性值更改时更新绑定。

于 2012-10-15T09:21:17.360 回答
0

如果您的Decks班级具有questionanswer属性,则为他们创建评估者并分配QuestionText="{Binding Question}"AnswerText="{Binding Answer}"

Decks课堂上

public string Question 
{
    get;
    set;
}

public string Answer
{
    get;
    set;
}
于 2012-10-15T03:51:54.143 回答