300x250 EditMask2 DevExpress / Winform TextEdit Class TextEdit에 숫자 값에 서식 적용하기. TextEdit 컨트롤에 입력 된 숫자의 서식을 변경할 수 있습니다. EditMask 값을 변경해주면 됩니다. using System; using System.Windows.Forms; namespace WindowsFormsApp4 { public partial class Form1 : Form { #region Form1() /// /// 생성자 입니다. /// public Form1() { InitializeComponent(); CreateTextEdit(); } #endregion #region CreateTextEdit() /// /// 텍스트 에디트 컨트롤을 생성합니다. /// private void CreateTextEdit() { this.textEdit1.Location = new Sy.. 2019. 4. 17. DevExpress / Winform TextEdit Class TextEdit에 날짜, 시간 값에 서식 적용하기. TextEdit 컨트롤에 날짜 혹은 시간 값의 서식을 변경 할 수 있습니다. EditMask 값을 변경해주면 날짜 / 시간 출력 방법을 변경 할 수 있습니다. using System; using System.Windows.Forms; namespace WindowsFormsApp4 { public partial class Form1 : Form { #region Form1() /// /// 생성자 입니다. /// public Form1() { InitializeComponent(); CreateTextEdit(); } #endregion #region CreateTextEdit() /// /// 텍스트 에디트 컨트롤을 생성합니다. /// private void CreateTextEdit() { this... 2019. 4. 17. 이전 1 다음 300x250