How to use Properties when event Form1_Load ?
Posted
by monkey_boys
on Stack Overflow
See other posts from Stack Overflow
or by monkey_boys
Published on 2010-05-02T03:43:03Z
Indexed on
2010/05/02
3:47 UTC
Read the original article
Hit count: 180
c#
|configuration
private void Form1_FormClosing(object sender, FormClosingEventArgs e)
{
Properties.Settings.Default.Save();
}
I see value in control but i can,t use its.
how to use Properties when event Form1_Load ?
© Stack Overflow or respective owner