Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

SplitContainerControl.BeginSplitterMoving Event

Occurs after an end-user clicks the SplitContainerControl‘s splitter.

Namespace: DevExpress.XtraEditors

Assembly: DevExpress.Utils.v24.2.dll

NuGet Packages: DevExpress.Utils, DevExpress.Wpf.Core

#Declaration

[DXCategory("Events")]
public event BeginSplitMovingEventHandler BeginSplitterMoving

#Event Data

The BeginSplitterMoving event's data class is DevExpress.XtraEditors.BeginSplitMovingEventArgs.

#Remarks

The BeginSplitterMoving event is the first event that occurs when an end-user drag-and-drops a SplitContainerControl‘s splitter. It indicates that the splitter is now selected but has not been moved yet. Immediately after an end-user has dragged a splitter, the SplitContainerControl.SplitterMoving event occurs. Finally, when a splitter is positioned and an end-user releases the left mouse button, the SplitContainerControl.SplitterMoved event occurs.

Use the SplitContainerControl.SplitterPosition property to get the current splitter position.

To specify whether a splitter can be dragged at runtime use the SplitContainerControl.IsSplitterFixed property.

See Also