WPF apps can now run well in a Multi Monitor Setup with different DPIs, enabled via manifest setting true/PM New events and.

Slides:



Advertisements
Similar presentations
Ravi Sankar Technology Evangelist | Microsoft
Advertisements

Creating Windows Store Apps. 1. Overview of Windows Store applications 2. Worked example 3. Adding controls and event handlers Contents 2.
 2007 Dr. Natheer Khasawneh. Chapter 13. Graphical User Interface Concepts: Part 1.
WPF Layer Cake C#, C++/CLI and C
Create a C#/VB Universal Windows Project Develop and Debug Debug x86|x64|ARM.
1 Web Services Visual C# 2008 Step by Step Chapter 30.
Enabling Screen Sharing in the WizIQ Virtual Classroom accessed through Browser.
Microsoft ® Official Course Monitoring and Troubleshooting Custom SharePoint Solutions SharePoint Practice Microsoft SharePoint 2013.
Connected Experiences
Virtual techdays INDIA │ Nov 2010 Developing Office Biz Application using WPF on Windows 7 Sarang Datye │ Sr. Consultant, Microsoft Sridhar Poduri.
Microsoft System Center Operations Manager 2012: Overview Yaron Dan Adar Consulting Adar Consulting IT is our.
C# Events and WPF #W5. Horizontal Prototype WPF Designed for rapid user interface design Used for many devices: Windows Phone, Tablets, PCs,
Dr Dat Tran - Week 1 Lecture Notes 1 Windows Forms Programming Graphical User Interfaces PG (7110) University of Canberra School of Information Sciences.
G RAPHICAL U SER I NTERFACE C ONCEPTS : P ART 1 1 Outline Introduction Windows Forms Event-Handling Model - Basic Event Handling.
The 1:1 meeting scheduler that runs itself The 1:1 meeting scheduler that runs itself.
private void Goto2(object sender, Windows.UI.Xaml.RoutedEventArgs e) { var app = App.Current as Common.BootStrapper; var nav = app.NavigationService;
® IGEL Technology Many functions. One device. 1 MultiScreen Agent, January 2008 IGEL MultiScreen Agent Unveil the full potential of multiscreen Thin Clients.
Module 12 Attached Properties and Behaviors in WPF.
FIRST FLOOR SOFTWARE Experts in XAML. Visual Studio Industry Partner FIRST FLOOR SOFTWARE NEXT STEPS Contact us at: First.
Visual C# 2012 How to Program © by Pearson Education, Inc. All Rights Reserved.
Introduction to Visual Studio & GUI Programming Prepared by: Ahmad Ramin Rahimee Assistant Professor ICTI.
More exercises with C# Fateme Rajabi #W6. Add an image to your project Right click on your project name in solution explorer Add -> Existing item -> browse.
1 Getting Started with C++. 2 Objective You will be able to create, compile, and run a very simple C++ program on Windows, using Visual Studio 2008.
VITALE, CATURANO & COMPANY LTD Microsoft SharePoint Web Part Development Overview VITALE, CATURANO & COMPANY LTD SharePoint Developer Series – Web Part.
Extend the Operations Dashboard with Custom Widgets (and more)
Jeremy Thake Technical Product Building cross-platform apps that integrate with O365 API’s using Xamarin in Visual Studio.
Module 14 Application Settings, State, and Life Cycle.
Windows Azure for IT Pros Kurt CLAEYS (TSP Windows Azure, Microsoft EMEA)
Extending the Operations Dashboard
Importance of customer feedback Customer feedback.
Eric Carter Development Manager Microsoft Corporation OFC324.
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.
Build on one person’s machine Code and debug for weeks (months?) Manually deploy parts via file copy Run manual tests against deployed app.
Identify Windows Application Types Windows Development Fundamentals LESSON 1.1.
Debug in Visual Studio Windows Development Fundamentals LESSON 2.5A.
Module 1 Introducing C# and the.NET Framework. Module Overview Introduction to the.NET Framework 4 Creating Projects Within Visual Studio 2010 Writing.
Installation of Visual Studio Android emulator and Android Studio
User Interface Programming in C#: Basics and Events Chris North CS 3724: HCI.
private void page2Button_Click(object sender, RoutedEventArgs e) { NavigationService.Navigate(new Uri("/PageTwo.xaml", UriKind.RelativeOrAbsolute));
REC [ ] How to implement CAMERA RECORDING for USB WEBCAM or IP CAMERA in C#.NET SOURCE CODE: ! Welcome to this presentation that explains.
Level 300 System Center App Controller 2012 Marin Franković, Visoko učilište Algebra.
Windows 10 Anniversary Update coming to PCs, tablets, phones, Xbox One, Microsoft HoloLens and IOT.
1 E-Site - FTP Services Setup / install guide. 2 About FTP services can run on any desired port(s) Runs as a windows service Works for all sites installed.
Improving Your Application with IntelliTrace #ITDevConnections.
Cosc 4735 Nougat API 24+ additions.
Whats New Xamarin and VC++ with VS 2017
Dive Into® Visual Basic 2010 Express
Getting Started with the Windows SDK for Google Analytics
5/15/2018 5:43 PM © Microsoft Corporation. All rights reserved. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, AS TO THE INFORMATION IN.
Windows Developer Day Fall Creators Update Chris Cortes
Windows Developer Day Fall Creators Update October 10, 2017.
Visual programming Chapter 1: Introduction
9/11/ :55 PM © Microsoft Corporation. All rights reserved. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, AS TO THE INFORMATION IN.
Microsoft Build /13/2018 2:24 AM © 2016 Microsoft Corporation. All rights reserved. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY,
Desktop App Converter (Project Centennial)
Customizing your device experience with assigned access
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
תכנות אסינכרוני, תקשורת ופיתוח אפליקציות ל-Windows 8
Remote Access Services RAS Routing and Remote Access Services RRAS Remote Desktop Terminal Services Virtual Private Networking VPN.
Docker Workflows with Visual Studio
This is a typical Windows user desktop
Bringing desktop apps to the UWP using Desktop App Converter
6. WinForms 2003 C# GUI - Basics.
Windows Service Applications
5/3/2019 9:33 PM © Microsoft Corporation. All rights reserved. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, AS TO THE INFORMATION IN THIS.
Day 2, Session 2 Connecting System Center to the Public Cloud
Michael Palermo Jeremy Foster
Continuous Services and Connected Devices
DevOps for Desktop Apps
Presentation transcript:

WPF apps can now run well in a Multi Monitor Setup with different DPIs, enabled via manifest setting true/PM New events and virtual functions added on each Visual to notify when DPI changes public partial class MainWindow : Window { public MainWindow() { InitializeComponent(); this.DpiChanged += MainWindow_DpiChanged; } private void MainWindow_DpiChanged(object sender, DpiChangedEventArgs e) { } protected override void OnDpiChanged(DpiScale oldDpi, DpiScale newDpi) { }

Session CodeTitle B809App Model Overview B829Project Centennial: Bringing existing desktop applications to UWP B891.NET Overview B859Introducing Visual Studio vNext (roadmap) B879What’s new in Visual Studio for Universal Windows app development B806Advanced Debugging using Visual Studio 2015 B819Become a Visual Studio 2015 Power User