Routed Events Mahender Senior Software Engineer United Health Group.

Slides:



Advertisements
Similar presentations
Module 1: Creating an Application by Using Windows Presentation Foundation Overview of WPF Creating a Simple WPF Application Handling Events and Commands.
Advertisements

Unit 1: Overview of the Microsoft.NET Platform
Printing Feature in SL4 Mahender Senior Software Engineer United Health Group.
Introduction to Dashboards in CRM 4.0 Robert Peledie CRM Consultant Chorus IT.
11 Getting Started with ASP.NET Beginning ASP.NET 4.0 in C# 2010 Chapters 5 and 6.
Overview of Customization and Development Capabilities in Dynamics AX
CODE Training An EPS Company codemag.com/training CODE F RAMEWORK Thom Chichester
Mahender Sarangam Having close to 5 years of experience. Working as a Senior Software Engineer in United Health Group. Good Knowledge on C#, ASP.NET,
Free Training Courses for.NET Software Engineers Svetlin Nakov Telerik Corporation
Powerful, modern desktops enable next generation applications Hardware acceleration brings real-time lighting, texturing and rendering Visual.
Web Form Fundamentals MacDonald Ch. 5 MIS 324 MIS 324 Professor Sandvig Professor Sandvig.
Tenacious Consultancy Solution- Accountability-Transparency.
Free Training Courses for.NET Software Engineers Svetlin Nakov Telerik Corporation
1 CS 3870/CS 5870 Static and Dynamic Web Pages ASP.NET and IIS.
READING, WRITING, BINDING, VALIDATING AND VISUALISING YOUR DATA Business value with Silverlight.
.NET Database Technologies: Introduction to WPF and Entity Framework DataBinding.
Introduction to Silverlight By Alan Cobb 2008-Jan-10 Sacramento, CA
February 16, Aaron Cuffman Andy Nagle Adam Schultz Web Site.
Overview of Previous Lesson(s) Over View  ASP.NET Pages  Modular in nature and divided into the core sections  Page directives  Code Section  Page.
ASP.NET  ASP.NET is a web development platform, which provides a programming model, a comprehensive software infrastructure and various services required.
Microsoft Confidential ASP.NET Broadest reach Most mature dev platform Silverlight Broad reach Rich, Interactive UI WPF Richest, Interactive UI.
Windows Presentation Foundation Adam Calderon Principal Engineer Interknowlogy LLC
Object Oriented Software Development 9. Creating Graphical User Interfaces.
Lap Around Visual Studio 2008 &.NET 3.5 Enhancements.
The Microsoft Technical Roadshow 2007 Rich Client Development in XAML Mark Johnston Developer & Platform Group Microsoft Ltd
Declarative based UI programming: WPF, Silverlight & Surface Tim Huckaby CEO, InterKnowlogy Microsoft RD & MVP.
Module 12 Attached Properties and Behaviors in WPF.
Presentation advances in.NET Framework 3.0 Mark Johnston Developer & Platform Group, Microsoft Ltd
Windows Presentation Foundation (WPF). Introduction Separates appearance of user interface from behavior Appearance usually specified by XAML Behavior.
Module 4 Taking Control of the User Interface. Module Overview Sharing Logical Resources in an Application Creating Consistent User Interfaces by Using.
ASP.NET User Controls. User Controls In addition to using Web server controls in your ASP.NET Web pages, you can create your own custom, reusable controls.
Dependency Property Mahender Senior Software Engineer United Health Group.
Text INTRODUCTION TO ASP.NET. InterComm Campaign Guidelines CONFIDENTIAL Simply Server side language Simplified page development model Modular, well-factored,
 ASP.NET provides an event based programming model that simplifies web programming  All GUI applications are incomplete without enabling actions  These.
Copyright ©2004 Virtusa Corporation | CONFIDENTIAL Windows Presentation Foundation Ruwan Wijesinghe.
Yahoo Help Phone Number Get Instant Help.
MVVM Pattern Mahender Senior Software Engineer United Health Group.
Part of the Microsoft.NET Framework 3.0 Tomer Shamam.NET Technologies Expert Sela Group
Joy Rathnayake Senior Architect – Virtusa Pvt. Ltd.
Introduction to Silverlight
In Windows 8 Store Applications
Windows Presentation Foundation
Important New Concepts In WPF
ITEC 420 Framework Based Internet Applications
.NET Framework 2.0 .NET Framework 3.0 .NET Framework 3.5
© 2016, Mike Murach & Associates, Inc.
Did your feature got in, out or planned?
Managed Extensibility Framework
ASP.NET 3.5 Mike Ormond Developer & Platform Group Microsoft Ltd
Introduction to Silverlight
XAML User Interface Creation in C#
Fix Error 550 Connect at Customer Service Number to Fix Error 550 under expertise of tech Support team experts.
Introduction to ASP.NET MVC Jump Start
Introduction to Internet Programming
ASP.NET Controls IT533 Lecture.
Windows Presentation Foundation
SETTING EXPECTATIONS 1- willingness to write some code.
Visual programming Chapter 2: Events and Event Handling
1/10/2019 JavaFX Events COSC 330.
Today’s Objectives Week 12 Announcements ASP.NET
.NET and .NET Core 8. WPF Hierarchy Pan Wuming 2017.
Working across the .NET Continuum
Web Development Using ASP .NET
Lesson 4 Creating a page with Web Matrix
Telerik Testing Framework
Validation Errors Mahender Senior Software Engineer
.NET Framework V3.5+ & RESTful web services
Tech Ed North America /6/2019 2:07 PM Required Slide
Brown Bag Seminar Summer 2007
Presentation transcript:

Routed Events Mahender Senior Software Engineer United Health Group

Mahender Sarangam Having 5 years of experience on .NET Technologies. Working as a Senior Software Engineer in United Health Group (UHG India Information Service Ltd.). Worked with Big Firms like Deloitte Consulting & Wipro Technology. Got Technical Acquaintance on Technologies like C#, ASP.NET,AJAX, LINQ, Silverlight, WPF,WCF ,SQL Server, Team Foundation Server(TFS) and SharePoint Technology. MCTS Certified in Web Technologies. Blog : http://Msarangam.wordpress.com

What are Routed Events? Events in Silverlight are used much like events in any other .NET technology. In Silverlight, there are two general event cases: input events and non-input events For example, event routing allows a click that begins in a shape to rise up to that shape’s container and then to the containing page before it’s handled by your code. There are three types of RoutedEvents - direct, tunneling, and bubbling

Direct - This type of routed events can be handled only by the controls that had raised them. They are very similar to the events we are familiar with from WinForms and ASP.NET. Tunneling - By this type of events, first the handlers of the root element of the visual tree are invoked and then the event travels through the child elements till it reaches the one that originally has raised it. Bubbling - This type of events is first handled by their source and then the event handlers of the parent elements are invoked till the event reaches the root element of the visual tree.

The main difference between routed events and standard CLR events, to the handler of the event, is that the event sender isn’t necessarily the original source of the event. In order to get the original source of the event, you need to check the OriginalSource property of the RoutedEventArgs supplied to the handler.

Disadvantages in Routed in SL There are some differences between the routed events in Silverlight and WPF. Here are the most important of them: You cannot create custom RoutedEvents in Silverlight. In WPF to create a custom event of this type we use EventManager, but in Silverlight it's not available. The only type of routed events in Silverlight is the bubbling event. Such events for example are the MouseLeftButtonDown and the MouseLeftButtonUp. The control specific events don't bubble - for example the Click event of the Button control.

Thank you