Handle the ContentRendered event : Event « 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 » EventScreenshots 
Handle the ContentRendered event
Handle the ContentRendered event
    

<Window x:Class="ContentRendered.Window1"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    Title="ContentRendered" Height="300" Width="300" ContentRendered="OnContentRendered">
    <Grid>
        
    </Grid>
</Window>

//File:Window.xaml.vb

Imports System
Imports System.Collections.Generic
Imports System.Text
Imports System.Windows
Imports System.Windows.Controls
Imports System.Windows.Data
Imports System.Windows.Documents
Imports System.Windows.Input
Imports System.Windows.Media
Imports System.Windows.Media.Imaging
Imports System.Windows.Shapes


Namespace ContentRendered
  Public Partial Class Window1
    Inherits System.Windows.Window

    Public Sub New()
      InitializeComponent()
    End Sub

    Private Overloads Sub OnContentRendered(sender As Object, e As EventArgs)
      MessageBox.Show("Content Rendered Event Fired!")
    End Sub

  End Class
End Namespace

   
    
    
    
  
Related examples in the same category
1.Get event sender from eventGet event sender from event
2.Find source element of an element in event handler by castingFind source element of an element in event handler by casting
3.Add an event handler to an element using codeAdd an event handler to an element using code
4.Halting event routing with HandledHalting event routing with Handled
5.Security ExceptionSecurity Exception
6.Throw Handled ExceptionThrow Handled Exception
7.Check handler event senderCheck handler event sender
8.Do event based on button nameDo event based on button name
9.Add event handler to StackPanel in StackPanel resourceAdd event handler to StackPanel in StackPanel resource
10.Add a PropertyChangedValueCallback to Any Dependency PropertyAdd a PropertyChangedValueCallback to Any Dependency Property
11.Handle a Button Click with Shared button click handlerHandle a Button Click with Shared button click handler
12.DispatcherTimer and EventHandlerDispatcherTimer and EventHandler
13.Thumb DragStarted and DragCompleted event handlerThumb DragStarted and DragCompleted event handler
14.Set interval and event handler for DispatcherTimerSet interval and event handler for DispatcherTimer
15.Get the event sender nameGet the event sender name
16.Event firing sequenceEvent firing sequence
17.Cancel event by setting CanExecute and Handled to falseCancel event by setting CanExecute and Handled to false
18.Event sender, event source and event original sourceEvent sender, event source and event original source
19.Cast event sender to a controlCast event sender to a control
20.Fire an event when an element gains and loses focus.Fire an event when an element gains and loses focus.
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.