SlideShare une entreprise Scribd logo
1  sur  30
LET’S GET IT STARTED, HA!
LET’S GET IT STARTED IN HERE!




         David Silverlight & Kim Schmidt
David Silverlight
 Kim Schmidt, Victor Gaudioso,
     Cigdem Patlak, Colin Blair,
      John O’Keefe, Al Pascual,
       Jose Luis Latorre Millas,
   Edu Couchez, Caleb Jenkins,
      David Kelley, Ariel Leroux
Why Do I Care About The
Silverlight User Group Starter Kit?
 See Silverlight 4 features out of demo mode and in real
    world mode.
   “Out-of-the-Box” Fully Functional User Group Website
   Codebase that can applied to any Silverlight 4 application
   Uses Silverlight 4.0
   Solid MVVM-based Architecture focusing on Best Practices
   Play, Learn, & Contribute to the Site = Community
    Recognition
What is This Talk About?
   Getting “hands on” with Silverlight 4
   Streaming Live Presentations
   Making use of OOB functionality
   Remote Interaction
   RIA Services
   Print & Webcam
Why Would I Listen to David & Kim?




    David Silverlight   Kim Schmidt
Overview
 Project Demo
 Reviewing Concepts and Architecture
 Code Walk-Through
 Information About Joining the Fun!
The Silverlight UG Website
Starter Kit
 SUGWSK – Worst Acronym Ever?


 The functionality for creating a rich Silverlight User Group
  Website….or User Group Website….. Or Data Driven
  Application

 The project implements Silverlight 4, will explore its new
  features, and apply them to the User Group functionality

 Tools used: Silverlight 4 Tools, Blend 4, Simple MVVM
  Framework
Architecture
 Silverlight 4
 RIA Services
 Entity Framework
 MVVM using SimpleMVVM
 SQL Server Express
 Membership using Standard .NET Membership
  provider
Demo: Authentication & Social
Networking Broadcasting
Membership and Authentication
Back to the good ole days of .NET with membership and roles 

if (!AppServices.WebContext.Current.User.IsAuthenticated)
        {
           var loginWindow = new LoginRegistrationWindow();
           loginWindow.Show();

         loginWindow.Closed += new EventHandler(loginWindow_Closed);
       }
       else
       {
          PrintBadgePage PrintBadgeChildWindow = new PrintBadgePage();
          PrintBadgeChildWindow.Show();
       }
Membership and Authentication
Back to the good ole days of .NET with
 membership and roles 
 <profile>
    <properties>
     <add name="FriendlyName" />
     <add name="TwitterID" />
     <add name="LinkedInID" />
     <add name="Website" />
     <add name="Address" />
     <add name="City" />
     <add name="State" />
     <add name="ZipCode" />
     <add name="Bio" />
     <add name="PhotoURL" />
     <add name="FacebookID" />
     <add name="LinkedInID" />
    </properties>
   </profile>
Demo: Model – View – ViewModel
& RIA Services
Model – View – ViewModel
 The Model class has the code to contain and access
 data.

 The View is usually a control that has code (preferably
 in the form of XAML markup) that visualizes some of
 the data in your model and ViewModel.

 And then there is a class named either
 ViewModel, PresentationModel, or Presenter that will
 hold as much of the UI logic as possible.
WCF RIA Services
 Simplifies the traditional n-tier application pattern by
  bringing together the ASP.NET and Silverlight platforms.
 Provides a pattern to write application logic that runs on
  the mid-tier and controls access to data for
  queries, changes and custom operations.
 It also provides end-to-end support for common tasks such
  as data validation, authentication and roles by integrating
  with Silverlight components on the client and ASP.NET on
  the mid-tier.
RIA Services on MVVM
WFC RIA Services
- Two key aspects:
   - RIA Services
     Class Library
   - Separation Into
     Partial Classes
Demo: Printing
Printing (Yes, Actual Printing)
 The Silverlight 4 printing support allows you to specify a XAML tree to
  print.

 Overall its pretty simple. It all starts with the PrintDocument class. This
  class exposes several events that are used to call back to ask you about
  how to print individual pages.

 The PrintPage event passes in a PrintPageEventArgs object
  that contains a couple of pieces of information.
    Width and Height - used to help size your XAML before being
     printed.
    PageVisual which is any UIElement-derived element to be
     printed. Typically this is either a single control (e.g. DataGrid)
     or a container for other elements. You can also specify the
     whole page if you're just doing page printing.
    HasMorePages - specify whether there are more pages to
     print with the HasMorePages property.
Printing (Yes, Actual Printing)
 Simple PrintDocument creation:
 PrintDocument doc = new PrintDocument();
 doc.DocumentName = "Sample Print";
 doc.StartPrint += new EventHandler<StartPrintEventArgs>(doc_StartPrint);
 doc.PrintPage += new EventHandler<PrintPageEventArgs>(doc_PrintPage);
 doc.Print();


 Printing an Element
 void doc_PrintPage(object sender, PrintPageEventArgs e)
 {
 // Stretch to the size of the printed page
 printSurface.Width = e.PrintableArea.Width;
 printSurface.Height = e.PrintableArea.Height;
 // Assign the XAML element to be printed
 e.PageVisual = printSurface;
 // Specify whether to call again for another page
 e.HasMorePages = false;
 }
Printing ( 1 of 2)
Printing an Event Pass
 void btnPrint_Click(object sender, RoutedEventArgs e)
      {
         //Create Event Badge Print Document
         PrintDocument badge2Print = new PrintDocument();
         badge2Print.DocumentName = "EventAttendeeBadge";

          //Hide the print section at the end of printing
         badge2Print.EndPrint += (owner, args) =>
         {
             printGridCanvas.Visibility = Visibility.Collapsed;
          };

         //Set the PageVisual element to the PrintGrid
         badge2Print.PrintPage += (owner, args) => { args.PageVisual = printGrid; };
         badge2Print.Print();
     }
Printing (2 of 2)
Preparing a Grid for printing..


void preparePrintData()
    {
         textBlockAttendeeIdPrint.Text = textBlockAttendeeId.Text;
         textBlockAttendeeNamePrint.Text = textBlockAttendeeNamePrint.Text;
         textBlockMeetingTimePrint.Text = textBlockMeetingTime.Text;
         textBlockMeetingTitlePrint.Text = textBlockMeetingTitle.Text;

         imageRectanglePrint.Fill = WebcamRectangle.Fill;

         printGridCanvas.Visibility = Visibility.Visible;
     }
Demo: Video & WebCam Support




    Team Member Victor Gaudioso getting our live
    streaming working for the first time!
Video and WebCam Support ( 1 of 2)
 void StartCamBtn_Click(object sender, RoutedEventArgs e)
      {
         if (!VideoIsPlaying)
         {
             VideoIsPlaying = true;
             if (CaptureDeviceConfiguration.AllowedDeviceAccess ||
              CaptureDeviceConfiguration.RequestDeviceAccess())
             {
                 MyVideoBrush.SetSource(CapSrc);
                 WebcamRectangle.Fill = MyVideoBrush;
                 CapSrc.Start();
                 StartCamBtn.Content = "Stop Web Cam";
             }
         }
         else
         {
             VideoIsPlaying = false;
             CapSrc.Stop();
             StartCamBtn.Content = "Start Web Cam";
         }

     }
Video and WebCam Support (2 of 2)

 void UploadPictureBtn_Click(object sender, RoutedEventArgs e)
      {
        OpenFileDialog pfd = new OpenFileDialog();
        pfd.Filter = "PNG Files (*.png)|*.png|All Files (*.*)|*.*";
        pfd.FilterIndex = 1;

         if ((bool)pfd.ShowDialog())
         {
             Stream stream = pfd.File.OpenRead();
             BitmapImage bi = new BitmapImage();
             bi.SetSource(stream);
             ImageBrush brush = new ImageBrush();
             brush.ImageSource = bi;
             WebcamRectangle.Fill = brush;
         }
     }
Great Ideas Not
Implemented, Bloopers, & Other
Entertainment
Code Overview
 Out-of-the-Box” Fully Functional User Group Website
 Uses Silverlight 4.0
 Solid MVVM Architecture
 Play, Learn, & Contribute to the Site = Community
  Recognition
 Printing & WebCam Functionality
 Authentication & RIA Services
 Out-of-Browser Project for Speaker Notification
David Silverlight
                                         David Kelley
Silverlight 3 UGSK                       Jose Luis Latorre Millas

 Currently You Can View SL v3.0:
    http://www.seattlesilverlight.net
    http://www.sfsug.com
 Open Source Project:
    http://silverlightugstarter.codeplex.com/
Credits to the Silverlight 4
UGSK: Developers & Designers
   David Silverlight
   Kim Schmidt
   Jose Luis Latorre Millas
   Cigdem Patlak
   Victor Gaudioso
   Edu Couchez
   Colin Blair
   Al Pasqual
Community Collaboration
 This website is Open Source!
 We welcome any developer or designer to extend the
  application in any way: come play!
 For example, near the very end of the project as you see
  here today, Al Pasqual totally replaced our Bing
  mapping section with his code, totally improving the
  application overall
Future Enhancements
   Improved Design Assets
   Improved Menu Navigation; Menu Extensibility
   More Intuitive UX
   Automatic Social Networking Broadcasts when Viewing Online
   Extend the Platform: Win Phone 7 Series, Zune, Xbox
   Drag & Drop from Desktop to Browser
   More Elevated Trust, OOB Functionalities (Calendar)
   “Fun Factor” UI Elements
   YOU tell US!
Contact TheSilverlightGroup
 Company:
           Us:
 Email: David@TheSilverlightGroup.com
 Phone: 561-212-5707
 Email: kim.scmidt@cox.net
 Phone: 949-735-8505
We always appreciate hearing from you.
 We want to know what you think &
 create, & we will promote what you do!

Contenu connexe

Tendances

Hybrid Apps (Native + Web) via QtWebKit
Hybrid Apps (Native + Web) via QtWebKitHybrid Apps (Native + Web) via QtWebKit
Hybrid Apps (Native + Web) via QtWebKit
Ariya Hidayat
 
Звиад Кардава "Android Things + Google Weave"
Звиад Кардава "Android Things + Google Weave" Звиад Кардава "Android Things + Google Weave"
Звиад Кардава "Android Things + Google Weave"
IT Event
 
JAX-RS JavaOne Hyderabad, India 2011
JAX-RS JavaOne Hyderabad, India 2011JAX-RS JavaOne Hyderabad, India 2011
JAX-RS JavaOne Hyderabad, India 2011
Shreedhar Ganapathy
 

Tendances (20)

google drive and the google drive sdk
google drive and the google drive sdkgoogle drive and the google drive sdk
google drive and the google drive sdk
 
Web Components
Web ComponentsWeb Components
Web Components
 
An Unexpected Solution to Microservices UI Composition
An Unexpected Solution to Microservices UI CompositionAn Unexpected Solution to Microservices UI Composition
An Unexpected Solution to Microservices UI Composition
 
Creating lightweight JS Apps w/ Web Components and lit-html
Creating lightweight JS Apps w/ Web Components and lit-htmlCreating lightweight JS Apps w/ Web Components and lit-html
Creating lightweight JS Apps w/ Web Components and lit-html
 
Apache Wicket
Apache WicketApache Wicket
Apache Wicket
 
Hybrid Apps (Native + Web) via QtWebKit
Hybrid Apps (Native + Web) via QtWebKitHybrid Apps (Native + Web) via QtWebKit
Hybrid Apps (Native + Web) via QtWebKit
 
How to Webpack your Django!
How to Webpack your Django!How to Webpack your Django!
How to Webpack your Django!
 
The Role of Python in SPAs (Single-Page Applications)
The Role of Python in SPAs (Single-Page Applications)The Role of Python in SPAs (Single-Page Applications)
The Role of Python in SPAs (Single-Page Applications)
 
Звиад Кардава "Android Things + Google Weave"
Звиад Кардава "Android Things + Google Weave" Звиад Кардава "Android Things + Google Weave"
Звиад Кардава "Android Things + Google Weave"
 
Aleksey Bogachuk - "Offline Second"
Aleksey Bogachuk - "Offline Second"Aleksey Bogachuk - "Offline Second"
Aleksey Bogachuk - "Offline Second"
 
jQuery 1.9 and 2.0 - Present and Future
jQuery 1.9 and 2.0 - Present and FuturejQuery 1.9 and 2.0 - Present and Future
jQuery 1.9 and 2.0 - Present and Future
 
Web Components Everywhere
Web Components EverywhereWeb Components Everywhere
Web Components Everywhere
 
A High-Performance Solution to Microservice UI Composition @ XConf Hamburg
A High-Performance Solution to Microservice UI Composition @ XConf HamburgA High-Performance Solution to Microservice UI Composition @ XConf Hamburg
A High-Performance Solution to Microservice UI Composition @ XConf Hamburg
 
Design Patterns in ZK: Java MVVM as Model-View-Binder
Design Patterns in ZK: Java MVVM as Model-View-BinderDesign Patterns in ZK: Java MVVM as Model-View-Binder
Design Patterns in ZK: Java MVVM as Model-View-Binder
 
What the Heck is OAuth and OpenID Connect - RWX 2017
What the Heck is OAuth and OpenID Connect - RWX 2017What the Heck is OAuth and OpenID Connect - RWX 2017
What the Heck is OAuth and OpenID Connect - RWX 2017
 
What's New in Spring 3.1
What's New in Spring 3.1What's New in Spring 3.1
What's New in Spring 3.1
 
Spark IT 2011 - Developing RESTful Web services with JAX-RS
Spark IT 2011 - Developing RESTful Web services with JAX-RSSpark IT 2011 - Developing RESTful Web services with JAX-RS
Spark IT 2011 - Developing RESTful Web services with JAX-RS
 
當ZK遇見Front-End
當ZK遇見Front-End當ZK遇見Front-End
當ZK遇見Front-End
 
Vaadin DevDay 2017 - Web Components
Vaadin DevDay 2017 - Web ComponentsVaadin DevDay 2017 - Web Components
Vaadin DevDay 2017 - Web Components
 
JAX-RS JavaOne Hyderabad, India 2011
JAX-RS JavaOne Hyderabad, India 2011JAX-RS JavaOne Hyderabad, India 2011
JAX-RS JavaOne Hyderabad, India 2011
 

En vedette

En vedette (6)

Real-world Model-View-ViewModel for WPF
Real-world Model-View-ViewModel for WPFReal-world Model-View-ViewModel for WPF
Real-world Model-View-ViewModel for WPF
 
How to Build Composite Applications with PRISM
How to Build Composite Applications with PRISMHow to Build Composite Applications with PRISM
How to Build Composite Applications with PRISM
 
Xstrata Kiosk Project Summary
Xstrata Kiosk Project SummaryXstrata Kiosk Project Summary
Xstrata Kiosk Project Summary
 
Kim Schmidt's Resume
Kim Schmidt's ResumeKim Schmidt's Resume
Kim Schmidt's Resume
 
How to Write a Amazing Ebook
How to Write a Amazing EbookHow to Write a Amazing Ebook
How to Write a Amazing Ebook
 
Microsoft Kinect & the Microsoft MIX11 Game Preview
Microsoft Kinect & the Microsoft MIX11 Game PreviewMicrosoft Kinect & the Microsoft MIX11 Game Preview
Microsoft Kinect & the Microsoft MIX11 Game Preview
 

Similaire à A Microsoft Silverlight User Group Starter Kit Made Available for Everyone to Use Pre-made

Similaire à A Microsoft Silverlight User Group Starter Kit Made Available for Everyone to Use Pre-made (20)

Vaadin 7 CN
Vaadin 7 CNVaadin 7 CN
Vaadin 7 CN
 
Zero to One : How to Integrate a Graphical Editor in a Cloud IDE (27.10.2021)
Zero to One : How to Integrate a Graphical Editor in a Cloud IDE (27.10.2021)Zero to One : How to Integrate a Graphical Editor in a Cloud IDE (27.10.2021)
Zero to One : How to Integrate a Graphical Editor in a Cloud IDE (27.10.2021)
 
How We Brought Advanced HTML5 Viewing to ADF
How We Brought Advanced HTML5 Viewing to ADFHow We Brought Advanced HTML5 Viewing to ADF
How We Brought Advanced HTML5 Viewing to ADF
 
JavaCro'14 - Building interactive web applications with Vaadin – Peter Lehto
JavaCro'14 - Building interactive web applications with Vaadin – Peter LehtoJavaCro'14 - Building interactive web applications with Vaadin – Peter Lehto
JavaCro'14 - Building interactive web applications with Vaadin – Peter Lehto
 
Silverlight 4 @ MSDN Live
Silverlight 4 @ MSDN LiveSilverlight 4 @ MSDN Live
Silverlight 4 @ MSDN Live
 
MongoDB.local Atlanta: Introduction to Serverless MongoDB
MongoDB.local Atlanta: Introduction to Serverless MongoDBMongoDB.local Atlanta: Introduction to Serverless MongoDB
MongoDB.local Atlanta: Introduction to Serverless MongoDB
 
Easy integration of Bluemix services with your applications
Easy integration of Bluemix services with your applicationsEasy integration of Bluemix services with your applications
Easy integration of Bluemix services with your applications
 
Miha Lesjak Mobilizing The Web with Web Runtime
Miha Lesjak Mobilizing The Web with Web RuntimeMiha Lesjak Mobilizing The Web with Web Runtime
Miha Lesjak Mobilizing The Web with Web Runtime
 
Workshop: Building Vaadin add-ons
Workshop: Building Vaadin add-onsWorkshop: Building Vaadin add-ons
Workshop: Building Vaadin add-ons
 
DODN2009 - Jump Start Silverlight
DODN2009 - Jump Start SilverlightDODN2009 - Jump Start Silverlight
DODN2009 - Jump Start Silverlight
 
Silverlight 2 for Developers - TechEd New Zealand 2008
Silverlight 2 for Developers - TechEd New Zealand 2008Silverlight 2 for Developers - TechEd New Zealand 2008
Silverlight 2 for Developers - TechEd New Zealand 2008
 
Vaadin & Web Components
Vaadin & Web ComponentsVaadin & Web Components
Vaadin & Web Components
 
RICOH THETA x IoT Developers Contest : Cloud API Seminar
 RICOH THETA x IoT Developers Contest : Cloud API Seminar RICOH THETA x IoT Developers Contest : Cloud API Seminar
RICOH THETA x IoT Developers Contest : Cloud API Seminar
 
Windows Azure: Connecting the Dots for a Mobile Workforce
Windows Azure: Connecting the Dots for a Mobile WorkforceWindows Azure: Connecting the Dots for a Mobile Workforce
Windows Azure: Connecting the Dots for a Mobile Workforce
 
Front End Development for Back End Developers - Denver Startup Week 2017
Front End Development for Back End Developers - Denver Startup Week 2017Front End Development for Back End Developers - Denver Startup Week 2017
Front End Development for Back End Developers - Denver Startup Week 2017
 
2008 - TechDays PT: Building Software + Services with Volta
2008 - TechDays PT: Building Software + Services with Volta2008 - TechDays PT: Building Software + Services with Volta
2008 - TechDays PT: Building Software + Services with Volta
 
[Serverless Meetup Tokyo #3] Serverless in Azure (Azure Functionsのアップデート、事例、デ...
[Serverless Meetup Tokyo #3] Serverless in Azure (Azure Functionsのアップデート、事例、デ...[Serverless Meetup Tokyo #3] Serverless in Azure (Azure Functionsのアップデート、事例、デ...
[Serverless Meetup Tokyo #3] Serverless in Azure (Azure Functionsのアップデート、事例、デ...
 
Django app deployment in Azure By Saurabh Agarwal
Django app deployment in Azure By Saurabh AgarwalDjango app deployment in Azure By Saurabh Agarwal
Django app deployment in Azure By Saurabh Agarwal
 
Introduction to Client Side Dev in SharePoint Workshop
Introduction to Client Side Dev in SharePoint WorkshopIntroduction to Client Side Dev in SharePoint Workshop
Introduction to Client Side Dev in SharePoint Workshop
 
Masterless Puppet Using AWS S3 Buckets and IAM Roles
Masterless Puppet Using AWS S3 Buckets and IAM RolesMasterless Puppet Using AWS S3 Buckets and IAM Roles
Masterless Puppet Using AWS S3 Buckets and IAM Roles
 

Plus de DataLeader.io

Amazon Aurora Cloud-native Relational Database, Section 2.0
Amazon Aurora Cloud-native Relational Database, Section 2.0Amazon Aurora Cloud-native Relational Database, Section 2.0
Amazon Aurora Cloud-native Relational Database, Section 2.0
DataLeader.io
 

Plus de DataLeader.io (8)

An Introduction to Amazon Aurora Cloud-native Relational Database
An Introduction to Amazon Aurora Cloud-native Relational DatabaseAn Introduction to Amazon Aurora Cloud-native Relational Database
An Introduction to Amazon Aurora Cloud-native Relational Database
 
Amazon Aurora Cloud-native Relational Database, Section 2.0
Amazon Aurora Cloud-native Relational Database, Section 2.0Amazon Aurora Cloud-native Relational Database, Section 2.0
Amazon Aurora Cloud-native Relational Database, Section 2.0
 
Amazon Aurora Relational Database Built for the AWS Cloud, Version 1 Series
Amazon Aurora Relational Database Built for the AWS Cloud, Version 1 SeriesAmazon Aurora Relational Database Built for the AWS Cloud, Version 1 Series
Amazon Aurora Relational Database Built for the AWS Cloud, Version 1 Series
 
Microsoft DigiGirlz, Teaching Teens About Databases (Trick!)
Microsoft DigiGirlz, Teaching Teens About Databases (Trick!)Microsoft DigiGirlz, Teaching Teens About Databases (Trick!)
Microsoft DigiGirlz, Teaching Teens About Databases (Trick!)
 
The Zen of Silverlight
The Zen of SilverlightThe Zen of Silverlight
The Zen of Silverlight
 
The Fundamentals of HTML5
The Fundamentals of HTML5The Fundamentals of HTML5
The Fundamentals of HTML5
 
Managing High Availability with Low Cost
Managing High Availability with Low CostManaging High Availability with Low Cost
Managing High Availability with Low Cost
 
Building Applications with the Microsoft Kinect SDK
Building Applications with the Microsoft Kinect SDKBuilding Applications with the Microsoft Kinect SDK
Building Applications with the Microsoft Kinect SDK
 

Dernier

AI Mastery 201: Elevating Your Workflow with Advanced LLM Techniques
AI Mastery 201: Elevating Your Workflow with Advanced LLM TechniquesAI Mastery 201: Elevating Your Workflow with Advanced LLM Techniques
AI Mastery 201: Elevating Your Workflow with Advanced LLM Techniques
VictorSzoltysek
 
introduction-to-automotive Andoid os-csimmonds-ndctechtown-2021.pdf
introduction-to-automotive Andoid os-csimmonds-ndctechtown-2021.pdfintroduction-to-automotive Andoid os-csimmonds-ndctechtown-2021.pdf
introduction-to-automotive Andoid os-csimmonds-ndctechtown-2021.pdf
VishalKumarJha10
 
CHEAP Call Girls in Pushp Vihar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
CHEAP Call Girls in Pushp Vihar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICECHEAP Call Girls in Pushp Vihar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
CHEAP Call Girls in Pushp Vihar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
9953056974 Low Rate Call Girls In Saket, Delhi NCR
 

Dernier (20)

Unveiling the Tech Salsa of LAMs with Janus in Real-Time Applications
Unveiling the Tech Salsa of LAMs with Janus in Real-Time ApplicationsUnveiling the Tech Salsa of LAMs with Janus in Real-Time Applications
Unveiling the Tech Salsa of LAMs with Janus in Real-Time Applications
 
AI Mastery 201: Elevating Your Workflow with Advanced LLM Techniques
AI Mastery 201: Elevating Your Workflow with Advanced LLM TechniquesAI Mastery 201: Elevating Your Workflow with Advanced LLM Techniques
AI Mastery 201: Elevating Your Workflow with Advanced LLM Techniques
 
A Secure and Reliable Document Management System is Essential.docx
A Secure and Reliable Document Management System is Essential.docxA Secure and Reliable Document Management System is Essential.docx
A Secure and Reliable Document Management System is Essential.docx
 
5 Signs You Need a Fashion PLM Software.pdf
5 Signs You Need a Fashion PLM Software.pdf5 Signs You Need a Fashion PLM Software.pdf
5 Signs You Need a Fashion PLM Software.pdf
 
How to Choose the Right Laravel Development Partner in New York City_compress...
How to Choose the Right Laravel Development Partner in New York City_compress...How to Choose the Right Laravel Development Partner in New York City_compress...
How to Choose the Right Laravel Development Partner in New York City_compress...
 
Direct Style Effect Systems - The Print[A] Example - A Comprehension Aid
Direct Style Effect Systems -The Print[A] Example- A Comprehension AidDirect Style Effect Systems -The Print[A] Example- A Comprehension Aid
Direct Style Effect Systems - The Print[A] Example - A Comprehension Aid
 
Exploring the Best Video Editing App.pdf
Exploring the Best Video Editing App.pdfExploring the Best Video Editing App.pdf
Exploring the Best Video Editing App.pdf
 
introduction-to-automotive Andoid os-csimmonds-ndctechtown-2021.pdf
introduction-to-automotive Andoid os-csimmonds-ndctechtown-2021.pdfintroduction-to-automotive Andoid os-csimmonds-ndctechtown-2021.pdf
introduction-to-automotive Andoid os-csimmonds-ndctechtown-2021.pdf
 
Vip Call Girls Noida ➡️ Delhi ➡️ 9999965857 No Advance 24HRS Live
Vip Call Girls Noida ➡️ Delhi ➡️ 9999965857 No Advance 24HRS LiveVip Call Girls Noida ➡️ Delhi ➡️ 9999965857 No Advance 24HRS Live
Vip Call Girls Noida ➡️ Delhi ➡️ 9999965857 No Advance 24HRS Live
 
How To Troubleshoot Collaboration Apps for the Modern Connected Worker
How To Troubleshoot Collaboration Apps for the Modern Connected WorkerHow To Troubleshoot Collaboration Apps for the Modern Connected Worker
How To Troubleshoot Collaboration Apps for the Modern Connected Worker
 
VTU technical seminar 8Th Sem on Scikit-learn
VTU technical seminar 8Th Sem on Scikit-learnVTU technical seminar 8Th Sem on Scikit-learn
VTU technical seminar 8Th Sem on Scikit-learn
 
Reassessing the Bedrock of Clinical Function Models: An Examination of Large ...
Reassessing the Bedrock of Clinical Function Models: An Examination of Large ...Reassessing the Bedrock of Clinical Function Models: An Examination of Large ...
Reassessing the Bedrock of Clinical Function Models: An Examination of Large ...
 
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
 
The Guide to Integrating Generative AI into Unified Continuous Testing Platfo...
The Guide to Integrating Generative AI into Unified Continuous Testing Platfo...The Guide to Integrating Generative AI into Unified Continuous Testing Platfo...
The Guide to Integrating Generative AI into Unified Continuous Testing Platfo...
 
AI & Machine Learning Presentation Template
AI & Machine Learning Presentation TemplateAI & Machine Learning Presentation Template
AI & Machine Learning Presentation Template
 
W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...
W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...
W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...
 
Learn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdf
Learn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdfLearn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdf
Learn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdf
 
Unlocking the Future of AI Agents with Large Language Models
Unlocking the Future of AI Agents with Large Language ModelsUnlocking the Future of AI Agents with Large Language Models
Unlocking the Future of AI Agents with Large Language Models
 
CHEAP Call Girls in Pushp Vihar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
CHEAP Call Girls in Pushp Vihar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICECHEAP Call Girls in Pushp Vihar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
CHEAP Call Girls in Pushp Vihar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
 
Software Quality Assurance Interview Questions
Software Quality Assurance Interview QuestionsSoftware Quality Assurance Interview Questions
Software Quality Assurance Interview Questions
 

A Microsoft Silverlight User Group Starter Kit Made Available for Everyone to Use Pre-made

  • 1. LET’S GET IT STARTED, HA! LET’S GET IT STARTED IN HERE! David Silverlight & Kim Schmidt
  • 2. David Silverlight Kim Schmidt, Victor Gaudioso, Cigdem Patlak, Colin Blair, John O’Keefe, Al Pascual, Jose Luis Latorre Millas, Edu Couchez, Caleb Jenkins, David Kelley, Ariel Leroux
  • 3. Why Do I Care About The Silverlight User Group Starter Kit?  See Silverlight 4 features out of demo mode and in real world mode.  “Out-of-the-Box” Fully Functional User Group Website  Codebase that can applied to any Silverlight 4 application  Uses Silverlight 4.0  Solid MVVM-based Architecture focusing on Best Practices  Play, Learn, & Contribute to the Site = Community Recognition
  • 4. What is This Talk About?  Getting “hands on” with Silverlight 4  Streaming Live Presentations  Making use of OOB functionality  Remote Interaction  RIA Services  Print & Webcam
  • 5. Why Would I Listen to David & Kim? David Silverlight Kim Schmidt
  • 6. Overview  Project Demo  Reviewing Concepts and Architecture  Code Walk-Through  Information About Joining the Fun!
  • 7. The Silverlight UG Website Starter Kit  SUGWSK – Worst Acronym Ever?  The functionality for creating a rich Silverlight User Group Website….or User Group Website….. Or Data Driven Application  The project implements Silverlight 4, will explore its new features, and apply them to the User Group functionality  Tools used: Silverlight 4 Tools, Blend 4, Simple MVVM Framework
  • 8. Architecture  Silverlight 4  RIA Services  Entity Framework  MVVM using SimpleMVVM  SQL Server Express  Membership using Standard .NET Membership provider
  • 9. Demo: Authentication & Social Networking Broadcasting
  • 10. Membership and Authentication Back to the good ole days of .NET with membership and roles  if (!AppServices.WebContext.Current.User.IsAuthenticated) { var loginWindow = new LoginRegistrationWindow(); loginWindow.Show(); loginWindow.Closed += new EventHandler(loginWindow_Closed); } else { PrintBadgePage PrintBadgeChildWindow = new PrintBadgePage(); PrintBadgeChildWindow.Show(); }
  • 11. Membership and Authentication Back to the good ole days of .NET with membership and roles  <profile> <properties> <add name="FriendlyName" /> <add name="TwitterID" /> <add name="LinkedInID" /> <add name="Website" /> <add name="Address" /> <add name="City" /> <add name="State" /> <add name="ZipCode" /> <add name="Bio" /> <add name="PhotoURL" /> <add name="FacebookID" /> <add name="LinkedInID" /> </properties> </profile>
  • 12. Demo: Model – View – ViewModel & RIA Services
  • 13. Model – View – ViewModel  The Model class has the code to contain and access data.  The View is usually a control that has code (preferably in the form of XAML markup) that visualizes some of the data in your model and ViewModel.  And then there is a class named either ViewModel, PresentationModel, or Presenter that will hold as much of the UI logic as possible.
  • 14. WCF RIA Services  Simplifies the traditional n-tier application pattern by bringing together the ASP.NET and Silverlight platforms.  Provides a pattern to write application logic that runs on the mid-tier and controls access to data for queries, changes and custom operations.  It also provides end-to-end support for common tasks such as data validation, authentication and roles by integrating with Silverlight components on the client and ASP.NET on the mid-tier.
  • 15. RIA Services on MVVM WFC RIA Services - Two key aspects: - RIA Services Class Library - Separation Into Partial Classes
  • 17. Printing (Yes, Actual Printing)  The Silverlight 4 printing support allows you to specify a XAML tree to print.  Overall its pretty simple. It all starts with the PrintDocument class. This class exposes several events that are used to call back to ask you about how to print individual pages.  The PrintPage event passes in a PrintPageEventArgs object that contains a couple of pieces of information.  Width and Height - used to help size your XAML before being printed.  PageVisual which is any UIElement-derived element to be printed. Typically this is either a single control (e.g. DataGrid) or a container for other elements. You can also specify the whole page if you're just doing page printing.  HasMorePages - specify whether there are more pages to print with the HasMorePages property.
  • 18. Printing (Yes, Actual Printing)  Simple PrintDocument creation: PrintDocument doc = new PrintDocument(); doc.DocumentName = "Sample Print"; doc.StartPrint += new EventHandler<StartPrintEventArgs>(doc_StartPrint); doc.PrintPage += new EventHandler<PrintPageEventArgs>(doc_PrintPage); doc.Print();  Printing an Element void doc_PrintPage(object sender, PrintPageEventArgs e) { // Stretch to the size of the printed page printSurface.Width = e.PrintableArea.Width; printSurface.Height = e.PrintableArea.Height; // Assign the XAML element to be printed e.PageVisual = printSurface; // Specify whether to call again for another page e.HasMorePages = false; }
  • 19. Printing ( 1 of 2) Printing an Event Pass void btnPrint_Click(object sender, RoutedEventArgs e) { //Create Event Badge Print Document PrintDocument badge2Print = new PrintDocument(); badge2Print.DocumentName = "EventAttendeeBadge"; //Hide the print section at the end of printing badge2Print.EndPrint += (owner, args) => { printGridCanvas.Visibility = Visibility.Collapsed; }; //Set the PageVisual element to the PrintGrid badge2Print.PrintPage += (owner, args) => { args.PageVisual = printGrid; }; badge2Print.Print(); }
  • 20. Printing (2 of 2) Preparing a Grid for printing.. void preparePrintData() { textBlockAttendeeIdPrint.Text = textBlockAttendeeId.Text; textBlockAttendeeNamePrint.Text = textBlockAttendeeNamePrint.Text; textBlockMeetingTimePrint.Text = textBlockMeetingTime.Text; textBlockMeetingTitlePrint.Text = textBlockMeetingTitle.Text; imageRectanglePrint.Fill = WebcamRectangle.Fill; printGridCanvas.Visibility = Visibility.Visible; }
  • 21. Demo: Video & WebCam Support Team Member Victor Gaudioso getting our live streaming working for the first time!
  • 22. Video and WebCam Support ( 1 of 2) void StartCamBtn_Click(object sender, RoutedEventArgs e) { if (!VideoIsPlaying) { VideoIsPlaying = true; if (CaptureDeviceConfiguration.AllowedDeviceAccess || CaptureDeviceConfiguration.RequestDeviceAccess()) { MyVideoBrush.SetSource(CapSrc); WebcamRectangle.Fill = MyVideoBrush; CapSrc.Start(); StartCamBtn.Content = "Stop Web Cam"; } } else { VideoIsPlaying = false; CapSrc.Stop(); StartCamBtn.Content = "Start Web Cam"; } }
  • 23. Video and WebCam Support (2 of 2) void UploadPictureBtn_Click(object sender, RoutedEventArgs e) { OpenFileDialog pfd = new OpenFileDialog(); pfd.Filter = "PNG Files (*.png)|*.png|All Files (*.*)|*.*"; pfd.FilterIndex = 1; if ((bool)pfd.ShowDialog()) { Stream stream = pfd.File.OpenRead(); BitmapImage bi = new BitmapImage(); bi.SetSource(stream); ImageBrush brush = new ImageBrush(); brush.ImageSource = bi; WebcamRectangle.Fill = brush; } }
  • 24. Great Ideas Not Implemented, Bloopers, & Other Entertainment
  • 25. Code Overview  Out-of-the-Box” Fully Functional User Group Website  Uses Silverlight 4.0  Solid MVVM Architecture  Play, Learn, & Contribute to the Site = Community Recognition  Printing & WebCam Functionality  Authentication & RIA Services  Out-of-Browser Project for Speaker Notification
  • 26. David Silverlight David Kelley Silverlight 3 UGSK Jose Luis Latorre Millas  Currently You Can View SL v3.0:  http://www.seattlesilverlight.net  http://www.sfsug.com  Open Source Project:  http://silverlightugstarter.codeplex.com/
  • 27. Credits to the Silverlight 4 UGSK: Developers & Designers  David Silverlight  Kim Schmidt  Jose Luis Latorre Millas  Cigdem Patlak  Victor Gaudioso  Edu Couchez  Colin Blair  Al Pasqual
  • 28. Community Collaboration  This website is Open Source!  We welcome any developer or designer to extend the application in any way: come play!  For example, near the very end of the project as you see here today, Al Pasqual totally replaced our Bing mapping section with his code, totally improving the application overall
  • 29. Future Enhancements  Improved Design Assets  Improved Menu Navigation; Menu Extensibility  More Intuitive UX  Automatic Social Networking Broadcasts when Viewing Online  Extend the Platform: Win Phone 7 Series, Zune, Xbox  Drag & Drop from Desktop to Browser  More Elevated Trust, OOB Functionalities (Calendar)  “Fun Factor” UI Elements  YOU tell US!
  • 30. Contact TheSilverlightGroup  Company: Us:  Email: David@TheSilverlightGroup.com  Phone: 561-212-5707  Email: kim.scmidt@cox.net  Phone: 949-735-8505 We always appreciate hearing from you. We want to know what you think & create, & we will promote what you do!

Notes de l'éditeur

  1. (Click Screen to Open Music, Click “Play” Button for Music to Start) it stops by itself, then go to next slide
  2. Mention that they can benefit from our project. “Hey, we have been working on this project for over a year. You can just download the source code and benefit from our work”
  3. The Model class has the code to contain and access data. The View is usually a control that has code (preferably in the form of XAML markup) that visualizes some of the data in your model and ViewModel. And then there is a class named either ViewModel, PresentationModel, or Presenter that will hold as much of the UI logic as possible. Typically, a separated presentation pattern is implemented to make as much of your UI-related code unit testable as possible. Because the code in your views is notoriously hard to unit test, these separated presentation patterns help you place as much of the code as possible in a testable ViewModel class. Ideally, you would not have any code in your views, just some XAML markup that defines the visual aspects of your application and some binding expressions to display data from your ViewModel and Model. When it comes to multi-targeting, a separated presentation pattern has another significant advantage. It allows you to reuse all of your UI logic, because you have factored out that logic into separate classes. Although it&apos;s not impossible to multi-target some of the code in your views (the XAML, controls, and code-behind), we&apos;ve found that the differences between WPF and Silverlight are big enough that multi-targeting your XAML is not practical. XAML has different abilities, and the controls that are available for WPF and Silverlight are not the same. This not only affects the XAML, but it also affects the code-behind.Although it&apos;s not likely that you are able to reuse all of your UI-related code, a separated presentation pattern helps you reuse as much of the presentation logic as possible.
  4. Making this HappenOn the DomainServices folder, I have:1. Copied the namespaces, using definitions and related methods for that Entity. 2. Comment out the //[EnableClientAccess()] - there must be only one. Which I have left on the root for reference and regenerating over.3. Added the magic word &quot;Partial&quot;, being it a public partial class instead of an alone class... this allows having many filmany files, one for entity.4. Copied the methods from the original file and once done, delete or comment them from the original file.5. Name the resulting file as [Name Of The DomainService].[Name Of the Entity].cs --&gt; This allows having them ordered by name and having a quick access to them.