SlideShare uma empresa Scribd logo
1 de 36
From legacy to WPF/SL Migrating applications from Windows Form to WPF/Silverlight Raffaele Garofalo
Who am I? Raffaele GarofaloNET Software ArchitectMCP (MCAD, MCSD, MCTS) Blog: http://blog.raffaeu.com Twitter: @raffaeu Company: Nephila Capital Ltd. (www.nephila.com)  I am Italian, sorry for my bad English
My Books Microsoft APRESS
Summary Reasons for migrating Choose the right technology Is Windows Form dead? Choose the right architecture The team Some useful tools
Reasons for migrating Legacy application that requires refactoring (partial) Legacy application developed with a very old technology (FoxPro, VB6, …) (re-write) Application that requires a more complex UI (User Interface) not sustainable with Windows Form (partial) Specific request from the Customer (at the end, he has the money …) New project (never start a new project with an old technology!)
Always consider the budget! You do not need to re-write everything, you can keep the existing UI and migrate only the new features Windows Form can live in parallel with WPF/SL You can host Windows Form in WPF (WindowsFormHost) and WPF in Windows Form (ElementHost) or SL in Windows Form (embed browser)
Is Windows Form dead? No, it is not. There are still thousands of active projects done in Windows Form Win Form is still the following step after VB6  WPF is not intended to replace Windows Forms It is not dead but it is an old technology. It is still available  It does not separate UI from code, I can’t employ a designer for the UI
Choose the right technology First rule: WPF is for Standalone, Silverlight is for Web, Phones Second rule: WPF works only on Windows OS, Silverlight works on Windows, MAC, Linux Third rule: WPF is a more powerful technology, Silverlight uses a restricted version of the NET Framework but more feasible for Web and Media WPF requires a knowledge of XAML for WPF, Silverlight requires XAML for SL, HTML and JS and WCF
What can I do with? WPF Full .NET Framework(i.e. Split() has 6 overrides) UI objects derives from Visual base class Routed events, more control Cryptography more powerful Not a lot of choices for Media management SILVERLIGHT Restricted version of .NET(i.e. Split() has 3 overrides) UI objects derives from Control Routed events, less control SL supports only 4 hash algorithms Great support to Media management and streaming
What Microsoft suggests? SL If you're just starting out, and there's a question as to which technology to choose (Silverlight or WPF) then start with Silverlight. It is generally easier to move up to WPF from Silverlight than it is to move the other way. Silverlight has a smaller API, and is therefore generally considered easier to learn. If you need a desktop application with only basic system integration, consider building a Silverlight Out-of-Browser application. Silverlight 4 Trusted Applications with IDispatch support provide access to many system resources previously unavailable to web technologies. If you need deep system integration, excellent multi-touch support, device access, local resources, and all the other things that go with a solid desktop application, then consider moving up to WPF. If you're a C++ developer, you can choose to go with C++ and MFC, or use C++ with WPF on the front end, like the Expression team did.
Still missing … WPF A good designer tool, VS is not cool as Blend The Control toolkit is not exhaustive, you still need a third party control library Silverlight Same thing Interaction with HTML and Javascript still lacks in some parts Still requires to recompile your .dlls
Composite Frameworks Create an application using Modules (independent assemblies) Specialize teams in different areas (UI, Presentation, Business) Reusable architecture Increase quality and usability by sharing common services and functionality
Composite for WPF/SL Prism Requires observer patterns (message broker) Cool navigation service in V4 Only IoC with Unity (Microsoft) Astonishing resources and documentation caliburn Auto-wiring Transitions between Views Open source with less technology limits Available also for Windows Phone
Demo WinForm demo application (MSDN, Telerik) WPF demo application (MSDN, Codeplex) Silverlight demo application (MSDN, Telerik) WPF showcasehttp://windowsclient.net/community/showcase.aspx Silverlight showcasehttp://www.silverlight.net/showcase/
Choose the right architecture Layered application or monolithic block? SOA or not SOA? If I work with Silverlight that’s the only choice … TDD or not TDD? What about an O/RM? Entity Framework, Nhibernate or what? What about security, especially if I am working with SL? Design patterns, is M-V-VM mandatory?
Layered application, why? Why should I use a layered application if it requires: More code More time More effort More people More money
Layered application, why? The application we are designing is complex or it will be complex in the future I need to be able to make my application scalable, maintainable and secure I want to split the project over multiple teams and resources I need to recycle as many code/features as I can I need to cover with test as much surface as I can
Layered applications
SOA (Service Oriented Architecture) Real reasons We need to hide the datastore and the business logic I need to spread the business logic over different technologies (WPF, Phones, REST) I can’t migrate everything (like AS400 …) so I need a bridge between old/new Developer’s reasons I need to get certified on WCF It is cool and I am the only one that doesn’t use it yet I can write 10 times more code to do the same thing
TDD Overview
TDD Overview. A good unit test … Run fast (they have short setups, run times, and break downs). Run in isolation (you should be able to reorder them). Use data that makes them easy to read and to understand. Use real data (e.g. copies of production data) when they need to. Represent one step towards your overall goal.
TDD Pros and Cons PROS Indicator of project’s health Less time to fix bugs You should write application using functional code Good documentation for you code by function/requirements CONS One change may requires more effort on fixing tests than fixing real code Time to write tests You may not always need to write applications using functional code Wrong test will document wrong requirement
O/RM, which one? Nhibernate, Entity Framework are free, others are not Nhibernate is 100% flexible but no IDE EF has an IDE but is not flexible Nhibernate has years and is open source EF is still not mature and it is not open source Nhibernate requires more experience, it is not for newbie
O/RM PROS You are not anymore Database technology driven Write applications faster, do not need ton of SQL Easier to test the data layer CONS Less flexibility because you can’t use all the power of a specific RDBMS Devs tend to forget T-SQL/PL-SQL The database become a simple container of data, no more logic in it
Security real facts, did you know? Most developers have no clue about security Most of the intranet applications are not secure at all, especially WinForm SOA implies an additional layer of security The database should also be encrypted A web application with “secret” data should be always SSL The NET framework provides tons of utilities and facilities to apply security
Security concerns for my application Authentication, how the user will authenticate against the application Authentication with SOA Authorization, are we applying also granular security rights? Logging, do we know what is going on? Do we have a trace? Data protection, is security applied also at the data tier or do we use SA in SQL?
M-V-VM Overview
M-V-VM Main concepts Provides separation of concerns It is natural pattern for XAML platforms Enables the developer-designer workflow Increases application testability
Resources on M-V-VM In the Box Visual Studio integration (SEE DEMO) My Book Gary McLean’s book PRISM documentationhttp://compositewpf.codeplex.com/ Josh Smith http://joshsmithonwpf.wordpress.com/ Karl Shiffletthttp://karlshifflett.wordpress.com/
The Team How big is the team I will work with? How much experience do they have?Guru | Some exp. | newbie What was their previous project? Do they know the difference between Client (WPF) and Web (SL)? Is there a technology leader in the Team with some experience?
The right one Never put too many seniors: “Too many cooks spoil the dinner” Never use big teams, lot of technical debates and few hours on writing code  Put together devs that love the technology they are working with, negativity is a cancer Tools make a developer life easier (documentation, books, controls, …)
Make your life easier Choose a set of Controls, learn it and use it!  Apply one pattern for the UI, learn it and use it.  Do not “experiment” with customer money, do what you know and avoid the unknown Do not over engineer, remember that the Customer can appreciate only what he can see … (a.k.a. no NASA web services) Small steps, small releases, small iterations
Some tools Books Guidance Best practices Forums and Communities
Books My book  Architecting Applications for the Enterprise PRISM’s Developer Guide (MS PRESS) WPF 4 Unleashed (Adam Nathan) Silverlight 4 Unleashed (L. Bugnion)
Guidance Codeplexhttp://wpfslguidance.codeplex.com/ MSDN“Developers Guide to Microsoft PRISM” WPFhttp://windowsclient.net Silverlighthttp://silverlight.net
QA?

Mais conteúdo relacionado

Mais procurados

Btb017 David
Btb017 DavidBtb017 David
Btb017 DavidRohit Ray
 
Design Patterns : The Ultimate Blueprint for Software
Design Patterns : The Ultimate Blueprint for SoftwareDesign Patterns : The Ultimate Blueprint for Software
Design Patterns : The Ultimate Blueprint for SoftwareEdureka!
 
VSTO + LOB Apps
VSTO + LOB AppsVSTO + LOB Apps
VSTO + LOB AppsJoao Livio
 
Stepin evening presented
Stepin evening presentedStepin evening presented
Stepin evening presentedVijayan Reddy
 
Basic Java script handouts for students
Basic Java script handouts for students Basic Java script handouts for students
Basic Java script handouts for students shafiq sangi
 
Flash Development Guide
Flash Development GuideFlash Development Guide
Flash Development GuideStanley Fok
 
VSTO + LOB Apps Information Matters
VSTO + LOB Apps Information MattersVSTO + LOB Apps Information Matters
VSTO + LOB Apps Information MattersComunidade NetPonto
 
Professional PHP: an open-source alternative for enterprise development [Antw...
Professional PHP: an open-source alternative for enterprise development [Antw...Professional PHP: an open-source alternative for enterprise development [Antw...
Professional PHP: an open-source alternative for enterprise development [Antw...Combell NV
 
The seven pillars of aspnet
The seven pillars of aspnetThe seven pillars of aspnet
The seven pillars of aspnetNethaji Naidu
 
Outsourcing php india
Outsourcing php indiaOutsourcing php india
Outsourcing php indiataishaaben
 
PHP framework difference
PHP framework differencePHP framework difference
PHP framework differenceiScripts
 

Mais procurados (13)

Btb017 David
Btb017 DavidBtb017 David
Btb017 David
 
Design Patterns : The Ultimate Blueprint for Software
Design Patterns : The Ultimate Blueprint for SoftwareDesign Patterns : The Ultimate Blueprint for Software
Design Patterns : The Ultimate Blueprint for Software
 
VSTO + LOB Apps
VSTO + LOB AppsVSTO + LOB Apps
VSTO + LOB Apps
 
Installation of Silk Test Framework
Installation of Silk Test FrameworkInstallation of Silk Test Framework
Installation of Silk Test Framework
 
Stepin evening presented
Stepin evening presentedStepin evening presented
Stepin evening presented
 
Basic Java script handouts for students
Basic Java script handouts for students Basic Java script handouts for students
Basic Java script handouts for students
 
Lotus Framework
Lotus FrameworkLotus Framework
Lotus Framework
 
Flash Development Guide
Flash Development GuideFlash Development Guide
Flash Development Guide
 
VSTO + LOB Apps Information Matters
VSTO + LOB Apps Information MattersVSTO + LOB Apps Information Matters
VSTO + LOB Apps Information Matters
 
Professional PHP: an open-source alternative for enterprise development [Antw...
Professional PHP: an open-source alternative for enterprise development [Antw...Professional PHP: an open-source alternative for enterprise development [Antw...
Professional PHP: an open-source alternative for enterprise development [Antw...
 
The seven pillars of aspnet
The seven pillars of aspnetThe seven pillars of aspnet
The seven pillars of aspnet
 
Outsourcing php india
Outsourcing php indiaOutsourcing php india
Outsourcing php india
 
PHP framework difference
PHP framework differencePHP framework difference
PHP framework difference
 

Semelhante a NET Event - Migrating WinForm

Re-use Your Skills and Code to Expand the Reach of Your Apps with Silverlight
Re-use Your Skills and Code to Expand the Reach of Your Apps with SilverlightRe-use Your Skills and Code to Expand the Reach of Your Apps with Silverlight
Re-use Your Skills and Code to Expand the Reach of Your Apps with SilverlightFrank La Vigne
 
Afik Gal @alphageeks: Flex Intro
Afik Gal @alphageeks: Flex IntroAfik Gal @alphageeks: Flex Intro
Afik Gal @alphageeks: Flex IntroAlphageeks
 
Stream SQL eventflow visual programming for real programmers presentation
Stream SQL eventflow visual programming for real programmers presentationStream SQL eventflow visual programming for real programmers presentation
Stream SQL eventflow visual programming for real programmers presentationstreambase
 
Normalizing x pages web development
Normalizing x pages web development Normalizing x pages web development
Normalizing x pages web development Shean McManus
 
Buzzword, How'd They Build That?
Buzzword, How'd They Build That?Buzzword, How'd They Build That?
Buzzword, How'd They Build That?dcoletta
 
WPF Applications, It's all about XAML these days
WPF Applications, It's all about XAML these daysWPF Applications, It's all about XAML these days
WPF Applications, It's all about XAML these daysDave Bost
 
Building A Platform From Open Source At Yahoo
Building A Platform From Open Source At YahooBuilding A Platform From Open Source At Yahoo
Building A Platform From Open Source At YahooDustin Whittle
 
Windows Phone and Windows 8 application development
Windows Phone and Windows 8 application developmentWindows Phone and Windows 8 application development
Windows Phone and Windows 8 application developmentChristos Matskas
 
Building Buzzword (Flex Camp Boston 2007)
Building Buzzword (Flex Camp Boston 2007)Building Buzzword (Flex Camp Boston 2007)
Building Buzzword (Flex Camp Boston 2007)dcoletta
 
Data Driven WPF and Silverlight Applications
Data Driven WPF and Silverlight ApplicationsData Driven WPF and Silverlight Applications
Data Driven WPF and Silverlight ApplicationsDave Allen
 
Web application framework
Web application frameworkWeb application framework
Web application frameworkPankaj Chand
 
MSDN Unleashed: WPF Demystified
MSDN Unleashed: WPF DemystifiedMSDN Unleashed: WPF Demystified
MSDN Unleashed: WPF DemystifiedDave Bost
 
A Developer Day 2014 - Durban
A Developer Day 2014 - Durban A Developer Day 2014 - Durban
A Developer Day 2014 - Durban Robert MacLean
 
XAML: One Language to Rule Them All
XAML: One Language to Rule Them AllXAML: One Language to Rule Them All
XAML: One Language to Rule Them AllFrank La Vigne
 
Front End Development | Introduction
Front End Development | IntroductionFront End Development | Introduction
Front End Development | IntroductionJohnTaieb
 
30 Skills to Master to Become a Senior Software Engineer
30 Skills to Master to Become a Senior Software Engineer30 Skills to Master to Become a Senior Software Engineer
30 Skills to Master to Become a Senior Software EngineerSean Coates
 
The Nuxeo Way: leveraging open source to build a world-class ECM platform
The Nuxeo Way: leveraging open source to build a world-class ECM platformThe Nuxeo Way: leveraging open source to build a world-class ECM platform
The Nuxeo Way: leveraging open source to build a world-class ECM platformNuxeo
 

Semelhante a NET Event - Migrating WinForm (20)

Re-use Your Skills and Code to Expand the Reach of Your Apps with Silverlight
Re-use Your Skills and Code to Expand the Reach of Your Apps with SilverlightRe-use Your Skills and Code to Expand the Reach of Your Apps with Silverlight
Re-use Your Skills and Code to Expand the Reach of Your Apps with Silverlight
 
Afik Gal @alphageeks: Flex Intro
Afik Gal @alphageeks: Flex IntroAfik Gal @alphageeks: Flex Intro
Afik Gal @alphageeks: Flex Intro
 
Stream SQL eventflow visual programming for real programmers presentation
Stream SQL eventflow visual programming for real programmers presentationStream SQL eventflow visual programming for real programmers presentation
Stream SQL eventflow visual programming for real programmers presentation
 
Lamp Zend Security
Lamp Zend SecurityLamp Zend Security
Lamp Zend Security
 
Normalizing x pages web development
Normalizing x pages web development Normalizing x pages web development
Normalizing x pages web development
 
PHP and Silverlight
PHP and SilverlightPHP and Silverlight
PHP and Silverlight
 
Buzzword, How'd They Build That?
Buzzword, How'd They Build That?Buzzword, How'd They Build That?
Buzzword, How'd They Build That?
 
WPF Applications, It's all about XAML these days
WPF Applications, It's all about XAML these daysWPF Applications, It's all about XAML these days
WPF Applications, It's all about XAML these days
 
Building A Platform From Open Source At Yahoo
Building A Platform From Open Source At YahooBuilding A Platform From Open Source At Yahoo
Building A Platform From Open Source At Yahoo
 
Windows Phone and Windows 8 application development
Windows Phone and Windows 8 application developmentWindows Phone and Windows 8 application development
Windows Phone and Windows 8 application development
 
Building Buzzword (Flex Camp Boston 2007)
Building Buzzword (Flex Camp Boston 2007)Building Buzzword (Flex Camp Boston 2007)
Building Buzzword (Flex Camp Boston 2007)
 
Data Driven WPF and Silverlight Applications
Data Driven WPF and Silverlight ApplicationsData Driven WPF and Silverlight Applications
Data Driven WPF and Silverlight Applications
 
Web application framework
Web application frameworkWeb application framework
Web application framework
 
MSDN Unleashed: WPF Demystified
MSDN Unleashed: WPF DemystifiedMSDN Unleashed: WPF Demystified
MSDN Unleashed: WPF Demystified
 
A Developer Day 2014 - Durban
A Developer Day 2014 - Durban A Developer Day 2014 - Durban
A Developer Day 2014 - Durban
 
XAML: One Language to Rule Them All
XAML: One Language to Rule Them AllXAML: One Language to Rule Them All
XAML: One Language to Rule Them All
 
Front End Development | Introduction
Front End Development | IntroductionFront End Development | Introduction
Front End Development | Introduction
 
30 Skills to Master to Become a Senior Software Engineer
30 Skills to Master to Become a Senior Software Engineer30 Skills to Master to Become a Senior Software Engineer
30 Skills to Master to Become a Senior Software Engineer
 
dot net
dot netdot net
dot net
 
The Nuxeo Way: leveraging open source to build a world-class ECM platform
The Nuxeo Way: leveraging open source to build a world-class ECM platformThe Nuxeo Way: leveraging open source to build a world-class ECM platform
The Nuxeo Way: leveraging open source to build a world-class ECM platform
 

Último

WSO2's API Vision: Unifying Control, Empowering Developers
WSO2's API Vision: Unifying Control, Empowering DevelopersWSO2's API Vision: Unifying Control, Empowering Developers
WSO2's API Vision: Unifying Control, Empowering DevelopersWSO2
 
Architecting Cloud Native Applications
Architecting Cloud Native ApplicationsArchitecting Cloud Native Applications
Architecting Cloud Native ApplicationsWSO2
 
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...DianaGray10
 
AWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of TerraformAWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of TerraformAndrey Devyatkin
 
Introduction to Multilingual Retrieval Augmented Generation (RAG)
Introduction to Multilingual Retrieval Augmented Generation (RAG)Introduction to Multilingual Retrieval Augmented Generation (RAG)
Introduction to Multilingual Retrieval Augmented Generation (RAG)Zilliz
 
Vector Search -An Introduction in Oracle Database 23ai.pptx
Vector Search -An Introduction in Oracle Database 23ai.pptxVector Search -An Introduction in Oracle Database 23ai.pptx
Vector Search -An Introduction in Oracle Database 23ai.pptxRemote DBA Services
 
Strategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherStrategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherRemote DBA Services
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfsudhanshuwaghmare1
 
Mcleodganj Call Girls 🥰 8617370543 Service Offer VIP Hot Model
Mcleodganj Call Girls 🥰 8617370543 Service Offer VIP Hot ModelMcleodganj Call Girls 🥰 8617370543 Service Offer VIP Hot Model
Mcleodganj Call Girls 🥰 8617370543 Service Offer VIP Hot ModelDeepika Singh
 
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, AdobeApidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobeapidays
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FMESafe Software
 
Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...
Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...
Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...Angeliki Cooney
 
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...apidays
 
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...Jeffrey Haguewood
 
ICT role in 21st century education and its challenges
ICT role in 21st century education and its challengesICT role in 21st century education and its challenges
ICT role in 21st century education and its challengesrafiqahmad00786416
 
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost SavingRepurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost SavingEdi Saputra
 
CNIC Information System with Pakdata Cf In Pakistan
CNIC Information System with Pakdata Cf In PakistanCNIC Information System with Pakdata Cf In Pakistan
CNIC Information System with Pakdata Cf In Pakistandanishmna97
 
Corporate and higher education May webinar.pptx
Corporate and higher education May webinar.pptxCorporate and higher education May webinar.pptx
Corporate and higher education May webinar.pptxRustici Software
 
Platformless Horizons for Digital Adaptability
Platformless Horizons for Digital AdaptabilityPlatformless Horizons for Digital Adaptability
Platformless Horizons for Digital AdaptabilityWSO2
 

Último (20)

WSO2's API Vision: Unifying Control, Empowering Developers
WSO2's API Vision: Unifying Control, Empowering DevelopersWSO2's API Vision: Unifying Control, Empowering Developers
WSO2's API Vision: Unifying Control, Empowering Developers
 
Architecting Cloud Native Applications
Architecting Cloud Native ApplicationsArchitecting Cloud Native Applications
Architecting Cloud Native Applications
 
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
 
AWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of TerraformAWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of Terraform
 
Introduction to Multilingual Retrieval Augmented Generation (RAG)
Introduction to Multilingual Retrieval Augmented Generation (RAG)Introduction to Multilingual Retrieval Augmented Generation (RAG)
Introduction to Multilingual Retrieval Augmented Generation (RAG)
 
Vector Search -An Introduction in Oracle Database 23ai.pptx
Vector Search -An Introduction in Oracle Database 23ai.pptxVector Search -An Introduction in Oracle Database 23ai.pptx
Vector Search -An Introduction in Oracle Database 23ai.pptx
 
Strategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherStrategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a Fresher
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdf
 
Mcleodganj Call Girls 🥰 8617370543 Service Offer VIP Hot Model
Mcleodganj Call Girls 🥰 8617370543 Service Offer VIP Hot ModelMcleodganj Call Girls 🥰 8617370543 Service Offer VIP Hot Model
Mcleodganj Call Girls 🥰 8617370543 Service Offer VIP Hot Model
 
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, AdobeApidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
 
Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...
Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...
Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...
 
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
 
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
 
ICT role in 21st century education and its challenges
ICT role in 21st century education and its challengesICT role in 21st century education and its challenges
ICT role in 21st century education and its challenges
 
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost SavingRepurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
 
CNIC Information System with Pakdata Cf In Pakistan
CNIC Information System with Pakdata Cf In PakistanCNIC Information System with Pakdata Cf In Pakistan
CNIC Information System with Pakdata Cf In Pakistan
 
Corporate and higher education May webinar.pptx
Corporate and higher education May webinar.pptxCorporate and higher education May webinar.pptx
Corporate and higher education May webinar.pptx
 
Understanding the FAA Part 107 License ..
Understanding the FAA Part 107 License ..Understanding the FAA Part 107 License ..
Understanding the FAA Part 107 License ..
 
Platformless Horizons for Digital Adaptability
Platformless Horizons for Digital AdaptabilityPlatformless Horizons for Digital Adaptability
Platformless Horizons for Digital Adaptability
 

NET Event - Migrating WinForm

  • 1. From legacy to WPF/SL Migrating applications from Windows Form to WPF/Silverlight Raffaele Garofalo
  • 2. Who am I? Raffaele GarofaloNET Software ArchitectMCP (MCAD, MCSD, MCTS) Blog: http://blog.raffaeu.com Twitter: @raffaeu Company: Nephila Capital Ltd. (www.nephila.com) I am Italian, sorry for my bad English
  • 4. Summary Reasons for migrating Choose the right technology Is Windows Form dead? Choose the right architecture The team Some useful tools
  • 5. Reasons for migrating Legacy application that requires refactoring (partial) Legacy application developed with a very old technology (FoxPro, VB6, …) (re-write) Application that requires a more complex UI (User Interface) not sustainable with Windows Form (partial) Specific request from the Customer (at the end, he has the money …) New project (never start a new project with an old technology!)
  • 6. Always consider the budget! You do not need to re-write everything, you can keep the existing UI and migrate only the new features Windows Form can live in parallel with WPF/SL You can host Windows Form in WPF (WindowsFormHost) and WPF in Windows Form (ElementHost) or SL in Windows Form (embed browser)
  • 7. Is Windows Form dead? No, it is not. There are still thousands of active projects done in Windows Form Win Form is still the following step after VB6 WPF is not intended to replace Windows Forms It is not dead but it is an old technology. It is still available It does not separate UI from code, I can’t employ a designer for the UI
  • 8. Choose the right technology First rule: WPF is for Standalone, Silverlight is for Web, Phones Second rule: WPF works only on Windows OS, Silverlight works on Windows, MAC, Linux Third rule: WPF is a more powerful technology, Silverlight uses a restricted version of the NET Framework but more feasible for Web and Media WPF requires a knowledge of XAML for WPF, Silverlight requires XAML for SL, HTML and JS and WCF
  • 9. What can I do with? WPF Full .NET Framework(i.e. Split() has 6 overrides) UI objects derives from Visual base class Routed events, more control Cryptography more powerful Not a lot of choices for Media management SILVERLIGHT Restricted version of .NET(i.e. Split() has 3 overrides) UI objects derives from Control Routed events, less control SL supports only 4 hash algorithms Great support to Media management and streaming
  • 10. What Microsoft suggests? SL If you're just starting out, and there's a question as to which technology to choose (Silverlight or WPF) then start with Silverlight. It is generally easier to move up to WPF from Silverlight than it is to move the other way. Silverlight has a smaller API, and is therefore generally considered easier to learn. If you need a desktop application with only basic system integration, consider building a Silverlight Out-of-Browser application. Silverlight 4 Trusted Applications with IDispatch support provide access to many system resources previously unavailable to web technologies. If you need deep system integration, excellent multi-touch support, device access, local resources, and all the other things that go with a solid desktop application, then consider moving up to WPF. If you're a C++ developer, you can choose to go with C++ and MFC, or use C++ with WPF on the front end, like the Expression team did.
  • 11. Still missing … WPF A good designer tool, VS is not cool as Blend The Control toolkit is not exhaustive, you still need a third party control library Silverlight Same thing Interaction with HTML and Javascript still lacks in some parts Still requires to recompile your .dlls
  • 12. Composite Frameworks Create an application using Modules (independent assemblies) Specialize teams in different areas (UI, Presentation, Business) Reusable architecture Increase quality and usability by sharing common services and functionality
  • 13. Composite for WPF/SL Prism Requires observer patterns (message broker) Cool navigation service in V4 Only IoC with Unity (Microsoft) Astonishing resources and documentation caliburn Auto-wiring Transitions between Views Open source with less technology limits Available also for Windows Phone
  • 14. Demo WinForm demo application (MSDN, Telerik) WPF demo application (MSDN, Codeplex) Silverlight demo application (MSDN, Telerik) WPF showcasehttp://windowsclient.net/community/showcase.aspx Silverlight showcasehttp://www.silverlight.net/showcase/
  • 15. Choose the right architecture Layered application or monolithic block? SOA or not SOA? If I work with Silverlight that’s the only choice … TDD or not TDD? What about an O/RM? Entity Framework, Nhibernate or what? What about security, especially if I am working with SL? Design patterns, is M-V-VM mandatory?
  • 16. Layered application, why? Why should I use a layered application if it requires: More code More time More effort More people More money
  • 17. Layered application, why? The application we are designing is complex or it will be complex in the future I need to be able to make my application scalable, maintainable and secure I want to split the project over multiple teams and resources I need to recycle as many code/features as I can I need to cover with test as much surface as I can
  • 19. SOA (Service Oriented Architecture) Real reasons We need to hide the datastore and the business logic I need to spread the business logic over different technologies (WPF, Phones, REST) I can’t migrate everything (like AS400 …) so I need a bridge between old/new Developer’s reasons I need to get certified on WCF It is cool and I am the only one that doesn’t use it yet I can write 10 times more code to do the same thing
  • 21. TDD Overview. A good unit test … Run fast (they have short setups, run times, and break downs). Run in isolation (you should be able to reorder them). Use data that makes them easy to read and to understand. Use real data (e.g. copies of production data) when they need to. Represent one step towards your overall goal.
  • 22. TDD Pros and Cons PROS Indicator of project’s health Less time to fix bugs You should write application using functional code Good documentation for you code by function/requirements CONS One change may requires more effort on fixing tests than fixing real code Time to write tests You may not always need to write applications using functional code Wrong test will document wrong requirement
  • 23. O/RM, which one? Nhibernate, Entity Framework are free, others are not Nhibernate is 100% flexible but no IDE EF has an IDE but is not flexible Nhibernate has years and is open source EF is still not mature and it is not open source Nhibernate requires more experience, it is not for newbie
  • 24. O/RM PROS You are not anymore Database technology driven Write applications faster, do not need ton of SQL Easier to test the data layer CONS Less flexibility because you can’t use all the power of a specific RDBMS Devs tend to forget T-SQL/PL-SQL The database become a simple container of data, no more logic in it
  • 25. Security real facts, did you know? Most developers have no clue about security Most of the intranet applications are not secure at all, especially WinForm SOA implies an additional layer of security The database should also be encrypted A web application with “secret” data should be always SSL The NET framework provides tons of utilities and facilities to apply security
  • 26. Security concerns for my application Authentication, how the user will authenticate against the application Authentication with SOA Authorization, are we applying also granular security rights? Logging, do we know what is going on? Do we have a trace? Data protection, is security applied also at the data tier or do we use SA in SQL?
  • 28. M-V-VM Main concepts Provides separation of concerns It is natural pattern for XAML platforms Enables the developer-designer workflow Increases application testability
  • 29. Resources on M-V-VM In the Box Visual Studio integration (SEE DEMO) My Book Gary McLean’s book PRISM documentationhttp://compositewpf.codeplex.com/ Josh Smith http://joshsmithonwpf.wordpress.com/ Karl Shiffletthttp://karlshifflett.wordpress.com/
  • 30. The Team How big is the team I will work with? How much experience do they have?Guru | Some exp. | newbie What was their previous project? Do they know the difference between Client (WPF) and Web (SL)? Is there a technology leader in the Team with some experience?
  • 31. The right one Never put too many seniors: “Too many cooks spoil the dinner” Never use big teams, lot of technical debates and few hours on writing code Put together devs that love the technology they are working with, negativity is a cancer Tools make a developer life easier (documentation, books, controls, …)
  • 32. Make your life easier Choose a set of Controls, learn it and use it! Apply one pattern for the UI, learn it and use it. Do not “experiment” with customer money, do what you know and avoid the unknown Do not over engineer, remember that the Customer can appreciate only what he can see … (a.k.a. no NASA web services) Small steps, small releases, small iterations
  • 33. Some tools Books Guidance Best practices Forums and Communities
  • 34. Books My book  Architecting Applications for the Enterprise PRISM’s Developer Guide (MS PRESS) WPF 4 Unleashed (Adam Nathan) Silverlight 4 Unleashed (L. Bugnion)
  • 35. Guidance Codeplexhttp://wpfslguidance.codeplex.com/ MSDN“Developers Guide to Microsoft PRISM” WPFhttp://windowsclient.net Silverlighthttp://silverlight.net
  • 36. QA?

Notas do Editor

  1. Topics that we will analyze in this workshop:Why we want to migrate an application? Do we really need to?Why we should use one technology instead of another one? Silverlight, WPF, what else?Is Windows Form dead? What about SL?Why we should choose one design instead of another one? Should I use an O/RM, shouldn’t I? Should I use SOA, shouldn’t I?Is my team ready for a new technology? If it’s not ready, what should I do?Some useful tools and links
  2. Who I am, what is my experience and my backgroundHow you can reach me, what I write in my blogWhere I work, what do I do thereDifferences between software developer and architect
  3. Why two different booksWhat do I talk about in the microsoft book?LayeringDesign patternsDALDDDTDDBLLMVVMWhat in the second one?WPFLayeringBlendEntity FrameworkWCFStylesDataTemplate
  4. Topics that we will analyze in this workshop:Why we want to migrate an application? Do we really need to?Why we should use one technology instead of another one? Silverlight, WPF, what else?Is Windows Form dead? What about SL?Why we should choose one design instead of another one? Should I use an O/RM, shouldn’t I? Should I use SOA, shouldn’t I?Is my team ready for a new technology? If it’s not ready, what should I do?Some useful tools and links
  5. I have a legacy application in Windows Form and I do not have the time to migrate or change itso it would be easier to add an additional component or module in WPF/SL and leave the old application as isI have a very old application that can’t be kept alive as is, so I need to re-write itThe technology I am using, like Windows Form, has some big limits and I can’t go over these limitsThe Customer wants an application using a new technology because it will guarantee a more durable lifeWhy should I use an old technology with a new project?
  6. Remember that the budget if fundamental. I can’t invest 6 months for an application that is already working just because I want to move into a new technology. The customer will not understand this business decision. I need to provide a real reason.Microsoft has designed WPF and SL and Windows Form in a way that the compatibility will be kept alive. This was the first target and this is the reason there isn’t an official tool to migrate from Win Form to WPF. You simply do not need it!
  7. There are tons of active projects written in Windows Form, in C++ and of course Microsoft can’t get rid of sucha technology in one shotRemember about VB6 to NET 2003If you were working with VBx before, Win Form is the natural next move. Same IDE, same way of handling methods, eventsJust more OOPIt is not dead but it won’t work forever. Consider what happened to Windows Phone. Windows CE 6 is not dead but the new phones will work on WP7 (Silverlight)Windows Form runs on Windows 7 but rumors say that in the future only WPF and SL will run on the next versions of Windows (they are rumors)At the PDC 2010 Microsoft didn’t talk at all about Windows Form. Guess why?It is an old technology and if you move to WPF you will have tons of advantages, right away
  8. Standalone means that it runs on a Client, it doesn’t need necessarily a web connection andit doesn’t need a browser and so on … Less security implied because it doesn’t use the internet. Less portable …SL is designed for the web and WP7 for the phones. SO different technology for different audience!WPF is a Windows technology while Silverlight is cross platform, cross device but with some limitationsWPF is more powerful but Silverlight is more feasible for Web and MediaWPF is for core developers, Silverlight is for web developers because it is a web technology
  9. Some demo with Windows Form. The UI loads slower because it takes more timeSome demo with WPF, better UI but more CPU usageSome silvelright demo, good but on IE they looks different than in chromeSHOW INSTALL SL LOCALLYSHOW WPF and SL showcases
  10. Should I stick the code inside the WPF view or should I use a layered architectureWhen it is the case of working with SOA, when it is not the caseTest Driven is a waste of time or it is notWhat are the advantages of using an O/RM and why we should use itWhat are the considerations about security that I should do especially with Silverlight and SOAAre design patterns mandatory?