300x250 LookUpEdit2 DevExpress / Winform GridLookUpEdit 컨트롤에 새로운 값을 추가하기. GridLookUpEdit 컨트롤에 새로운 값을 추가할 수 있습니다. 기존의 존재하는 값을 사용하거나 새로운 문자열을 입력할 수 있습니다. using DevExpress.XtraEditors; using System; using System.Collections.Generic; using System.Windows.Forms; namespace WindowsFormsApp4 { public partial class Form1 : Form { #region Form1() /// /// 생성자 입니다. /// public Form1() { InitializeComponent(); InitLookUpEdit(); InitGridLookUpEdit(); } #endregion #region InitLookUpE.. 2019. 4. 18. DevExpress / Winform LookUpEdit 컨트롤 추가하기. LookUpEdit는 드롭 다운 방식으로 데이터를 조회 및 선택 할 수 있는 컨트롤 입니다. public class CityInfo { public int ID { get; set; } public string City { get; set; } public string Country { get; set; } public string Region { get; set; } } List Persons = new List(); List Cities = new List(); CreateData(); LookUpEdit lookUpEdit = new LookUpEdit(); lookUpEdit.Parent = this; lookUpEdit.Location = new System.Drawing.Point(198,78.. 2019. 4. 15. 이전 1 다음 300x250