Mobile Holographic Surface Hub XboxIoT Desktop.

Slides:



Advertisements
Similar presentations
Visual Studio streamlines developing universal Windows apps 3-591: Using Visual Studio to build XAML universal apps (Navit Saxena)
Advertisements

Navigation Model for Windows XAML Applications
Amanda Silver Director of Program Management Visual Studio Tools for Client Applications Cross-Platform Development using Visual Studio.
Visual Studio 2013  XAML Tooling  Debugging & Profiling.NET .NET .NET Libraries (HttpClient, Immutable, SIMD, EF, etc.) Architecture  PRISM.
Esri International User Conference | San Diego, CA Technical Workshops | ArcGIS API for Microsoft Silverlight/WPF—An Introduction Morten Nielsen Rex Hansen.

Mobile Holographic Surface Hub XboxIoT Desktop.
Create a C#/VB Universal Windows Project Develop and Debug Debug x86|x64|ARM.
Growing Reach with Universal Windows Apps Windows Developer Platform Improving User Engagement.
Friday, August 29, 2014 CSCI 351 – Mobile Applications Development.
Download Now !!! Visual Studio 2015 RC with Install latest Windows 10 OS ( ) insider.windows.com Install VS 2015 RC w/ Universal Windows.
Install latest Windows 10 OS ( ) insider.windows.com Install VS 2015 RC w/ Universal Windows SDK & Tools Build your.
XAML Performance Tools App Model.Net Native
Second Life on a Mobile Phone Windows Phone 7 (Mango Version) Nii Annan MSc Information Technology.
Windows Core OS Services JavaScript (Chakra) C C++ C# VB Metro style apps Communication & Data Application Model Devices & Printing WinRT APIs Graphics.
Managed Code Generics Language Integrated Query Dynamic + Language Parity C# VB 11.0 Windows Runtime + Asynchrony C# VB 7.0 C# VB.
QA Automation Solution. Solution Architecture Test Management tool CI Tool Automation framework Testing Project BDD Tool Text of test to Testing Project.
Extend your app to multiple device families and use new capabilities by targeting the UWP.
Introduction to Mobile Programming. Slide 2 Overview Fundamentally, it all works the same way You get the SDK for the device (Droid, Windows, Apple) You.
An Introduction to Silverlight Matt Harrington Developer Evangelist, Microsoft October 20, 2011.
Agenda Windows Phone History WP 7.0 Silverlight WP 7.5 Silverlight WP 8.0 Silverlight WP 8.1 Silverlight WP 8.1 WinRT.
Windows Phone 8 Tips & Tricks for Developers Sascha Corti, Microsoft Switzerland Technical Evangelist | techpreacher.corti.com.
Windows Camp #wincamp Windows Camp Игорь Сычев Premier Field Engineer, Microsoft Что нового/полезного принесла VS2015 для разработчиков приложений.
Easy for users to get & stay current Unified core and app platform Windows Phone 7.5 Windows Phone 8 Windows Phone 8.1 Windows 8 Xbox One Windows on Devices.
Windows Binary Phone Binary Windows universal Desktop PC 2 in 1 Mobile Tablet Phablet Phone Xbox IoT Band IoT headless Raspberry Pi Home.
Easy for users to get & stay current Unified core and app platform Windows Phone 7.5 Windows Phone 8 Windows Phone 8.1 Windows 8 Xbox One Windows on Devices.
Microsoft Virtual Academy North Shore.NET User Group Our Sponsors.
Joe Hummel, the compiler is at your service Chicago Code Camp 2014.
IAsyncResult ar = BeginSomething(…); // Do other work, checking ar.IsCompleted int result = EndSomething(ar);
Windows 10 Adaptive Interface
Importance of customer feedback Customer feedback.
Easy for users to get & stay current Unified core and app platform Windows Phone 7.5 Windows Phone 8 Windows Phone 8.1 Windows 8 Xbox One Windows on Devices.
Networking Proximity In-App Purchase Sensors Location File System Core app model Threading Windows Phone 8.
Innovation Any app, any platform Openness.NET Core ASP.NET 5.
Joe Hummel, the compiler is at your service SDC Meetup, Sept 2014.
Windows Phone 7 Mobile Code Camp The Why Why develop for Windows Phone 7 versus Droid or iPhone? It’s all relative to total app users. SDK and Environment.
Universal Windows Platform One codebase for Mobile, Desktop, IoT, Xbox, HoloLens, etc. Gergely
04 |Sharing Code Between Windows 8 and Windows Phone 8 in Visual Studio Ben Riga
Integral Users will interact with your app on a big screen with keyboard and mouse.
Solliance ( CTO Microsoft Regional Director Microsoft MVP Pluralsight author t e
Developing Universal Windows Apps in Visual Studio 2015.
~80 System Colors (and Brushes) ~80 System Colors (and Brushes) XAML Control Colors Map to ~80 system colors SystemBaseHighColor (SystemControlHighlightBaseHighBrush)
Joe Hummel, the compiler is at your service Chicago Coder Conference, June 2016.
Build Hybrid Mobile Apps with Ionic, Angular, & Cordova Brian
Mobile Application Solution
XAML and Blend Unni Ravindranathan | Senior Program Manager Lead (Blend) Jerry Nixon | Developer Evangelist (Colorado)
Windows Bridge for iOS Bring your iOS apps to Windows
Cross-platform app development
Unleash .NET 2015 in your apps
Building Windows 8 App.
Adaptive UI in UWP XAML Andy Wigley
5/15/2018 5:43 PM © Microsoft Corporation. All rights reserved. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, AS TO THE INFORMATION IN.
The Universal Windows Platform
Tooling Breakout Session
6/12/2018 3:52 PM © Microsoft Corporation. All rights reserved. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, AS TO THE INFORMATION IN.
Mobile Application Solution
Microsoft Build /13/2018 2:24 AM © 2016 Microsoft Corporation. All rights reserved. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY,
What’s New in Accessibility (for Developers and Users)
Microsoft Build /22/2018 3:05 AM © 2016 Microsoft Corporation. All rights reserved. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY,
Microsoft Build /8/2018 8:41 PM © 2016 Microsoft Corporation. All rights reserved. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY,
Windows 8 & Phone 8 App Development suresh M 11/14/2018
Microsoft Build /15/2018 6:28 AM © 2016 Microsoft Corporation. All rights reserved. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY,
Build /20/2018 © 2015 Microsoft Corporation. All rights reserved. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, AS TO THE INFORMATION.
.NET and .NET Core Foot View of .NET Pan Wuming 2017.
תכנות אסינכרוני, תקשורת ופיתוח אפליקציות ל-Windows 8
Windows 10 Preview Andy & Jerry
What's New in Visual Studio & Blend for XAML Developers
//Build 다시보기 나 발머 김영욱 부장 Microsoft Korea
1. Azure Data Explorer Azure Data Explorer enables rich data exploration over raw, structured, and semi-structured data delivering fast time to insight.
Visual Studio Code Walkthrough
Presentation transcript:

Mobile Holographic Surface Hub XboxIoT Desktop

MenuFlyout mf = new MenuFlyout(); mf.ShowAt(sender, e.GetPosition(sender)); MenuFlyout mf = new MenuFlyout(); mf.ShowAt(sender, e.GetPosition(sender));

Scale Factors

Glenn Versweyveld Deani Hansen

public class InputTypeTrigger : StateTriggerBase { private FrameworkElement _targetElement; private PointerDeviceType _lastPointerType, _triggerPointerType; public FrameworkElement TargetElement { get { return _targetElement; } set { _targetElement = value; _targetElement.AddHandler(FrameworkElement.PointerPressedEvent, new PointerEventHandler(_targetElement_PointerPressed), true); } public PointerDeviceType PointerType { get { return _triggerPointerType; } set { _triggerPointerType = value; } } private void _targetElement_PointerPressed(object sender, PointerRoutedEventArgs e) { _lastPointerType = e.Pointer.PointerDeviceType; SetActive(_triggerPointerType == _lastPointerType); }

xmlns:triggers="using:StravaMobile.UAP.Triggers"

Morten Nielsen Windows Developer MVP

//Get the diagonal size of the integrated display var dsc = new DisplaySizeHelper.DisplaySizeClass(); double _actualSizeInInches = dsc.GetDisplaySizeInInches(); //Guidance: If the diagonal size is <= 7" use the OneHanded optimized view if ( _actualSizeInInches >0 && _actualSizeInInches <= ONEHANDEDSIZE) { rootFrame.Navigate(typeof(MainPage_OneHanded), e.Arguments); } else { rootFrame.Navigate(typeof(MainPage), e.Arguments); }

SplitView vs. Pivot Commands at the top vs. bottom

Session TitleSpeakersSession Code What's New in XAML for Universal Windows AppsJoe Stegman629 XAML Performance: Techniques for Maximizing Universal Windows App Experiences Built with XAML Mark Alcazar Kiran Kumar 689 API Contracts (or How I Learned to Stop Checking OS Versions and Love Feature Detection) Brent Rector733 Optimizing Windows Apps for ContinuumLiz Threlkeld703 Navigation and Windowing in Windows AppsRoberth Karman779 Display Scaling: What it is and why it matters to youSteve Wright263 New XAML Tools in Visual Studio 2015Unni Ravindranathan 697 Developing Universal Windows Apps in Visual Studio 2015Navit Saxena650