本文介绍了在从一个页面导航到另一个页面时显示进度环控制的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
Hello Guyz,
我需要在从一个页面导航到另一个页面时显示进度环控制。
以下是我尝试过的代码..
Hello Guyz,
I need to show the Progress Ring Control while navigating from one page to another page.
Below is the code that I have tried..
Protected Overrides Sub LoadState(navigationParameter As Object, pageState As Dictionary(Of String, Object))
Me.ShowProgressGrid.Begin()
Try
pageTitle.Text = "Survey Rooms"
txtSurveyor.Text = If(String.IsNullOrEmpty(GSurveyorName), g_emailid, GSurveyorName)
AssignClientData()
CreatetblXMLSurvey()
PopulateCombo()
AssignValues()
ApplySearch(String.Empty)
itemGridView.SelectedIndex = -1
Catch ex As Exception
Finally
Me.HideProgressGrid.Begin()
End Try
End Sub
需要帮助请..
Need help Please..
推荐答案
这篇关于在从一个页面导航到另一个页面时显示进度环控制的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!