我正在 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;
}
}