using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Drawing;
using System.Windows.Forms;
using DevExpress.XtraEditors.Repository;
namespace mygrdcol
{
    public partial class cts_basegrid : DevExpress.XtraGrid.GridControl
    {
        private mygrdcol.grc_textbox_lu grc_textbox;

        public cts_basegrid()
        {
            this.grc_textbox = new mygrdcol.grc_textbox_lu();
           
            this.BackColor = Color.Red;
            this.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {            
            this.grc_textbox});
            ((System.ComponentModel.ISupportInitialize)(this.grc_textbox)).BeginInit();
            this.grc_textbox.Name = "grc_textbox";
            ((System.ComponentModel.ISupportInitialize)(this.grc_textbox)).EndInit();
        }
        
        private void InitializeComponent()
        {
            ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
            this.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
            this.ResumeLayout(false);
        }
    }
}

相关文章:

  • 2021-06-05
  • 2022-12-23
  • 2021-11-28
  • 2022-02-08
  • 2022-01-16
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2021-11-21
  • 2022-03-11
  • 2021-05-30
  • 2021-06-04
  • 2022-12-23
相关资源
相似解决方案