[WinForm] 윈폼 Chart 삽입, 삭제
임의로 배열로 추가해놓은 Chart를 출력해놓은 상태에서, TextBox에 값을 입력하고 '추가' 버튼을 클릭하면 TextBox의 값이 Chart에 추가되서 출력되는 Form을 구현해보자. class Book { public string Name { get; set; } public int Price { get; set; } public Book(string _Name, int _Price) { Name = _Name; Price = _Price; } } using System; using System.Collections.Generic; using System.Windows.Forms; namespace _20200909_004 { public partial class Form1 : Form { //i..