SourceGrid.Cells.Editors.ComboBox.CreateControl C# (CSharp) Метод

CreateControl() защищенный Метод

Create the editor control
protected CreateControl ( ) : Control
Результат System.Windows.Forms.Control
        protected override Control CreateControl()
        {
            DevAge.Windows.Forms.DevAgeComboBox editor = new DevAge.Windows.Forms.DevAgeComboBox();
            //editor.FlatStyle = FlatStyle.System;
            editor.Validator = this;

            //NOTE: I have changed a little the ArrangeLinkedControls to support ComboBox control

            return editor;
        }