SourceGrid.Cells.Editors.ComboBox.CreateControl C# (CSharp) Méthode

CreateControl() protected méthode

Create the editor control
protected CreateControl ( ) : Control
Résultat 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;
        }