πŸ‘¨πŸΌ‍πŸ’»κ°œλ°œ/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