SlideShare a Scribd company logo
NET
DotNet Cologne 2015 - Windows 10 AppDev, Teil3: Schönes für Entwickler - (Daniel Meixner)
XboxIoT
Adaptive Design
http://windows.Microsoft.comhttp://windows.Microsoft.com
http://windows.Microsoft.comhttp://windows.Microsoft.com
DEMO
Two Heads
(W8.1/WP8.1)
In-the-box
DotNet Cologne 2015 - Windows 10 AppDev, Teil3: Schönes für Entwickler - (Daniel Meixner)
DotNet Cologne 2015 - Windows 10 AppDev, Teil3: Schönes für Entwickler - (Daniel Meixner)
DotNet Cologne 2015 - Windows 10 AppDev, Teil3: Schönes für Entwickler - (Daniel Meixner)
DotNet Cologne 2015 - Windows 10 AppDev, Teil3: Schönes für Entwickler - (Daniel Meixner)
DotNet Cologne 2015 - Windows 10 AppDev, Teil3: Schönes für Entwickler - (Daniel Meixner)
DotNet Cologne 2015 - Windows 10 AppDev, Teil3: Schönes für Entwickler - (Daniel Meixner)
DotNet Cologne 2015 - Windows 10 AppDev, Teil3: Schönes für Entwickler - (Daniel Meixner)
Scale
Factors
100 125 150 200 250 300 400
DotNet Cologne 2015 - Windows 10 AppDev, Teil3: Schönes für Entwickler - (Daniel Meixner)
720epx
720epx
320epx
1024epx
Splitview
http://windows.Microsoft.comhttp://windows.Microsoft.com
SplitView
http://windows.Microsoft.comhttp://windows.Microsoft.com
Common behavior, custom design
Your Windows App
http://windows.Microsoft.comhttp://windows.Microsoft.com
Segoe MDL2 Assets
http://windows.Microsoft.comhttp://windows.Microsoft.com
SplitView.Content
<SplitView>
<SplitView.Pane>
<StackPanel>
<RadioButton />
<RadioButton />
</StackPanel>
</SplitView.Pane>
<SplitView.Content>
<Frame/>
</SplitView.Content>
</SplitView>
http://windows.Microsoft.comhttp://windows.Microsoft.com
SplitView.PaneDisplayMode
SplitView.IsPaneOpen
"True"
SplitView.IsPaneOpen
"False"
Inline
Overlay
Compact Inline
Compact Overlay
DEMO
Splitview
Relative Panel
http://windows.Microsoft.comhttp://windows.Microsoft.com
Relative Panel is a XAML layout control. It arranges
children by declaring relationships between them.
Introducing the Relative Panel
Windows XAML layout controls
Grid
Stack
Panel
Canvas
Scroll
Viewer
Border View Box
Wrap
Grid
Relative
Panel
http://windows.Microsoft.comhttp://windows.Microsoft.com
Align with sibling (right)
<RelativePanel>
<Rectangle x:Name="BlueRect"
Height="100" Width="100" Fill="Blue" />
<Rectangle x:Name="RedRect"
Height="100" Width="100" Fill="Red"
RelativePanel.RightOf="BlueRect"
RelativePanel.AlignVerticalCenterWith="BlueRect" />
</RelativePanel>
http://windows.Microsoft.comhttp://windows.Microsoft.com
Align with sibling (below, right)
<RelativePanel>
<Rectangle x:Name="BlueRect"
Height="100" Width="100" Fill="Blue" />
<Rectangle x:Name="RedRect"
Height="100" Width="100" Fill="Red"
RelativePanel.Below="BlueRect"
RelativePanel.AlignRightWith="BlueRect" />
</RelativePanel>
http://windows.Microsoft.comhttp://windows.Microsoft.com
Simplify the visual tree
<Grid>
<StackPanel>
<StackPanel>
<TextBlock />
<TextBlock />
</StackPanel>
<StackPanel>
<TextBlock />
<TextBlock />
</StackPanel>
</StackPanel>
</Grid>
<RelativePanel>
<TextBlock />
<TextBlock />
<TextBlock />
<TextBlock />
</RelativePanel >
DotNet Cologne 2015 - Windows 10 AppDev, Teil3: Schönes für Entwickler - (Daniel Meixner)
DEMO
Relative Panel
Visual State Trigger
<VisualStateGroup x:Name="WindowSizeStates">
<VisualState x:Name="WideState">
<VisualState.StateTriggers>
<AdaptiveTrigger MinWindowWidth="720" />
</VisualState.StateTriggers>
<!– - more - - !>
</VisualState>
</VisualStateGroup>
DotNet Cologne 2015 - Windows 10 AppDev, Teil3: Schönes für Entwickler - (Daniel Meixner)
<VisualState x:Name="Pressed">
<Storyboard>
<ObjectAnimationUsingKeyFrames Storyboard.TargetName="RootGrid"
Storyboard.TargetProperty="Background">
<DiscreteObjectKeyFrame KeyTime="0" Value="{ThemeResource
SystemControlBackgroundBaseMediumLowBrush}" />
</ObjectAnimationUsingKeyFrames>
<ObjectAnimationUsingKeyFrames Storyboard.TargetName="ContentPresenter"
Storyboard.TargetProperty="BorderBrush">
DiscreteObjectKeyFrame KeyTime="0" Value="{ThemeResource
SystemControlHighlightTransparentBrush}" />
</ObjectAnimationUsingKeyFrames>
<ObjectAnimationUsingKeyFrames Storyboard.TargetName="ContentPresenter"
Storyboard.TargetProperty="Foreground">
<DiscreteObjectKeyFrame KeyTime="0" Value="{ThemeResource
SystemControlHighlightBaseHighBrush}" />
</ObjectAnimationUsingKeyFrames>
</Storyboard>
</VisualState>
DEMODEMODEMO
Visual State Manager
Introducing Continuum
DotNet Cologne 2015 - Windows 10 AppDev, Teil3: Schönes für Entwickler - (Daniel Meixner)
DotNet Cologne 2015 - Windows 10 AppDev, Teil3: Schönes für Entwickler - (Daniel Meixner)
DotNet Cologne 2015 - Windows 10 AppDev, Teil3: Schönes für Entwickler - (Daniel Meixner)
Visual Studio Tools
DEMODEMODEMO
Visual Studio Tools
Maps
http://windows.Microsoft.comhttp://windows.Microsoft.com
New/different in UAP Maps
New control: Windows.UI.Xaml.Maps.MapControl
This is the Windows Phone 8.1 WinRT Map control
MapControl.Children -> XAML objects
Supports Data Binding
Custom tile source support
http://windows.Microsoft.comhttp://windows.Microsoft.com
http://windows.Microsoft.comhttp://windows.Microsoft.com
await MapRouteFinder
MapRouteFinder
await MapRouteFinder
Maps.MapRouteFinder
Get driving route
Get walking route
Get multi-point driving route
http://windows.Microsoft.comhttp://windows.Microsoft.com
MapLocationFinder
MapLocationFinder
Maps.MapLocationFinder
Latitude, longitude & geopoint
to postal address
Postal address & free text hint
to latitude, longitude
This is not a local/places search.
DEMODEMODEMO
Maps
Ink
http://windows.Microsoft.comhttp://windows.Microsoft.com
DEMODEMODEMO
Inking
http://windows.Microsoft.comhttp://windows.Microsoft.comhttp://windows.Microsoft.com
NET
DotNet Cologne 2015 - Windows 10 AppDev, Teil3: Schönes für Entwickler - (Daniel Meixner)

More Related Content

DOCX
sm bus controller
DOCX
windows 11 bugs errors issues problems
DOCX
update graphics driver windows 11
DOCX
Winver
PPT
Embedding
DOCX
no output input devices found
PDF
20150912 Adaptive UI 권영철
sm bus controller
windows 11 bugs errors issues problems
update graphics driver windows 11
Winver
Embedding
no output input devices found
20150912 Adaptive UI 권영철

Viewers also liked (20)

PDF
DotNet Cologne 2015 - Windows 10 AppDev, Teil2: Coole APIs - (Daniel Meixner)
PDF
DotNet Cologne 2015 - Windows 10 AppDev, Teil1: App Developer Basics- (Daniel...
PPTX
Busker
PDF
Giao trinh adobe after effects
PPT
Shakespeare
PDF
Visual Studio Produktivität (Daniel Meixner)
PDF
Program Psikogram
PDF
Software Aplikasi Psikotes
DOCX
QM resume 2015
PDF
Telugu bible 12__2_kings
PDF
Telugu bible 16__nehemiah
PDF
Telugu bible 13__1_chronicles
DOCX
Grupo 1 de word 2013
PDF
Telugu bible 11__1_kings
PDF
Telugu bible 17__esther
PDF
Telugu bible 10__2_samuel
PDF
Telugu bible 14__2_chronicles
PDF
Tc 2016 (25)
PDF
Telugu bible 15__ezra
PPTX
Disney swot
DotNet Cologne 2015 - Windows 10 AppDev, Teil2: Coole APIs - (Daniel Meixner)
DotNet Cologne 2015 - Windows 10 AppDev, Teil1: App Developer Basics- (Daniel...
Busker
Giao trinh adobe after effects
Shakespeare
Visual Studio Produktivität (Daniel Meixner)
Program Psikogram
Software Aplikasi Psikotes
QM resume 2015
Telugu bible 12__2_kings
Telugu bible 16__nehemiah
Telugu bible 13__1_chronicles
Grupo 1 de word 2013
Telugu bible 11__1_kings
Telugu bible 17__esther
Telugu bible 10__2_samuel
Telugu bible 14__2_chronicles
Tc 2016 (25)
Telugu bible 15__ezra
Disney swot
Ad

Similar to DotNet Cologne 2015 - Windows 10 AppDev, Teil3: Schönes für Entwickler - (Daniel Meixner) (20)

PDF
[Td 2015]조막만한 화면에서 대박만한 화면까지. 고생 끝 적응(adaptive ui) 시작(권영철)
PPTX
Developing windows 10 universal apps
PDF
조막만한 화면부터 대박만한 화면까지 고생 끝 적응(Adaptive UI) 시작! - TechDays Korea 2015
PPT
Vs2005p
PPTX
Installating and Configuring Java, MySQL and BIRT.
PPT
Christchurch Embedded .NET User Group - Introduction to Microsoft Embedded pl...
PPT
Visual Studio 2008 & .Net 3.5
PPT
WIndows 7 Migration tools for Nashville AITP
PDF
20150728 100분만에 배우는 windows 10 앱 개발
PPT
Compact Framework Development For The Desktop Developer
PPT
Building Data Centric Apps in WPF
PPTX
Welcome to Blazor
PPTX
Automatic deployment on .NET web stack (Minsk .NET meetup 12.02.14)
PPTX
Ideal Deployment In .NET World
PPT
What's New for Presentation in Visual Studio 2008 SP1
PPTX
Advanced Debugging with Visual Studio 2013 Preview
PPT
Silverlight 2 with Visual Studio 2008 and Expression Blend
PPTX
Internet Explorer 8 Developer Overview
PPTX
Deeper into Windows 10 Development
PPT
Object Studio 8.2: News Update
[Td 2015]조막만한 화면에서 대박만한 화면까지. 고생 끝 적응(adaptive ui) 시작(권영철)
Developing windows 10 universal apps
조막만한 화면부터 대박만한 화면까지 고생 끝 적응(Adaptive UI) 시작! - TechDays Korea 2015
Vs2005p
Installating and Configuring Java, MySQL and BIRT.
Christchurch Embedded .NET User Group - Introduction to Microsoft Embedded pl...
Visual Studio 2008 & .Net 3.5
WIndows 7 Migration tools for Nashville AITP
20150728 100분만에 배우는 windows 10 앱 개발
Compact Framework Development For The Desktop Developer
Building Data Centric Apps in WPF
Welcome to Blazor
Automatic deployment on .NET web stack (Minsk .NET meetup 12.02.14)
Ideal Deployment In .NET World
What's New for Presentation in Visual Studio 2008 SP1
Advanced Debugging with Visual Studio 2013 Preview
Silverlight 2 with Visual Studio 2008 and Expression Blend
Internet Explorer 8 Developer Overview
Deeper into Windows 10 Development
Object Studio 8.2: News Update
Ad

Recently uploaded (20)

PDF
Digital Strategies for Manufacturing Companies
PDF
top salesforce developer skills in 2025.pdf
PDF
Internet Downloader Manager (IDM) Crack 6.42 Build 41
PDF
PTS Company Brochure 2025 (1).pdf.......
PDF
Understanding Forklifts - TECH EHS Solution
PPTX
L1 - Introduction to python Backend.pptx
PDF
Design an Analysis of Algorithms II-SECS-1021-03
PDF
Internet Downloader Manager (IDM) Crack 6.42 Build 42 Updates Latest 2025
PDF
How Creative Agencies Leverage Project Management Software.pdf
PDF
Design an Analysis of Algorithms I-SECS-1021-03
PPTX
Odoo POS Development Services by CandidRoot Solutions
PPTX
VVF-Customer-Presentation2025-Ver1.9.pptx
PDF
Adobe Illustrator 28.6 Crack My Vision of Vector Design
PDF
Adobe Premiere Pro 2025 (v24.5.0.057) Crack free
PPTX
Operating system designcfffgfgggggggvggggggggg
PDF
wealthsignaloriginal-com-DS-text-... (1).pdf
PDF
Addressing The Cult of Project Management Tools-Why Disconnected Work is Hold...
PDF
Which alternative to Crystal Reports is best for small or large businesses.pdf
PDF
Claude Code: Everyone is a 10x Developer - A Comprehensive AI-Powered CLI Tool
PPTX
ai tools demonstartion for schools and inter college
Digital Strategies for Manufacturing Companies
top salesforce developer skills in 2025.pdf
Internet Downloader Manager (IDM) Crack 6.42 Build 41
PTS Company Brochure 2025 (1).pdf.......
Understanding Forklifts - TECH EHS Solution
L1 - Introduction to python Backend.pptx
Design an Analysis of Algorithms II-SECS-1021-03
Internet Downloader Manager (IDM) Crack 6.42 Build 42 Updates Latest 2025
How Creative Agencies Leverage Project Management Software.pdf
Design an Analysis of Algorithms I-SECS-1021-03
Odoo POS Development Services by CandidRoot Solutions
VVF-Customer-Presentation2025-Ver1.9.pptx
Adobe Illustrator 28.6 Crack My Vision of Vector Design
Adobe Premiere Pro 2025 (v24.5.0.057) Crack free
Operating system designcfffgfgggggggvggggggggg
wealthsignaloriginal-com-DS-text-... (1).pdf
Addressing The Cult of Project Management Tools-Why Disconnected Work is Hold...
Which alternative to Crystal Reports is best for small or large businesses.pdf
Claude Code: Everyone is a 10x Developer - A Comprehensive AI-Powered CLI Tool
ai tools demonstartion for schools and inter college

DotNet Cologne 2015 - Windows 10 AppDev, Teil3: Schönes für Entwickler - (Daniel Meixner)