好吧,我學會了如何創建列表,查看列表中的項目以及如何使用列表中的項目。我現在想學習如何編輯列表中的信息。如何編輯列表中的項目:C#和WPF
這裏是我的清單:
class ObjectProperties
{
public string ObjectNumber { get; set; }
public string ObjectComments { get; set; }
public string ObjectAddress { get; set; }
}
List<ObjectProperties> Properties = new List<ObjectProperties>();
這是怎麼了增加值的列表:
ObjectProperties record = new ObjectProperties
{
ObjectNumber = txtObjectNumber.Text,
ObjectComments = txtComments.Text,
ObjectAddress = addressCombined,
};
Properties.Add(record);
我希望用戶通過使用輸入它們要更新哪個號碼文本框(txtUpdateObjectNumber)。然後我想比較這個數字與存儲在record.ObjectNumber中的值,然後如果存在,我想用record.ObjectNumber和record.ObjectComments替換record.ObjectNumber == txtUpdateObjectNumber中的信息。如果你需要我詳細說明任何事情,請告訴我。任何幫助,將不勝感激。謝謝:)
從你說過的話看來,用'Dictionary()'...加上你的「ObjectNumber」可能會更好地表示爲int或uint 。 –
NominSim
但是對象編號必須能夠更改..:/ – JLott