반응형

*C# App.Configuration 파일 추가 방법 및 파일 추가 후 key , value 값 읽기 예제...

 

Main

 

- 사용한 컨트롤 : Button 1개, ListView 1개

 

 

- App.Configuration 파일 추가

 

 

 

- 아래의 그림과 같이 key 값 및 value 값 작성 후 저장

 

 

 

전체 소스 코드

Form1.cs

 

- App.Configuration 을 읽기 위해 System.Configuration 을 추가 해 줍니다.

 

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;

using System.Configuration;

namespace CSharp_AppConfiguration
{
    public partial class Form1 : Form
    {
        List<string> ltKey = new List<string>();

        public Form1()
        {
            InitializeComponent();

            //key 값 추가...
            ltKey.Add("TEST");
            ltKey.Add("TEST2");
        }

        private void button1_Click(object sender, EventArgs e)
        {
            //App Configuration Read...

            foreach (string str in ltKey)
            {
                ListViewItem lvi = new ListViewItem();

                lvi.Text = str;
                lvi.SubItems.Add(ConfigurationSettings.AppSettings[str].ToString());

                listView1.Items.Add(lvi);

            }

        }
    }
}

 

 

 

*예제 결과

 

 

반응형

+ Recent posts