Use a Frame control to navigate to Web pages and a Extensible Application Markup Language (XAML) page. : Frame « Windows Presentation Foundation « VB.Net Tutorial

Home
VB.Net Tutorial
1.Language Basics
2.Data Type
3.Operator
4.Statements
5.Date Time
6.Class Module
7.Development
8.Collections
9.Generics
10.Attributes
11.Event
12.LINQ
13.Stream File
14.GUI
15.GUI Applications
16.Windows Presentation Foundation
17.2D Graphics
18.I18N Internationlization
19.Reflection
20.Regular Expressions
21.Security
22.Socket Network
23.Thread
24.Windows
25.XML
26.Database ADO.net
27.Design Patterns
VB.Net
VB.Net by API
VB.Net Tutorial » Windows Presentation Foundation » Frame 
16.48.2.Use a Frame control to navigate to Web pages and a Extensible Application Markup Language (XAML) page.
<Page x:Class="FrameExample.Page1"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  <StackPanel>
        <RadioButton Name="VisualBasic" Checked="BrowseAHomePage" GroupName="HomePages">
      Visual Basic
        </RadioButton>
        <RadioButton Name="VisualCSharp" Checked="BrowseAHomePage" GroupName="HomePages">
      Visual C# 
        </RadioButton>
        <RadioButton Name="AnotherPage" Checked="BrowseAHomePage" GroupName="HomePages">
      XAML Page
        </RadioButton>
        <Frame Name = "myFrame" Background="LightBlue"/>
    </StackPanel>
</Page>

//File:Window.xaml.vb

Imports System
Imports System.Windows
Imports System.Windows.Controls
Imports System.Windows.Data
Imports System.Windows.Documents
Imports System.Windows.Media
Imports System.Windows.Navigation
Imports System.Windows.Shapes
Imports System.Windows.Input
Imports System.IO
Imports System.Net

Namespace FrameExample
  Public Partial Class Page1
    Inherits Page
    Private Sub BrowseAHomePage(sender As Object, e As RoutedEventArgs)
      If CType(VisualBasic.IsChecked, [Boolean]) Then
        myFrame.Navigate(New System.Uri("http://msdn.microsoft.com/vbasic/"))
      ElseIf CType(VisualCSharp.IsChecked, [Boolean]) Then
        myFrame.Navigate(New System.Uri("http://msdn.microsoft.com/vcsharp/"))
      ElseIf CType(AnotherPage.IsChecked, [Boolean]) Then
        myFrame.Navigate(New System.Uri("AnotherPage.xaml", UriKind.RelativeOrAbsolute))
      End If
    End Sub
  End Class
End Namespace
WPF Use A Frame Control To Navigate To Web Pages And A Extensible Application Markup Language X A M L Page
16.48.Frame
16.48.1.System.Windows.Controls.Frame.CanGoBack, GoBack, CanGoForward, GoForwardSystem.Windows.Controls.Frame.CanGoBack, GoBack, CanGoForward, GoForward
16.48.2.Use a Frame control to navigate to Web pages and a Extensible Application Markup Language (XAML) page.Use a Frame control to navigate to Web pages and a Extensible Application Markup Language (XAML) page.
16.48.3.Put a Frame tag onto a Window to host a pagePut a Frame tag onto a Window to host a page
16.48.4.Navigate Frame to a xaml documentNavigate Frame to a xaml document
16.48.5.Navigate Frame to a URLNavigate Frame to a URL
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.