RoundedSkinPanel.OverlayResizeEnter Event
Occurs when the mouse pointer enters the panel’s overlay resize zone.
Namespace: DevExpress.XtraEditors
Assembly: DevExpress.Utils.v26.1.dll
Declaration
Event Data
The OverlayResizeEnter event's data class is DevExpress.XtraBars.Navigation.OverlayResizeEventArgs.
Remarks
When the RoundedSkinPanel.AllowResize property is enabled, the overlay resize zone intercepts mouse events.
To disable the overlay resize zone if the mouse pointer hovers over a specific child control, handle the OverlayResizeEnter event and set e.Allow to false:
using DevExpress.XtraEditors;
detailPanel.OverlayResizeEnter += (s, e) => {
if (e.Control is ButtonBase)
e.Allow = false;
};
Tip
You can use the OverlayResizeZoneThickness property to specify how close a mouse pointer has to be to a panel border before the resize zone starts intercepting all mouse events.
See Also