タイトルが間違っているかもしれませんが、他に質問する方法がわかりません。シングルトンを使用する複数のタブを持つ Windows フォームがあります。私のフォームには、ユーザー入力をシングルトン プロパティに保存してから xml に保存する約 50 以上のテキスト ボックスがあります。私の質問は、xml を読み取り、xml に保存されたものをテキスト ボックスに表示するための、より簡単なルートは何でしょうか? コード例:
public class ContactInfo
{
public string Name { get { return Firstname + " " + LastName; } }
public string Firstname { get; set; }
public string LastName { get; set; }
public string PhoneNumber { get; set; }
public string Email { get; set; }
public string Address1 { get; set; }
public string Address2 { get; set; }
public string City { get; set; }
public string State { get; set; }
public string ZipCode { get; set; }
}
public class Site
{
Site()
{
OfficeAddress = new ContactInfo();
ShippingAddress = new ContactInfo();
DirectorOfOperationsFandB = new ContactInfo();
DirectorOfOperationsRetail = new ContactInfo();
SecondInCharge = new ContactInfo();
SiteController = new ContactInfo();
SiteContact = new ContactInfo();
}
public ContactInfo OfficeAddress { get; set; }
public ContactInfo ShippingAddress { get; set; }
public ContactInfo DirectorOfOperationsFandB { get; set; }
public ContactInfo DirectorOfOperationsRetail { get; set; }
public ContactInfo SecondInCharge { get; set; }
}
私は textbox1.text = Site.OfficeAdress.Address1; をやり始めました。などなどですが、何行かかるか想像できません。