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

WindowsUIButtonPanel.ShowPeekFormOnItemHover Property

Gets or sets whether a Peek Form is automatically shown when a button is hovered with the mouse pointer.

Namespace: DevExpress.XtraBars.Docking2010

Assembly: DevExpress.XtraBars.v24.2.dll

#Declaration

[Browsable(false)]
[DefaultValue(false)]
[DXCategory("Behavior")]
[EditorBrowsable(EditorBrowsableState.Never)]
public bool ShowPeekFormOnItemHover { get; set; }

#Property Value

Type Default Description
Boolean false

true if a Peek Form is automatically shown when a button is hovered with the mouse pointer; otherwise, false.

#Remarks

Set the ShowPeekFormOnItemHover property to true to automatically show a Peek Form when a button is hovered with the mouse pointer. By default, this feature is disabled. The WindowsUIButtonPanel.PeekFormShowDelay property allows you to specify a time delay before the Peek Form is shown after a button is hovered.

The Peek Form’s content can be specified using the WindowsUIButtonPanel.QueryPeekFormContent event. If no content is specified, the Peek Form is not shown.

To show the Peek Form manually, call the WindowsUIButtonPanel.ShowPeekForm method.

See Also