CK.WPF.Controls.ImageButton.OnMouseLeftButtonDown C# (CSharp) Method

OnMouseLeftButtonDown() protected method

protected OnMouseLeftButtonDown ( System.Windows.Input.MouseButtonEventArgs e ) : void
e System.Windows.Input.MouseButtonEventArgs
return void
        protected override void OnMouseLeftButtonDown( MouseButtonEventArgs e )
        {
            if( Command != null && Command.CanExecute( CommandParameter ) )
                Command.Execute( CommandParameter );
            base.OnMouseLeftButtonDown( e );
        }