public ucNhaSanXuat() { InitializeComponent(); this.nhaSXBUS = new NhaSanXuatBUS(); //Lấy ds mau sac LoadData(); //Max length of type text this.teMaNhaSX.Properties.MaxLength = 15; this.teTenNhaSX.Properties.MaxLength = 100; this.teDiaChi.Properties.MaxLength = 200; this.teSoDienThoai.Properties.MaxLength = 15; this.teEmail.Properties.MaxLength = 100; this.teGhiChu.Properties.MaxLength = 200; //Only type number this.teSoDienThoai.Properties.Mask.EditMask = "n0"; this.teSoDienThoai.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric; }