BlueSky.Windows.DataGridAlignCol.BeginEdit C# (CSharp) Method

BeginEdit() public method

public BeginEdit ( FrameworkElement editingElement, RoutedEventArgs routedEventArgs ) : bool
editingElement System.Windows.FrameworkElement
routedEventArgs System.Windows.RoutedEventArgs
return bool
        public override bool BeginEdit(FrameworkElement editingElement, RoutedEventArgs routedEventArgs)
        {
            // pass input to first column
            //if (InnerColumns.Count > 0)
            //{
            //    var children = (editingElement as Panel).Children;
            //    return InnerColumns[0].BeginEdit(children[0] as Control, routedEventArgs);
            //}
            return false;
        }