building windows 8 store apps | gtc...

14

Upload: others

Post on 19-Jun-2020

1 views

Category:

Documents


0 download

TRANSCRIPT

Page 1: Building Windows 8 Store Apps | GTC 2013on-demand.gputechconf.com/gtc/2013/presentations/S3565... · 2013-03-19 · Title: Building Windows 8 Store Apps | GTC 2013 Author: Vladimir
Page 2: Building Windows 8 Store Apps | GTC 2013on-demand.gputechconf.com/gtc/2013/presentations/S3565... · 2013-03-19 · Title: Building Windows 8 Store Apps | GTC 2013 Author: Vladimir

Battery

Page 3: Building Windows 8 Store Apps | GTC 2013on-demand.gputechconf.com/gtc/2013/presentations/S3565... · 2013-03-19 · Title: Building Windows 8 Store Apps | GTC 2013 Author: Vladimir
Page 4: Building Windows 8 Store Apps | GTC 2013on-demand.gputechconf.com/gtc/2013/presentations/S3565... · 2013-03-19 · Title: Building Windows 8 Store Apps | GTC 2013 Author: Vladimir

demo

Page 5: Building Windows 8 Store Apps | GTC 2013on-demand.gputechconf.com/gtc/2013/presentations/S3565... · 2013-03-19 · Title: Building Windows 8 Store Apps | GTC 2013 Author: Vladimir
Page 6: Building Windows 8 Store Apps | GTC 2013on-demand.gputechconf.com/gtc/2013/presentations/S3565... · 2013-03-19 · Title: Building Windows 8 Store Apps | GTC 2013 Author: Vladimir
Page 7: Building Windows 8 Store Apps | GTC 2013on-demand.gputechconf.com/gtc/2013/presentations/S3565... · 2013-03-19 · Title: Building Windows 8 Store Apps | GTC 2013 Author: Vladimir

Apps do not get notified when

they are getting terminated

Page 8: Building Windows 8 Store Apps | GTC 2013on-demand.gputechconf.com/gtc/2013/presentations/S3565... · 2013-03-19 · Title: Building Windows 8 Store Apps | GTC 2013 Author: Vladimir

// Register for the Suspending event and call OnSuspending when received

// Handle the suspending event and save the current user session using WinJS sessionState

// We are getting suspended

}

// Register for the Resuming event and call OnResuming when received

{

// We are getting resumed, in general do nothing

}

Page 9: Building Windows 8 Store Apps | GTC 2013on-demand.gputechconf.com/gtc/2013/presentations/S3565... · 2013-03-19 · Title: Building Windows 8 Store Apps | GTC 2013 Author: Vladimir
Page 10: Building Windows 8 Store Apps | GTC 2013on-demand.gputechconf.com/gtc/2013/presentations/S3565... · 2013-03-19 · Title: Building Windows 8 Store Apps | GTC 2013 Author: Vladimir

Scenario You should….

Page 11: Building Windows 8 Store Apps | GTC 2013on-demand.gputechconf.com/gtc/2013/presentations/S3565... · 2013-03-19 · Title: Building Windows 8 Store Apps | GTC 2013 Author: Vladimir

3/18/20131

2

I want to work in

background!

Page 12: Building Windows 8 Store Apps | GTC 2013on-demand.gputechconf.com/gtc/2013/presentations/S3565... · 2013-03-19 · Title: Building Windows 8 Store Apps | GTC 2013 Author: Vladimir
Page 13: Building Windows 8 Store Apps | GTC 2013on-demand.gputechconf.com/gtc/2013/presentations/S3565... · 2013-03-19 · Title: Building Windows 8 Store Apps | GTC 2013 Author: Vladimir
Page 14: Building Windows 8 Store Apps | GTC 2013on-demand.gputechconf.com/gtc/2013/presentations/S3565... · 2013-03-19 · Title: Building Windows 8 Store Apps | GTC 2013 Author: Vladimir