1
我寫了.net代碼,並希望任何人來幫助我,並告訴如果這是正確的或不:)。我做了一個帶有兩個複選框和兩個圖片框和一個按鈕的表單,當我關閉表單並重新運行後再次重新載入這些值時,我希望保存複選框和圖片框的值。保存表單屬性
的代碼,我寫道:
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
//this.BackColor = Properties.Settings.Default.UserBackColor;
Properties.Settings.Default.Reload();
}
private void checkBox1_CheckedChanged(object sender, EventArgs e)
{
if (checkBox1.Checked == true)
{
pictureBox1.Image = Image.FromFile("C:\\red.jpg");
Properties.Settings.Default.Upgrade();
}
}
private void button1_Click(object sender, EventArgs e)
{
Properties.Settings.Default.Save();
Application.Exit();
}
我做到了,所以我需要正確的答案我沒有得到所要的結果 – nancy