๐จ๐ผ๐ป๊ฐ๋ฐ/C#
C# - ์ค์ ๊ฐ ์ ์ฅํ๊ณ ๋ถ๋ฌ์ค๊ธฐ
Janger
2022. 9. 26. 19:52
728x90
ํ๋ก์ ํธ -> ํ๋ก์ ํธ.์์ฑ -> ์ค์ ์์ ์ฌ์ง ์ฒ๋ผ ์ ์ฅ ํ๊ณ ์ ํ๋ ๋ณ์๋ฅผ ๋ง๋ ๋ค.
private void Form1_Load(object sender, EventArgs e)
{
tbIpAdress.Text = Properties.Settings.Default.tbIpAdress_Value;
tbCarWashSerial.Text = Properties.Settings.Default.tbCarWashSerial_Value;
}
์์ ์ฝ๋์ฒ๋ผ ์ฝ์ด ์ค๊ธฐ๋ง ํ๋ฉด ๋๋ค.
private void btnSave_Click(object sender, EventArgs e)
{
Properties.Settings.Default.tbIpAdress_Value = tbIpAdress.Text;
Properties.Settings.Default.tbCarWashSerial_Value = tbCarWashSerial.Text;
Properties.Settings.Default.Save();
MessageBox.Show("์ค์ ์ ์ฅ ์๋ฃ");
}
๋ณ์์ ๊ฐ์ ๋ฃ์๋๋ ๋งค์ฐ ๊ฐ๋จํ๋ค.
์ถ์ฒ:
https://gdlseed.tistory.com/17
C# ์ค์ ๊ฐ ์ ์ฅ ํ๊ธฐ - ๋ณ๋ ํ์ผ ์์ฑ X
ํ๋ก์ ํธ -> ํ๋ก์ ํธ.์์ฑ -> ์ค์ ์์ ์ฌ์ง ์ฒ๋ผ ์ ์ฅ ํ๊ณ ์ ํ๋ ๋ณ์๋ฅผ ๋ง๋ ๋ค. private void Form1_Load(object sender, EventArgs e) { tbIpAdress.Text = Properties.Settings.Default.tbIpAdress_Value;..
gdlseed.tistory.com
728x90