ESRI.ArcGIS.Mobile.Client
ShowDialog Method
See Also  Send Feedback
ESRI.ArcGIS.Mobile.Client Namespace > MobileApplication Class : ShowDialog Method

dialog

Syntax

Visual Basic (Declaration) 
Public Function ShowDialog( _
   ByVal dialog As Form _
) As DialogResult
C# 
public DialogResult ShowDialog( 
   Form dialog
)

Parameters

dialog

Remarks

Besides navigating users from one page to the other in a Task, sometimes you might want to show user a dialog in your application to gather information or to set up parameters for an external device. User's choice on the dialog will determine how to proceed next. ShowDialog is designed for this purpose. It mimics the win32 dialog experience on Windows mobile platform.

If you need to navigate user to a regular new page, use Transition.

Requirements

Platforms: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family, Windows Vista, Windows Server 2008 family

See Also