๋ณธ๋ฌธ ๋ฐ”๋กœ๊ฐ€๊ธฐ
๐Ÿ‘จ๐Ÿผ‍๐Ÿ’ป๊ฐœ๋ฐœ/C#

C# - ์„ค์ • ๊ฐ’ ์ €์žฅํ•˜๊ณ  ๋ถˆ๋Ÿฌ์˜ค๊ธฐ

by Janger 2022. 9. 26.
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
๋ฐ˜์‘ํ˜•