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