SlideShare a Scribd company logo
1 of 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!

More Related Content

What's hot

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 sdkfirenze-gtug
 
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 CompositionDr. Arif Wider
 
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-htmlIlia Idakiev
 
Hybrid Apps (Native + Web) via QtWebKit
Hybrid Apps (Native + Web) via QtWebKitHybrid Apps (Native + Web) via QtWebKit
Hybrid Apps (Native + Web) via QtWebKitAriya Hidayat
 
How to Webpack your Django!
How to Webpack your Django!How to Webpack your Django!
How to Webpack your Django!David Gibbons
 
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)David Gibbons
 
Звиад Кардава "Android Things + Google Weave"
Звиад Кардава "Android Things + Google Weave" Звиад Кардава "Android Things + Google Weave"
Звиад Кардава "Android Things + Google Weave" IT Event
 
Aleksey Bogachuk - "Offline Second"
Aleksey Bogachuk - "Offline Second"Aleksey Bogachuk - "Offline Second"
Aleksey Bogachuk - "Offline Second"IT Event
 
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 FutureRichard Worth
 
Web Components Everywhere
Web Components EverywhereWeb Components Everywhere
Web Components EverywhereIlia Idakiev
 
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 HamburgDr. Arif Wider
 
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-BinderSimon Massey
 
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 2017Matt Raible
 
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.1Matt Raible
 
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-RSArun Gupta
 
當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 ComponentsPeter Lehto
 
JAX-RS JavaOne Hyderabad, India 2011
JAX-RS JavaOne Hyderabad, India 2011JAX-RS JavaOne Hyderabad, India 2011
JAX-RS JavaOne Hyderabad, India 2011Shreedhar Ganapathy
 

What's hot (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
 

Viewers also liked

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 WPFPaul Stovell
 
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 PRISMDataLeader.io
 
Xstrata Kiosk Project Summary
Xstrata Kiosk Project SummaryXstrata Kiosk Project Summary
Xstrata Kiosk Project SummaryPaul Stovell
 
Kim Schmidt's Resume
Kim Schmidt's ResumeKim Schmidt's Resume
Kim Schmidt's ResumeDataLeader.io
 
How to Write a Amazing Ebook
How to Write a Amazing EbookHow to Write a Amazing Ebook
How to Write a Amazing EbookDeuceBrown
 
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 PreviewDataLeader.io
 

Viewers also liked (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
 

Similar to Get Started with the Silverlight User Group Starter Kit

Vaadin 7 CN
Vaadin 7 CNVaadin 7 CN
Vaadin 7 CNjojule
 
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)Obeo
 
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 ADFSeanGraham5
 
Silverlight 4 @ MSDN Live
Silverlight 4 @ MSDN LiveSilverlight 4 @ MSDN Live
Silverlight 4 @ MSDN Livegoeran
 
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 MongoDBMongoDB
 
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 applicationsJack-Junjie Cai
 
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 RuntimeNokiaAppForum
 
Workshop: Building Vaadin add-ons
Workshop: Building Vaadin add-onsWorkshop: Building Vaadin add-ons
Workshop: Building Vaadin add-onsSami Ekblad
 
DODN2009 - Jump Start Silverlight
DODN2009 - Jump Start SilverlightDODN2009 - Jump Start Silverlight
DODN2009 - Jump Start SilverlightClint Edmonson
 
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 2008Jonas Follesø
 
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 Seminarcontest-theta360
 
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 WorkforceTechWell
 
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 2017Matt Raible
 
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 VoltaDaniel Fisher
 
[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のアップデート、事例、デ...Naoki (Neo) SATO
 
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 Agarwalratneshsinghparihar
 
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 WorkshopMark Rackley
 
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 RolesMalcolm Duncanson, CISSP
 

Similar to Get Started with the Silverlight User Group Starter Kit (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
 

More from DataLeader.io

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 DatabaseDataLeader.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.0DataLeader.io
 
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 SeriesDataLeader.io
 
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!)DataLeader.io
 
The Zen of Silverlight
The Zen of SilverlightThe Zen of Silverlight
The Zen of SilverlightDataLeader.io
 
The Fundamentals of HTML5
The Fundamentals of HTML5The Fundamentals of HTML5
The Fundamentals of HTML5DataLeader.io
 
Managing High Availability with Low Cost
Managing High Availability with Low CostManaging High Availability with Low Cost
Managing High Availability with Low CostDataLeader.io
 
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 SDKDataLeader.io
 

More from 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
 

Recently uploaded

Cyber security and its impact on E commerce
Cyber security and its impact on E commerceCyber security and its impact on E commerce
Cyber security and its impact on E commercemanigoyal112
 
Ahmed Motair CV April 2024 (Senior SW Developer)
Ahmed Motair CV April 2024 (Senior SW Developer)Ahmed Motair CV April 2024 (Senior SW Developer)
Ahmed Motair CV April 2024 (Senior SW Developer)Ahmed Mater
 
A healthy diet for your Java application Devoxx France.pdf
A healthy diet for your Java application Devoxx France.pdfA healthy diet for your Java application Devoxx France.pdf
A healthy diet for your Java application Devoxx France.pdfMarharyta Nedzelska
 
Alfresco TTL#157 - Troubleshooting Made Easy: Deciphering Alfresco mTLS Confi...
Alfresco TTL#157 - Troubleshooting Made Easy: Deciphering Alfresco mTLS Confi...Alfresco TTL#157 - Troubleshooting Made Easy: Deciphering Alfresco mTLS Confi...
Alfresco TTL#157 - Troubleshooting Made Easy: Deciphering Alfresco mTLS Confi...Angel Borroy López
 
Tech Tuesday - Mastering Time Management Unlock the Power of OnePlan's Timesh...
Tech Tuesday - Mastering Time Management Unlock the Power of OnePlan's Timesh...Tech Tuesday - Mastering Time Management Unlock the Power of OnePlan's Timesh...
Tech Tuesday - Mastering Time Management Unlock the Power of OnePlan's Timesh...OnePlan Solutions
 
What is Advanced Excel and what are some best practices for designing and cre...
What is Advanced Excel and what are some best practices for designing and cre...What is Advanced Excel and what are some best practices for designing and cre...
What is Advanced Excel and what are some best practices for designing and cre...Technogeeks
 
CRM Contender Series: HubSpot vs. Salesforce
CRM Contender Series: HubSpot vs. SalesforceCRM Contender Series: HubSpot vs. Salesforce
CRM Contender Series: HubSpot vs. SalesforceBrainSell Technologies
 
Comparing Linux OS Image Update Models - EOSS 2024.pdf
Comparing Linux OS Image Update Models - EOSS 2024.pdfComparing Linux OS Image Update Models - EOSS 2024.pdf
Comparing Linux OS Image Update Models - EOSS 2024.pdfDrew Moseley
 
Machine Learning Software Engineering Patterns and Their Engineering
Machine Learning Software Engineering Patterns and Their EngineeringMachine Learning Software Engineering Patterns and Their Engineering
Machine Learning Software Engineering Patterns and Their EngineeringHironori Washizaki
 
Call Us🔝>༒+91-9711147426⇛Call In girls karol bagh (Delhi)
Call Us🔝>༒+91-9711147426⇛Call In girls karol bagh (Delhi)Call Us🔝>༒+91-9711147426⇛Call In girls karol bagh (Delhi)
Call Us🔝>༒+91-9711147426⇛Call In girls karol bagh (Delhi)jennyeacort
 
MYjobs Presentation Django-based project
MYjobs Presentation Django-based projectMYjobs Presentation Django-based project
MYjobs Presentation Django-based projectAnoyGreter
 
Salesforce Implementation Services PPT By ABSYZ
Salesforce Implementation Services PPT By ABSYZSalesforce Implementation Services PPT By ABSYZ
Salesforce Implementation Services PPT By ABSYZABSYZ Inc
 
Sending Calendar Invites on SES and Calendarsnack.pdf
Sending Calendar Invites on SES and Calendarsnack.pdfSending Calendar Invites on SES and Calendarsnack.pdf
Sending Calendar Invites on SES and Calendarsnack.pdf31events.com
 
PREDICTING RIVER WATER QUALITY ppt presentation
PREDICTING  RIVER  WATER QUALITY  ppt presentationPREDICTING  RIVER  WATER QUALITY  ppt presentation
PREDICTING RIVER WATER QUALITY ppt presentationvaddepallysandeep122
 
Open Source Summit NA 2024: Open Source Cloud Costs - OpenCost's Impact on En...
Open Source Summit NA 2024: Open Source Cloud Costs - OpenCost's Impact on En...Open Source Summit NA 2024: Open Source Cloud Costs - OpenCost's Impact on En...
Open Source Summit NA 2024: Open Source Cloud Costs - OpenCost's Impact on En...Matt Ray
 
Software Project Health Check: Best Practices and Techniques for Your Product...
Software Project Health Check: Best Practices and Techniques for Your Product...Software Project Health Check: Best Practices and Techniques for Your Product...
Software Project Health Check: Best Practices and Techniques for Your Product...Velvetech LLC
 
Maximizing Efficiency and Profitability with OnePlan’s Professional Service A...
Maximizing Efficiency and Profitability with OnePlan’s Professional Service A...Maximizing Efficiency and Profitability with OnePlan’s Professional Service A...
Maximizing Efficiency and Profitability with OnePlan’s Professional Service A...OnePlan Solutions
 
Powering Real-Time Decisions with Continuous Data Streams
Powering Real-Time Decisions with Continuous Data StreamsPowering Real-Time Decisions with Continuous Data Streams
Powering Real-Time Decisions with Continuous Data StreamsSafe Software
 
Unveiling the Future: Sylius 2.0 New Features
Unveiling the Future: Sylius 2.0 New FeaturesUnveiling the Future: Sylius 2.0 New Features
Unveiling the Future: Sylius 2.0 New FeaturesŁukasz Chruściel
 

Recently uploaded (20)

Cyber security and its impact on E commerce
Cyber security and its impact on E commerceCyber security and its impact on E commerce
Cyber security and its impact on E commerce
 
Ahmed Motair CV April 2024 (Senior SW Developer)
Ahmed Motair CV April 2024 (Senior SW Developer)Ahmed Motair CV April 2024 (Senior SW Developer)
Ahmed Motair CV April 2024 (Senior SW Developer)
 
A healthy diet for your Java application Devoxx France.pdf
A healthy diet for your Java application Devoxx France.pdfA healthy diet for your Java application Devoxx France.pdf
A healthy diet for your Java application Devoxx France.pdf
 
Alfresco TTL#157 - Troubleshooting Made Easy: Deciphering Alfresco mTLS Confi...
Alfresco TTL#157 - Troubleshooting Made Easy: Deciphering Alfresco mTLS Confi...Alfresco TTL#157 - Troubleshooting Made Easy: Deciphering Alfresco mTLS Confi...
Alfresco TTL#157 - Troubleshooting Made Easy: Deciphering Alfresco mTLS Confi...
 
Tech Tuesday - Mastering Time Management Unlock the Power of OnePlan's Timesh...
Tech Tuesday - Mastering Time Management Unlock the Power of OnePlan's Timesh...Tech Tuesday - Mastering Time Management Unlock the Power of OnePlan's Timesh...
Tech Tuesday - Mastering Time Management Unlock the Power of OnePlan's Timesh...
 
What is Advanced Excel and what are some best practices for designing and cre...
What is Advanced Excel and what are some best practices for designing and cre...What is Advanced Excel and what are some best practices for designing and cre...
What is Advanced Excel and what are some best practices for designing and cre...
 
CRM Contender Series: HubSpot vs. Salesforce
CRM Contender Series: HubSpot vs. SalesforceCRM Contender Series: HubSpot vs. Salesforce
CRM Contender Series: HubSpot vs. Salesforce
 
Hot Sexy call girls in Patel Nagar🔝 9953056974 🔝 escort Service
Hot Sexy call girls in Patel Nagar🔝 9953056974 🔝 escort ServiceHot Sexy call girls in Patel Nagar🔝 9953056974 🔝 escort Service
Hot Sexy call girls in Patel Nagar🔝 9953056974 🔝 escort Service
 
Comparing Linux OS Image Update Models - EOSS 2024.pdf
Comparing Linux OS Image Update Models - EOSS 2024.pdfComparing Linux OS Image Update Models - EOSS 2024.pdf
Comparing Linux OS Image Update Models - EOSS 2024.pdf
 
Machine Learning Software Engineering Patterns and Their Engineering
Machine Learning Software Engineering Patterns and Their EngineeringMachine Learning Software Engineering Patterns and Their Engineering
Machine Learning Software Engineering Patterns and Their Engineering
 
Call Us🔝>༒+91-9711147426⇛Call In girls karol bagh (Delhi)
Call Us🔝>༒+91-9711147426⇛Call In girls karol bagh (Delhi)Call Us🔝>༒+91-9711147426⇛Call In girls karol bagh (Delhi)
Call Us🔝>༒+91-9711147426⇛Call In girls karol bagh (Delhi)
 
MYjobs Presentation Django-based project
MYjobs Presentation Django-based projectMYjobs Presentation Django-based project
MYjobs Presentation Django-based project
 
Salesforce Implementation Services PPT By ABSYZ
Salesforce Implementation Services PPT By ABSYZSalesforce Implementation Services PPT By ABSYZ
Salesforce Implementation Services PPT By ABSYZ
 
Sending Calendar Invites on SES and Calendarsnack.pdf
Sending Calendar Invites on SES and Calendarsnack.pdfSending Calendar Invites on SES and Calendarsnack.pdf
Sending Calendar Invites on SES and Calendarsnack.pdf
 
PREDICTING RIVER WATER QUALITY ppt presentation
PREDICTING  RIVER  WATER QUALITY  ppt presentationPREDICTING  RIVER  WATER QUALITY  ppt presentation
PREDICTING RIVER WATER QUALITY ppt presentation
 
Open Source Summit NA 2024: Open Source Cloud Costs - OpenCost's Impact on En...
Open Source Summit NA 2024: Open Source Cloud Costs - OpenCost's Impact on En...Open Source Summit NA 2024: Open Source Cloud Costs - OpenCost's Impact on En...
Open Source Summit NA 2024: Open Source Cloud Costs - OpenCost's Impact on En...
 
Software Project Health Check: Best Practices and Techniques for Your Product...
Software Project Health Check: Best Practices and Techniques for Your Product...Software Project Health Check: Best Practices and Techniques for Your Product...
Software Project Health Check: Best Practices and Techniques for Your Product...
 
Maximizing Efficiency and Profitability with OnePlan’s Professional Service A...
Maximizing Efficiency and Profitability with OnePlan’s Professional Service A...Maximizing Efficiency and Profitability with OnePlan’s Professional Service A...
Maximizing Efficiency and Profitability with OnePlan’s Professional Service A...
 
Powering Real-Time Decisions with Continuous Data Streams
Powering Real-Time Decisions with Continuous Data StreamsPowering Real-Time Decisions with Continuous Data Streams
Powering Real-Time Decisions with Continuous Data Streams
 
Unveiling the Future: Sylius 2.0 New Features
Unveiling the Future: Sylius 2.0 New FeaturesUnveiling the Future: Sylius 2.0 New Features
Unveiling the Future: Sylius 2.0 New Features
 

Get Started with the Silverlight User Group Starter Kit

  • 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!

Editor's Notes

  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.