Version

Show(Point) Method

Shows the mini toolbar to the user. This should be called when the mouse is released on a simple text selection or when the control key is released on an extended text selection.
Syntax
'Declaration
 
Public Overloads Sub Show( _
   ByVal screenLocation As Point _
) 
public void Show( 
   Point screenLocation
)

Parameters

screenLocation
The location, in screen coordinates, when the upper left corner of the mini-toolbar should be located.
Example
The following code demonstrates how to control and show the mini toolbar.

Imports Infragistics.Win.UltraWinToolbars

Private Sub button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles button1.Click
	' Don't automatically show the mini toolbar when a context menu is shown
	Me.UltraToolbarsManager1.MiniToolbar.AutoShow = MiniToolbarAutoShow.Never

	' All tools in the mini toolbar should be on one horizontal row
	Me.UltraToolbarsManager1.MiniToolbar.ToolRowCount = 1

	' Show the mini toobar at a screen location of 100, 100
	Me.UltraToolbarsManager1.MiniToolbar.Show(New Point(100, 100))
End Sub
using System.Windows.Forms;
using Infragistics.Win.UltraWinToolbars;

private void button1_Click( object sender, EventArgs e )
{
	// Don't automatically show the mini toolbar when a context menu is shown
	this.ultraToolbarsManager1.MiniToolbar.AutoShow = MiniToolbarAutoShow.Never;

	// All tools in the mini toolbar should be on one horizontal row
	this.ultraToolbarsManager1.MiniToolbar.ToolRowCount = 1;

	// Show the mini toobar at a screen location of 100, 100
	this.ultraToolbarsManager1.MiniToolbar.Show( new Point( 100, 100 ) );
}
Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Server 2012, Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also