Version

Show() 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() 
public void Show()
Example
The following code demonstrates how to show the mini toolbar at an offset from the cursor when the user selects text in a text box.

Imports Infragistics.Win.UltraWinToolbars

Private Sub TextBox1_MouseUp(ByVal sender As System.Object, ByVal e As System.Windows.Forms.MouseEventArgs) Handles TextBox1.MouseUp
	' If the user selected text with the mouse, show the mini toolbar 
	' at an offset from the cursor location
	If (Me.TextBox1.SelectedText.Length > 0) Then
		Me.UltraToolbarsManager1.MiniToolbar.Show()
	End If
End Sub
using System.Windows.Forms;
using Infragistics.Win.UltraWinToolbars;

private void textBox1_MouseUp( object sender, MouseEventArgs e )
{
	// If the user selected text with the mouse, show the mini toolbar 
	// at an offset from the cursor location
	if ( this.textBox1.SelectedText.Length > 0 )
		this.ultraToolbarsManager1.MiniToolbar.Show();
}
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