private void Form1_FormClosing(object sender, FormClosingEventArgs e)
{
Properties.Settings.Default.Save();
}
I used Application Settings and When Form was load i see value in control but i can't use its when Form load event.
how to use value that bind from Application Settings when event Form1_Load ?