SlideShare ist ein Scribd-Unternehmen logo
1 von 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?

Weitere ähnliche Inhalte

Was ist angesagt?

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
 

Was ist angesagt? (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
 

Ähnlich wie 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
 

Ähnlich wie 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
 

Kürzlich hochgeladen

The Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and ConsThe Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and ConsPixlogix Infotech
 
How to write a Business Continuity Plan
How to write a Business Continuity PlanHow to write a Business Continuity Plan
How to write a Business Continuity PlanDatabarracks
 
Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Mattias Andersson
 
From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .Alan Dix
 
A Deep Dive on Passkeys: FIDO Paris Seminar.pptx
A Deep Dive on Passkeys: FIDO Paris Seminar.pptxA Deep Dive on Passkeys: FIDO Paris Seminar.pptx
A Deep Dive on Passkeys: FIDO Paris Seminar.pptxLoriGlavin3
 
Advanced Computer Architecture – An Introduction
Advanced Computer Architecture – An IntroductionAdvanced Computer Architecture – An Introduction
Advanced Computer Architecture – An IntroductionDilum Bandara
 
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptx
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptxMerck Moving Beyond Passwords: FIDO Paris Seminar.pptx
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptxLoriGlavin3
 
SALESFORCE EDUCATION CLOUD | FEXLE SERVICES
SALESFORCE EDUCATION CLOUD | FEXLE SERVICESSALESFORCE EDUCATION CLOUD | FEXLE SERVICES
SALESFORCE EDUCATION CLOUD | FEXLE SERVICESmohitsingh558521
 
SAP Build Work Zone - Overview L2-L3.pptx
SAP Build Work Zone - Overview L2-L3.pptxSAP Build Work Zone - Overview L2-L3.pptx
SAP Build Work Zone - Overview L2-L3.pptxNavinnSomaal
 
Commit 2024 - Secret Management made easy
Commit 2024 - Secret Management made easyCommit 2024 - Secret Management made easy
Commit 2024 - Secret Management made easyAlfredo García Lavilla
 
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024BookNet Canada
 
How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.Curtis Poe
 
DSPy a system for AI to Write Prompts and Do Fine Tuning
DSPy a system for AI to Write Prompts and Do Fine TuningDSPy a system for AI to Write Prompts and Do Fine Tuning
DSPy a system for AI to Write Prompts and Do Fine TuningLars Bell
 
SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024Lorenzo Miniero
 
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptx
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptxThe Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptx
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptxLoriGlavin3
 
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024BookNet Canada
 
Streamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project SetupStreamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project SetupFlorian Wilhelm
 
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek SchlawackFwdays
 
TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024Lonnie McRorey
 

Kürzlich hochgeladen (20)

DMCC Future of Trade Web3 - Special Edition
DMCC Future of Trade Web3 - Special EditionDMCC Future of Trade Web3 - Special Edition
DMCC Future of Trade Web3 - Special Edition
 
The Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and ConsThe Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and Cons
 
How to write a Business Continuity Plan
How to write a Business Continuity PlanHow to write a Business Continuity Plan
How to write a Business Continuity Plan
 
Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?
 
From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .
 
A Deep Dive on Passkeys: FIDO Paris Seminar.pptx
A Deep Dive on Passkeys: FIDO Paris Seminar.pptxA Deep Dive on Passkeys: FIDO Paris Seminar.pptx
A Deep Dive on Passkeys: FIDO Paris Seminar.pptx
 
Advanced Computer Architecture – An Introduction
Advanced Computer Architecture – An IntroductionAdvanced Computer Architecture – An Introduction
Advanced Computer Architecture – An Introduction
 
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptx
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptxMerck Moving Beyond Passwords: FIDO Paris Seminar.pptx
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptx
 
SALESFORCE EDUCATION CLOUD | FEXLE SERVICES
SALESFORCE EDUCATION CLOUD | FEXLE SERVICESSALESFORCE EDUCATION CLOUD | FEXLE SERVICES
SALESFORCE EDUCATION CLOUD | FEXLE SERVICES
 
SAP Build Work Zone - Overview L2-L3.pptx
SAP Build Work Zone - Overview L2-L3.pptxSAP Build Work Zone - Overview L2-L3.pptx
SAP Build Work Zone - Overview L2-L3.pptx
 
Commit 2024 - Secret Management made easy
Commit 2024 - Secret Management made easyCommit 2024 - Secret Management made easy
Commit 2024 - Secret Management made easy
 
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
 
How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.
 
DSPy a system for AI to Write Prompts and Do Fine Tuning
DSPy a system for AI to Write Prompts and Do Fine TuningDSPy a system for AI to Write Prompts and Do Fine Tuning
DSPy a system for AI to Write Prompts and Do Fine Tuning
 
SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024
 
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptx
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptxThe Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptx
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptx
 
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
 
Streamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project SetupStreamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project Setup
 
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
 
TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024
 

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?

Hinweis der Redaktion

  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?