NavigationWindow.Navigate 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
非同步巡覽至所指定的來源內容。
多載
Navigate(Object, Object) |
非同步巡覽至物件所包含的內容,並傳遞包含要在巡覽期間用來處理之資料的物件。 |
Navigate(Uri, Object) |
非同步巡覽至位在統一資源識別項 (URI) 的來源內容,並傳遞包含要在巡覽期間用來處理之資料的物件。 |
Navigate(Object) |
非同步巡覽至物件所包含的內容。 |
Navigate(Uri) |
非同步巡覽統一資源識別項 (URI) 所指定的內容。 |
Navigate(Object, Object)
非同步巡覽至物件所包含的內容,並傳遞包含要在巡覽期間用來處理之資料的物件。
public:
virtual bool Navigate(System::Object ^ content, System::Object ^ extraData);
public:
bool Navigate(System::Object ^ content, System::Object ^ extraData);
public bool Navigate (object content, object extraData);
abstract member Navigate : obj * obj -> bool
override this.Navigate : obj * obj -> bool
member this.Navigate : obj * obj -> bool
Public Function Navigate (content As Object, extraData As Object) As Boolean
參數
傳回
如果未取消巡覽則為 true
,否則為 false
。
備註
請參閱 NavigationService.Navigate(Object, Object)。
另請參閱
適用於
Navigate(Uri, Object)
非同步巡覽至位在統一資源識別項 (URI) 的來源內容,並傳遞包含要在巡覽期間用來處理之資料的物件。
public:
virtual bool Navigate(Uri ^ source, System::Object ^ extraData);
public:
bool Navigate(Uri ^ source, System::Object ^ extraData);
public bool Navigate (Uri source, object extraData);
abstract member Navigate : Uri * obj -> bool
override this.Navigate : Uri * obj -> bool
member this.Navigate : Uri * obj -> bool
Public Function Navigate (source As Uri, extraData As Object) As Boolean
參數
傳回
如果未取消巡覽則為 true
,否則為 false
。
備註
請參閱 NavigationService.Navigate(Uri, Object)。
另請參閱
適用於
Navigate(Object)
非同步巡覽至物件所包含的內容。
public:
virtual bool Navigate(System::Object ^ content);
public:
bool Navigate(System::Object ^ content);
public bool Navigate (object content);
abstract member Navigate : obj -> bool
override this.Navigate : obj -> bool
member this.Navigate : obj -> bool
Public Function Navigate (content As Object) As Boolean
參數
傳回
如果未取消巡覽則為 true
,否則為 false
。
範例
下列範例示範如何巡覽至 物件所包含的內容。
// Navigate to object using the Navigate method
this.Navigate(new HomePage());
' Navigate to object using the Navigate method
Me.Navigate(New HomePage())
備註
請參閱 NavigationService.Navigate(Object)。
另請參閱
適用於
Navigate(Uri)
非同步巡覽統一資源識別項 (URI) 所指定的內容。
public:
virtual bool Navigate(Uri ^ source);
public:
bool Navigate(Uri ^ source);
public bool Navigate (Uri source);
abstract member Navigate : Uri -> bool
override this.Navigate : Uri -> bool
member this.Navigate : Uri -> bool
Public Function Navigate (source As Uri) As Boolean
參數
傳回
如果未取消巡覽則為 true
,否則為 false
。
範例
下列範例示範如何使用 Navigate 方法來巡覽至統一資源識別項, (URI) 。
// Navigate to URI using the Navigate method
this.Navigate(new Uri("HomePage.xaml", UriKind.Relative));
' Navigate to URI using the Navigate method
Me.Navigate(New Uri("HomePage.xaml", UriKind.Relative))
備註
請參閱 NavigationService.Navigate(Uri)。
注意
統一資源識別項 (URI) 可以是相對或絕對。 如需詳細資訊,請參閱 WPF 中的 Pack URI。