windowsforms-devexpress-dot-xtrabars-dot-docking2010-dot-windowsuibuttonpanel-1c017942.md
Gets or sets whether a Peek Form is automatically shown when a button is hovered with the mouse pointer. This property is obsolete. Use the WindowsUIButtonPanel.PeekFormOptions.ShowOnItemHover property instead.
Namespace : DevExpress.XtraBars.Docking2010
Assembly : DevExpress.XtraBars.v25.2.dll
NuGet Package : DevExpress.Win.Navigation
[Browsable(false)]
[DefaultValue(false)]
[DXCategory("Behavior")]
[EditorBrowsable(EditorBrowsableState.Never)]
public bool ShowPeekFormOnItemHover { get; set; }
<Browsable(False)>
<EditorBrowsable(EditorBrowsableState.Never)>
<DefaultValue(False)>
<DXCategory("Behavior")>
Public Property ShowPeekFormOnItemHover As Boolean
| Type | Default | Description |
|---|---|---|
| Boolean | false |
true if a Peek Form is automatically shown when a button is hovered with the mouse pointer; otherwise, false.
|
Set the WindowsUIButtonPanel.PeekFormOptions.ShowOnItemHover property to true to automatically show a Peek Form when a button is hovered with the mouse pointer. This feature is disabled by default. The WindowsUIButtonPanel.PeekFormOptions.ShowDelay property specifies 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