ThreadedWaitDialogProgressData Constructeurs
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Surcharges
ThreadedWaitDialogProgressData(String, String, String, Boolean) |
Initialise une nouvelle instance de la ThreadedWaitDialogProgressData classe sans rapporter d’informations d’achèvement. |
ThreadedWaitDialogProgressData(String, String, String, Boolean, Int32, Int32) |
Initialise une nouvelle instance des informations de saisie semi-automatique de la ThreadedWaitDialogProgressData classe et du rapport. |
ThreadedWaitDialogProgressData(String, String, String, Boolean)
Initialise une nouvelle instance de la ThreadedWaitDialogProgressData classe sans rapporter d’informations d’achèvement.
ThreadedWaitDialogProgressData(std::wstring const & waitMessage, std::wstring const & progressText = null, std::wstring const & statusBarText = null, bool isCancelable = false);
public ThreadedWaitDialogProgressData (string waitMessage, string progressText = default, string statusBarText = default, bool isCancelable = false);
new Microsoft.VisualStudio.Shell.ThreadedWaitDialogProgressData : string * string * string * bool -> Microsoft.VisualStudio.Shell.ThreadedWaitDialogProgressData
Public Sub New (waitMessage As String, Optional progressText As String = Nothing, Optional statusBarText As String = Nothing, Optional isCancelable As Boolean = false)
Paramètres
- waitMessage
- String
Description générale de l’opération.
- progressText
- String
Description plus précise de l’opération en cours.
- statusBarText
- String
Message à afficher dans la barre de status.
- isCancelable
- Boolean
Valeur indiquant si une option doit être proposée à l’utilisateur pour annuler l’opération.
Remarques
La boîte de dialogue d’attente avec thread affiche la barre de progression du style de marque, car aucune information détaillée sur la progression n’est fournie.
S’applique à
ThreadedWaitDialogProgressData(String, String, String, Boolean, Int32, Int32)
Initialise une nouvelle instance des informations de saisie semi-automatique de la ThreadedWaitDialogProgressData classe et du rapport.
public:
ThreadedWaitDialogProgressData(System::String ^ waitMessage, System::String ^ progressText, System::String ^ statusBarText, bool isCancelable, int currentStep, int totalSteps);
public:
ThreadedWaitDialogProgressData(Platform::String ^ waitMessage, Platform::String ^ progressText, Platform::String ^ statusBarText, bool isCancelable, int currentStep, int totalSteps);
ThreadedWaitDialogProgressData(std::wstring const & waitMessage, std::wstring const & progressText, std::wstring const & statusBarText, bool isCancelable, int currentStep, int totalSteps);
public ThreadedWaitDialogProgressData (string waitMessage, string progressText, string statusBarText, bool isCancelable, int currentStep, int totalSteps);
new Microsoft.VisualStudio.Shell.ThreadedWaitDialogProgressData : string * string * string * bool * int * int -> Microsoft.VisualStudio.Shell.ThreadedWaitDialogProgressData
Public Sub New (waitMessage As String, progressText As String, statusBarText As String, isCancelable As Boolean, currentStep As Integer, totalSteps As Integer)
Paramètres
- waitMessage
- String
Description générale de l’opération.
- progressText
- String
Description plus précise de l’opération en cours.
- statusBarText
- String
Message à afficher dans la barre de status.
- isCancelable
- Boolean
Valeur indiquant si une option doit être proposée à l’utilisateur pour annuler l’opération.
- currentStep
- Int32
Étape actuelle de la progression.
- totalSteps
- Int32
Nombre total d’étapes disponibles. Utilisez 0 pour afficher le chapiteau indéterminé dans la boîte de dialogue d’attente.