C# XML다루기1) XML Element 추가 작성하기 (Write)
최초 생성된 xml 우선 최초 xml을 저장하는 위치를 실행위치에 있도록 해놓았으므로, 경로 지정 private string _strXMLPath = Path.Combine(Path.GetDirectoryName(Application.ExecutablePath), "XMLFile1.xml"); "쓰기" 버튼을 눌렀을 때 값이 입력 되도록 이벤트에 연결 /// /// 쓰기 쓰기 /// /// /// private void button4_Click(object sender, EventArgs e) { if (_IsExistXML() == true) { WriteXML(); } else { MessageBox.Show("경로에 XML 파일이 없습니다."); } }/// /// 쓰기 쓰기 /// /// /..
2021.02.24