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