ComponentFactory.Krypton.Toolkit.KryptonSplitterPanel.OnLocationChanged C# (CSharp) Method

OnLocationChanged() protected method

Raises the LocationChanged event.
protected OnLocationChanged ( EventArgs e ) : void
e System.EventArgs An EventArgs containing the event data.
return void
        protected override void OnLocationChanged(EventArgs e)
        {
            if (LocationChanged != null)
                LocationChanged(this, e);

            base.OnLocationChanged(e);
        }