Download presentation
Presentation is loading. Please wait.
Published byAmberlynn Maxwell Modified over 9 years ago
4
Mobile Holographic Surface Hub XboxIoT Desktop
10
MenuFlyout mf = new MenuFlyout(); mf.ShowAt(sender, e.GetPosition(sender)); MenuFlyout mf = new MenuFlyout(); mf.ShowAt(sender, e.GetPosition(sender));
12
Scale Factors 100125150200250300400
14
Glenn Versweyveld (@depechie) Deani Hansen (@deanihansen) http://bit.ly/1P2jvAp
20
…
29
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); }
30
xmlns:triggers="using:StravaMobile.UAP.Triggers"
32
http://github.com/dotMorten/WindowsStateTriggers Morten Nielsen Windows Developer MVP (@dotMorten)
35
//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); }
36
SplitView vs. Pivot Commands at the top vs. bottom
38
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
Similar presentations
© 2025 SlidePlayer.com. Inc.
All rights reserved.