Intersoft ClientUI Documentation
BrowseForward Property
See Also  Send Feedback
Intersoft.Client.Framework Namespace > NavigationCommands Class : BrowseForward Property






Syntax

Visual Basic (Declaration) 
Public Shared ReadOnly Property BrowseForward As RoutedUICommand
Visual Basic (Usage)Copy Code
Dim value As RoutedUICommand
 
value = NavigationCommands.BrowseForward
C# 
public static RoutedUICommand BrowseForward {get;}
Delphi 
public read-only property BrowseForward: RoutedUICommand; static; 
JScript 
public static function get BrowseForward : RoutedUICommand
Managed Extensions for C++ 
public: __property static RoutedUICommand* get_BrowseForward();
C++/CLI 
public:
static property RoutedUICommand^ BrowseForward {
   RoutedUICommand^ get();
}

Remarks

The ClientUI navigation framework is built around the commanding semantics which allows certain features of the navigation to be executed through declarative definition in the XAML markup. The commanding semantics is also an ideal approach for MVVM pattern development.

ClientUI already includes several predefined commands for navigation that you can use in your application such as BrowseForward command.

The following code example shows how to navigate to a page using BrowseForward command assigned in a button.

XAML Copy Code
<Intersoft:UXPage...
    xmlns:Intersoft="http://intersoft.clientui.com/schemas">
    ...
    <StackPanel... >
        <Intersoft:UXButton Name="ForwardButton" Content="Forward" Command="Intersoft:NavigationCommands.BrowseForward" />
    </StackPanel>
</Intersoft:UXPage>

 

Requirements

Target Platforms: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family, Windows Vista, Windows Server 2008 family

See Also

© 2012 All Rights Reserved.