Create a multi threaded web browsing application. : Thread « Windows Presentation Foundation « VB.Net

Home
VB.Net
1.2D
2.Application
3.Class
4.Data Structure
5.Data Types
6.Database ADO.net
7.Development
8.Event
9.File Directory
10.Generics
11.GUI
12.Language Basics
13.LINQ
14.Network Remote
15.Security
16.Thread
17.Windows Presentation Foundation
18.Windows System
19.XML
20.XML LINQ
VB.Net Tutorial
VB.Net by API
VB.Net » Windows Presentation Foundation » ThreadScreenshots 
Create a multi threaded web browsing application.
    

<Window x:Class="WpfApplication1.Window1"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    Title="MultiBrowse" Height="600" Width="800" Loaded="OnLoaded">
  <StackPanel Name="Stack" Orientation="Vertical">
    <StackPanel Orientation="Horizontal">
      <Button Content="New Window" Click="NewWindowHandler" />
      <TextBox Name="newLocation" Width="500" />
      <Button Content="GO!" Click="Browse" />
    </StackPanel>
    <Frame Name="placeHolder" Width="800" Height="550"></Frame>
  </StackPanel>
</Window>
//File:Window.xaml.vb

Imports System
Imports System.Windows
Imports System.Windows.Controls
Imports System.Windows.Data
Imports System.Windows.Threading
Imports System.Threading

Namespace WpfApplication1
  Public Partial Class Window1
    Inherits Window
    Public Sub New()
      MyBase.New()
      InitializeComponent()
    End Sub

    Private Sub OnLoaded(sender As Object, e As RoutedEventArgs)
      placeHolder.Source = New Uri("http://www.java2java.com")
    End Sub

    Private Sub Browse(sender As Object, e As RoutedEventArgs)
      placeHolder.Source = New Uri(newLocation.Text)
    End Sub
    Private Sub NewWindowHandler(sender As Object, e As RoutedEventArgs)
      Dim newWindowThread As New Thread(New ThreadStart(AddressOf ThreadStartingPoint))
      newWindowThread.SetApartmentState(ApartmentState.STA)
      newWindowThread.IsBackground = True
      newWindowThread.Start()
    End Sub
    Private Sub ThreadStartingPoint()
      Dim tempWindow As New Window1()
      tempWindow.Show()
      System.Windows.Threading.Dispatcher.Run()
    End Sub
  End Class
End Namespace

   
    
    
    
  
Related examples in the same category
1.Show a Continuous Animation During an Asynchronous ProcessShow a Continuous Animation During an Asynchronous Process
2.Load the Data for a Window Asynchronously After It Has RenderedLoad the Data for a Window Asynchronously After It Has Rendered
3.Check Whether You Are Running on the UI ThreadCheck Whether You Are Running on the UI Thread
4.Ensure That You Are Running on the UI ThreadEnsure That You Are Running on the UI Thread
5.A Cancellable ProgressBar While Processing on a Background ThreadA Cancellable ProgressBar While Processing on a Background Thread
6.Show a Continuous Progress Bar While Processing on a Background ThreadShow a Continuous Progress Bar While Processing on a Background Thread
7.Execute a Method Asynchronously Using the Dispatcher QueueExecute a Method Asynchronously Using the Dispatcher Queue
8.Thread Sleep in Button Click handlerThread Sleep in Button Click handler
9.Execute a Method Asynchronously Using a Background Worker ThreadExecute a Method Asynchronously Using a Background Worker Thread
10.Track the Progress of a Background Worker ThreadTrack the Progress of a Background Worker Thread
11.Support the Cancellation of a Background Worker ThreadSupport the Cancellation of a Background Worker Thread
12.Create a Background Worker Thread in XAMLCreate a Background Worker Thread in XAML
13.WPF ThreadingWPF Threading
14.BlockThread.xamlBlockThread.xaml
15.Keep the UI from becoming non-responsive in single threaded application which performs a long operation.Keep the UI from becoming non-responsive in single threaded application which performs a long operation.
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.