-2

アプリケーションの更新中に進行状況バーを表示するにはどうすればよいですか?

    Private Sub Button1_Click (sender As Object, e As EventArgs) は Button1.Click を処理します
        試す
            AD を ApplicationDeployment として暗くする = ApplicationDeployment.CurrentDeployment
            'このセクションに進行状況バーを表示する方法
            AD.Update()

MessageBox.Show("The application has been upgraded, and will now restart.") Application.Restart() Catch dde As DeploymentDownloadException MessageBox.Show("Cannot install the latest version of the application. " & ControlChars.Lf & ControlChars.Lf & "Please check your network connection, or try again later.") Return End Try End Sub


4

1 に答える 1

0

このサイトをチェックしてください。system.deployment.application.applicationdeploymentイベント セクションに注目してください。さまざまなイベントについては、そこにある例に従ってください。

于 2013-11-08T14:58:24.103 に答える