-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Expand file tree
/
Copy pathtoc.yml
More file actions
1309 lines (1309 loc) · 68.4 KB
/
toc.yml
File metadata and controls
1309 lines (1309 loc) · 68.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
- name: Overview
href: index.md
- name: App types
items:
- name: Education apps
href: ../apps-for-education/index.md
items:
- name: Take a Test API
href: ../apps-for-education/take-a-test-api.md
- name: Enterprise apps
href: ../enterprise/index.md
items:
- name: Windows Information Protection (WIP)
href: ../enterprise/wip-hub.md
items:
- name: WIP developer guide
href: ../enterprise/wip-dev-guide.md
- name: Enterprise shared storage
href: ../enterprise/enterprise-shared-storage.md
- name: "Tutorial: Create a customer database application"
href: ../enterprise/customer-database-tutorial.md
items:
- name: Customer database tutorial app structure
href: ../enterprise/customer-database-app-structure.md
- name: Progressive Web Apps
href: /microsoft-edge/progressive-web-apps
- name: Audio, video, and camera
href: ../audio-video-camera/index.md
items:
- name: Camera
href: ../audio-video-camera/camera.md
items:
- name: Capture photos and video with Windows built-in camera UI
href: ../audio-video-camera/capture-photos-and-video-with-cameracaptureui.md
- name: Display the camera preview
href: ../audio-video-camera/simple-camera-preview-access.md
- name: Camera UI features for mobile devices
href: ../audio-video-camera/camera-ui-features-for-mobile-devices.md
- name: Handle device and screen orientation with MediaCapture
href: ../audio-video-camera/handle-device-orientation-with-mediacapture.md
- name: Use OpenCV with MediaFrameReader
href: ../audio-video-camera/use-opencv-with-mediaframereader.md
- name: Get a preview frame
href: ../audio-video-camera/get-a-preview-frame.md
- name: Media playback
href: ../audio-video-camera/media-playback.md
items:
- name: Play audio and video with MediaPlayer
href: ../audio-video-camera/play-audio-and-video-with-mediaplayer.md
- name: Media items, playlists, and tracks
href: ../audio-video-camera/media-playback-with-mediasource.md
- name: Integrate with the System Media Transport Controls
href: ../audio-video-camera/integrate-with-systemmediatransportcontrols.md
items:
- name: Manual control of the System Media Transport Controls
href: ../audio-video-camera/system-media-transport-controls.md
- name: System-supported timed metadata cues
href: ../audio-video-camera/system-supported-metadata-cues.md
- name: Create, schedule, and manage media breaks
href: ../audio-video-camera/create-schedule-and-manage-media-breaks.md
- name: Play media in the background
href: ../audio-video-camera/background-audio.md
items:
- name: Legacy background media playback
href: ../audio-video-camera/legacy-background-media-playback.md
- name: Adaptive streaming
href: ../audio-video-camera/adaptive-streaming.md
items:
- name: HLS tag support
href: ../audio-video-camera/hls-tag-support.md
- name: DASH profile support
href: ../audio-video-camera/dash-profile-support.md
- name: Media casting
href: ../audio-video-camera/media-casting.md
- name: Enable audio playback from remote Bluetooth-connected devices
href: ../audio-video-camera/enable-remote-audio-playback.md
- name: PlayReady DRM
href: ../audio-video-camera/playready-client-sdk.md
items:
- name: Hardware DRM
href: ../audio-video-camera/hardware-drm.md
- name: Adaptive streaming with PlayReady
href: ../audio-video-camera/adaptive-streaming-with-playready.md
- name: PlayReady Encrypted Media Extension
href: ../audio-video-camera/playready-encrypted-media-extension.md
- name: Detect faces in images or videos
href: ../audio-video-camera/detect-and-track-faces-in-an-image.md
- name: Custom video effects
href: ../audio-video-camera/custom-video-effects.md
- name: Custom audio effects
href: ../audio-video-camera/custom-audio-effects.md
- name: Media compositions and editing
href: ../audio-video-camera/media-compositions-and-editing.md
- name: Audio device information properties
href: ../audio-video-camera/audio-device-information-properties.md
- name: Detect and respond to audio state changes
href: ../audio-video-camera/detect-and-respond-to-audio-state-changes.md
- name: Create, edit, and save bitmap images
href: ../audio-video-camera/imaging.md
items:
- name: Process bitmaps with OpenCV
href: ../audio-video-camera/process-software-bitmaps-with-opencv.md
- name: Process bitmaps with the LowLightFusion API
href: ../audio-video-camera/process-bitmaps-low-light-fusion.md
- name: BitmapEncoder options reference
href: ../audio-video-camera/bitmapencoder-options-reference.md
- name: Image metadata
href: ../audio-video-camera/image-metadata.md
- name: Transcode media files
href: ../audio-video-camera/transcode-media-files.md
- name: Process media files in the background
href: ../audio-video-camera/process-media-files-in-the-background.md
- name: Audio graphs
href: ../audio-video-camera/audio-graphs.md
- name: MIDI
href: ../audio-video-camera/midi.md
- name: Import media from a device
href: ../audio-video-camera/import-media-from-a-device.md
- name: Camera-independent Flashlight
href: ../audio-video-camera/camera-independent-flashlight.md
- name: Supported codecs
href: ../audio-video-camera/supported-codecs.md
- name: Query for installed codecs
href: ../audio-video-camera/codec-query.md
- name: Supported media type strings
href: ../audio-video-camera/supported-play-type-strings.md
- name: Screen capture
href: ../audio-video-camera/screen-capture.md
- name: Screen capture to video
href: ../audio-video-camera/screen-capture-video.md
- name: HEVC playback for UWP apps on Xbox
href: ../audio-video-camera/hevc-xbox.md
- name: Communication
items:
- name: App-to-app communication
href: ../app-to-app/index.md
items:
- name: Share data
href: ../app-to-app/share-data.md
- name: Receive data
href: ../app-to-app/receive-data.md
- name: Copy and paste
href: ../app-to-app/copy-and-paste.md
- name: Interprocess communication (IPC)
href: ../communication/interprocess-communication.md
- name: Networking and web services
href: ../networking/index.md
items:
- name: Networking basics
href: ../networking/networking-basics.md
- name: Which networking technology?
href: ../networking/which-networking-technology.md
- name: Network communications in the background
href: ../networking/network-communications-in-the-background.md
- name: Sockets
href: ../networking/sockets.md
- name: WebSockets
href: ../networking/websockets.md
- name: HttpClient
href: ../networking/httpclient.md
- name: RSS/Atom feeds
href: ../networking/web-feeds.md
- name: Background transfers
href: ../networking/background-transfers.md
- name: Sharing named objects
href: ../communication/sharing-named-objects.md
- name: Data and files
items:
- name: App resources
href: ../app-resources/index.md
items:
- name: Resource Management System
href: ../app-resources/resource-management-system.md
- name: How the RMS matches and chooses resources
href: ../app-resources/how-rms-matches-and-chooses-resources.md
- name: How the RMS matches language tags
href: ../app-resources/how-rms-matches-lang-tags.md
- name: Tailor your resources for language, scale, contrast, others
href: ../app-resources/tailor-resources-lang-scale-contrast.md
- name: Localize strings in your UI and app package manifest
href: ../app-resources/localize-strings-ui-manifest.md
- name: Load images, assets tailored for scale, theme, contrast, others
href: ../app-resources/images-tailored-for-scale-theme-contrast.md
- name: URI schemes
href: ../app-resources/uri-schemes.md
- name: Specify the default resources that your app uses
href: ../app-resources/specify-default-resources-installed.md
- name: Build resources into your app package, instead of into a resource pack
href: ../app-resources/build-resources-into-app-package.md
- name: PRI APIs and custom build systems
href: ../app-resources/pri-apis-custom-build-systems.md
items:
- name: Scenario 1 (PRI APIs)
href: ../app-resources/pri-apis-scenario-1.md
- name: Compile resources manually with MakePri.exe
href: ../app-resources/compile-resources-manually-with-makepri.md
- name: MakePri.exe command-line options
href: ../app-resources/makepri-exe-command-options.md
- name: MakePri.exe configuration file
href: ../app-resources/makepri-exe-configuration.md
- name: MakePri.exe format-specific indexers
href: ../app-resources/makepri-exe-format-specific-indexers.md
- name: Migrate legacy resources
href: ../app-resources/using-mrt-for-converted-desktop-apps-and-games.md
- name: Data access
href: ../data-access/index.md
items:
- name: Use a SQLite database
href: ../data-access/sqlite-databases.md
- name: Use a SQL Server database
href: ../data-access/sql-server-databases.md
- name: Data binding
href: ../data-binding/index.md
items:
- name: Data binding overview
href: ../data-binding/data-binding-quickstart.md
- name: Data binding in depth
href: ../data-binding/data-binding-in-depth.md
- name: Functions in x:Bind
href: ../data-binding/function-bindings.md
- name: "Tutorial: Create data bindings"
href: ../data-binding/xaml-basics-data-binding.md
- name: Sample data on the design surface, and for prototyping
href: ../data-binding/displaying-data-in-the-designer.md
- name: Bind hierarchical data and create a master/details view
href: ../data-binding/how-to-bind-to-hierarchical-data-and-create-a-master-details-view.md
- name: Data binding and MVVM
href: ../data-binding/data-binding-and-mvvm.md
- name: Files, folders, and libraries
href: ../files/index.md
items:
- name: Enumerate and query files and folders
href: ../files/quickstart-listing-files-and-folders.md
- name: Create, write, and read a file
href: ../files/quickstart-reading-and-writing-files.md
- name: Best practices for writing to files
href: ../files/best-practices-for-writing-to-files.md
- name: Get file properties
href: ../files/quickstart-getting-file-properties.md
- name: Open files and folders with a picker
href: ../files/quickstart-using-file-and-folder-pickers.md
- name: Save a file with a picker
href: ../files/quickstart-save-a-file-with-a-picker.md
- name: Accessing HomeGroup content
href: ../files/quickstart-accessing-homegroup-content.md
- name: Determining availability of Microsoft OneDrive files
href: ../files/quickstart-determining-availability-of-microsoft-onedrive-files.md
- name: Files and folders in the Music, Pictures, and Videos libraries
href: ../files/quickstart-managing-folders-in-the-music-pictures-and-videos-libraries.md
- name: Thumbnail images
href: ../files/thumbnails.md
- name: Track recently used files and folders
href: ../files/how-to-track-recently-used-files-and-folders.md
- name: Track file system changes in the background
href: ../files/change-tracking-filesystem.md
- name: Access the SD card
href: ../files/access-the-sd-card.md
- name: File access permissions
href: ../files/file-access-permissions.md
- name: Fast access to file properties in UWP
href: ../files/fast-file-properties.md
- name: Machine Learning
href: /windows/ai/
- name: Deployment
items:
- name: Choose a UWP version
href: ../updates-and-versions/choose-a-uwp-version.md
- name: Debugging, testing, and performance
href: ../debug-test-perf/index.md
items:
- name: Deploying and debugging UWP apps
href: ../debug-test-perf/deploying-and-debugging-uwp-apps.md
- name: Testing and debugging tools for PLM
href: ../debug-test-perf/testing-debugging-plm.md
- name: Test with the Microsoft Emulator for Windows
href: ../debug-test-perf/test-with-the-emulator.md
- name: Test Surface Hub apps using Visual Studio
href: ../debug-test-perf/test-surface-hub-apps-using-visual-studio.md
- name: Deploy an app through loose file registration
href: ../debug-test-perf/loose-file-registration.md
- name: Beta testing
href: ../debug-test-perf/beta-testing.md
- name: Windows Device Portal
href: ../debug-test-perf/device-portal.md
items:
- name: Windows Device Portal for Desktop
href: ../debug-test-perf/device-portal-desktop.md
- name: Windows Device Portal for Mobile
href: ../debug-test-perf/device-portal-mobile.md
- name: Windows Device Portal core REST APIs
href: ../debug-test-perf/device-portal-api-core.md
- name: Write a custom plugin for Windows Device Portal
href: ../debug-test-perf/device-portal-plugin.md
- name: Provision Windows Device Portal with a custom SSL certificate
href: ../debug-test-perf/device-portal-ssl.md
- name: Windows App Certification Kit
href: ../debug-test-perf/windows-app-certification-kit.md
items:
- name: Windows App Certification Kit tests
href: ../debug-test-perf/windows-app-certification-kit-tests.md
items:
- name: Windows Desktop Bridge app tests
href: ../debug-test-perf/windows-desktop-bridge-app-tests.md
- name: Performance
href: ../debug-test-perf/performance-and-xaml-ui.md
items:
- name: Planning for performance
href: ../debug-test-perf/planning-and-measuring-performance.md
- name: Optimize background activity
href: ../debug-test-perf/optimize-background-activity.md
- name: ListView and GridView UI optimization
href: ../debug-test-perf/optimize-gridview-and-listview.md
- name: ListView and GridView data virtualization
href: ../debug-test-perf/listview-and-gridview-data-optimization.md
- name: Improve garbage collection performance
href: ../debug-test-perf/improve-garbage-collection-performance.md
- name: Keep the UI thread responsive
href: ../debug-test-perf/keep-the-ui-thread-responsive.md
- name: Optimize your XAML markup
href: ../debug-test-perf/optimize-xaml-loading.md
- name: Optimize your XAML layout
href: ../debug-test-perf/optimize-your-xaml-layout.md
- name: MVVM and language performance tips
href: ../debug-test-perf/mvvm-performance-tips.md
- name: Best practices for your app's startup performance
href: ../debug-test-perf/best-practices-for-your-app-s-startup-performance.md
- name: Optimize animations, media, and images
href: ../debug-test-perf/optimize-animations-and-media.md
- name: Optimize suspend/resume
href: ../debug-test-perf/optimize-suspend-resume.md
- name: Optimize file access
href: ../debug-test-perf/optimize-file-access.md
- name: Windows Runtime components and optimizing interop
href: ../debug-test-perf/windows-runtime-components-and-optimizing-interop.md
- name: Tools for profiling and performance
href: ../debug-test-perf/tools-for-profiling-and-performance.md
- name: Version adaptive apps
href: ../debug-test-perf/version-adaptive-apps.md
items:
- name: Version adaptive code
href: ../debug-test-perf/version-adaptive-code.md
- name: Conditional XAML
href: ../debug-test-perf/conditional-xaml.md
- name: Monetization, engagement, and Store services
href: ../monetize/index.md
items:
- name: In-app purchases and trials
href: ../monetize/in-app-purchases-and-trials.md
items:
- name: Get product info for apps and add-ons
href: ../monetize/get-product-info-for-apps-and-add-ons.md
- name: Get license info for apps and add-ons
href: ../monetize/get-license-info-for-apps-and-add-ons.md
- name: Enable in-app purchases of apps and add-ons
href: ../monetize/enable-in-app-purchases-of-apps-and-add-ons.md
- name: Enable consumable add-on purchases
href: ../monetize/enable-consumable-add-on-purchases.md
- name: Enable subscription add-ons for your app
href: ../monetize/enable-subscription-add-ons-for-your-app.md
- name: Implement a trial version of your app
href: ../monetize/implement-a-trial-version-of-your-app.md
- name: Data schemas for Store products
href: ../monetize/data-schemas-for-store-products.md
- name: Error codes for Store operations
href: ../monetize/error-codes-for-store-operations.md
- name: Using the Windows.ApplicationModel.Store namespace
href: ../monetize/in-app-purchases-and-trials-using-the-windows-applicationmodel-store-namespace.md
items:
- name: Exclude or limit features in a trial version
href: ../monetize/exclude-or-limit-features-in-a-trial-version-of-your-app.md
- name: Enable in-app product purchases
href: ../monetize/enable-in-app-product-purchases.md
- name: Enable consumable in-app product purchases
href: ../monetize/enable-consumable-in-app-product-purchases.md
- name: Manage a large catalog of in-app products
href: ../monetize/manage-a-large-catalog-of-in-app-products.md
- name: Use receipts to verify product purchases
href: ../monetize/use-receipts-to-verify-product-purchases.md
- name: Engage customers with the Microsoft Store Services SDK
href: ../monetize/microsoft-store-services-sdk.md
items:
- name: Run app experiments with A/B testing
href: ../monetize/run-app-experiments-with-a-b-testing.md
items:
- name: Create an experiment project in Partner Center
href: ../monetize/create-a-project-and-define-remote-variables-in-the-dev-center-dashboard.md
- name: Code your app for experimentation
href: ../monetize/code-your-experiment-in-your-app.md
- name: Define your experiment in Partner Center
href: ../monetize/define-your-experiment-in-the-dev-center-dashboard.md
- name: Manage your experiment in Partner Center
href: ../monetize/manage-your-experiment.md
- name: Create and run your first experiment
href: ../monetize/create-and-run-your-first-experiment-with-a-b-testing.md
- name: Launch Feedback Hub from your app
href: ../monetize/launch-feedback-hub-from-your-app.md
- name: Configure your app for targeted push notifications
href: ../monetize/configure-your-app-to-receive-dev-center-notifications.md
- name: Log custom events for Partner Center
href: ../monetize/log-custom-events-for-dev-center.md
- name: Request ratings and reviews
href: ../monetize/request-ratings-and-reviews.md
- name: Microsoft Store services
href: ../monetize/using-windows-store-services.md
items:
- name: Access analytics data
href: ../monetize/access-analytics-data-using-windows-store-services.md
items:
- name: Get acquisitions data for your games and apps
href: ../monetize/acquisitions-data.md
- name: Get add-on acquisitions data for your games and apps
href: ../monetize/add-on-acquisitions-data.md
- name: UWP apps
items:
- name: Get acquisitions and installs data
items:
- name: Get app acquisitions (legacy)
href: ../monetize/get-app-acquisitions.md
- name: Get app installs
href: ../monetize/get-app-installs.md
- name: Get app acquisition funnel data (legacy)
href: ../monetize/get-acquisition-funnel-data.md
- name: Get app conversions by channel
href: ../monetize/get-app-conversions-by-channel.md
- name: Get add-on acquisitions
href: ../monetize/get-in-app-acquisitions.md
- name: Get subscription add-on acquisitions
href: ../monetize/get-subscription-acquisitions.md
- name: Get add-on conversions by channel
href: ../monetize/get-add-on-conversions-by-channel.md
- name: Get insights data for your app
href: ../monetize/get-insights-data-for-your-app.md
- name: Get app ratings
href: ../monetize/get-app-ratings.md
- name: Get app reviews
href: ../monetize/get-app-reviews.md
- name: Get daily app usage
href: ../monetize/get-app-usage-daily.md
- name: Get monthly app usage
href: ../monetize/get-app-usage-monthly.md
- name: Get error reporting data
href: ../monetize/get-error-reporting-data.md
items:
- name: Get details for an error in your app
href: ../monetize/get-details-for-an-error-in-your-app.md
- name: Get the stack trace for an error in your app
href: ../monetize/get-the-stack-trace-for-an-error-in-your-app.md
- name: Download the CAB file for an error in your app
href: ../monetize/download-the-cab-file-for-an-error-in-your-app.md
- name: Get ad performance data
href: ../monetize/get-ad-performance-data.md
- name: Get ad campaign performance data
href: ../monetize/get-ad-campaign-performance-data.md
- name: Desktop apps
items:
- name: Get desktop application installs
href: ../monetize/get-desktop-app-installs.md
- name: Get insights data for your desktop application
href: ../monetize/get-insights-data-for-your-desktop-app.md
- name: Get upgrade blocks for your desktop application
href: ../monetize/get-desktop-block-data.md
- name: Get upgrade block details for your desktop application
href: ../monetize/get-desktop-block-data-details.md
- name: Get error reporting data for your desktop application
href: ../monetize/get-desktop-application-error-reporting-data.md
items:
- name: Get details for an error in your desktop application
href: ../monetize/get-details-for-an-error-in-your-desktop-application.md
- name: Get the stack trace for an error in your desktop application
href: ../monetize/get-the-stack-trace-for-an-error-in-your-desktop-application.md
- name: Download the CAB file for an error in your desktop application
href: ../monetize/download-the-cab-file-for-an-error-in-your-desktop-application.md
- name: Respond to reviews
href: ../monetize/respond-to-reviews-using-windows-store-services.md
items:
- name: Get response info for reviews
href: ../monetize/get-response-info-for-app-reviews.md
- name: Submit responses to reviews
href: ../monetize/submit-responses-to-app-reviews.md
- name: Run ad campaigns
href: ../monetize/run-ad-campaigns-using-windows-store-services.md
items:
- name: Manage ad campaigns
href: ../monetize/manage-ad-campaigns.md
- name: Manage delivery lines
href: ../monetize/manage-delivery-lines-for-ad-campaigns.md
- name: Manage targeting profiles
href: ../monetize/manage-targeting-profiles-for-ad-campaigns.md
- name: Manage creatives
href: ../monetize/manage-creatives-for-ad-campaigns.md
- name: Create and manage submissions
href: ../monetize/create-and-manage-submissions-using-windows-store-services.md
items:
- name: Get app data
href: ../monetize/get-app-data.md
items:
- name: Get all apps
href: ../monetize/get-all-apps.md
- name: Get an app
href: ../monetize/get-an-app.md
- name: Get add-ons for an app
href: ../monetize/get-add-ons-for-an-app.md
- name: Get package flights for an app
href: ../monetize/get-flights-for-an-app.md
- name: Manage app submissions
href: ../monetize/manage-app-submissions.md
items:
- name: Get an app submission
href: ../monetize/get-an-app-submission.md
- name: Get the status of an app submission
href: ../monetize/get-status-for-an-app-submission.md
- name: Create an app submission
href: ../monetize/create-an-app-submission.md
- name: Commit an app submission
href: ../monetize/commit-an-app-submission.md
- name: Update an app submission
href: ../monetize/update-an-app-submission.md
- name: Delete an app submission
href: ../monetize/delete-an-app-submission.md
- name: Get rollout info for an app submission
href: ../monetize/get-package-rollout-info-for-an-app-submission.md
- name: Update the rollout percentage for an app submission
href: ../monetize/update-the-package-rollout-percentage-for-an-app-submission.md
- name: Halt the rollout for an app submission
href: ../monetize/halt-the-package-rollout-for-an-app-submission.md
- name: Finalize the rollout for an app submission
href: ../monetize/finalize-the-package-rollout-for-an-app-submission.md
- name: Manage add-ons
href: ../monetize/manage-add-ons.md
items:
- name: Get all add-ons
href: ../monetize/get-all-add-ons.md
- name: Get an add-on
href: ../monetize/get-an-add-on.md
- name: Create an add-on
href: ../monetize/create-an-add-on.md
- name: Delete an add-on
href: ../monetize/delete-an-add-on.md
- name: Manage add-on submissions
href: ../monetize/manage-add-on-submissions.md
items:
- name: Get an add-on submission
href: ../monetize/get-an-add-on-submission.md
- name: Get the status of an add-on submission
href: ../monetize/get-status-for-an-add-on-submission.md
- name: Create an add-on submission
href: ../monetize/create-an-add-on-submission.md
- name: Commit an add-on submission
href: ../monetize/commit-an-add-on-submission.md
- name: Update an add-on submission
href: ../monetize/update-an-add-on-submission.md
- name: Delete an add-on submission
href: ../monetize/delete-an-add-on-submission.md
- name: Manage package flights
href: ../monetize/manage-flights.md
items:
- name: Get a package flight
href: ../monetize/get-a-flight.md
- name: Create a package flight
href: ../monetize/create-a-flight.md
- name: Delete a package flight
href: ../monetize/delete-a-flight.md
- name: Manage package flight submissions
href: ../monetize/manage-flight-submissions.md
items:
- name: Get a package flight submission
href: ../monetize/get-a-flight-submission.md
- name: Get the status of a package flight submission
href: ../monetize/get-status-for-a-flight-submission.md
- name: Create a package flight submission
href: ../monetize/create-a-flight-submission.md
- name: Commit a package flight submission
href: ../monetize/commit-a-flight-submission.md
- name: Update a package flight submission
href: ../monetize/update-a-flight-submission.md
- name: Delete a package flight submission
href: ../monetize/delete-a-flight-submission.md
- name: Get rollout info for a flight submission
href: ../monetize/get-package-rollout-info-for-a-flight-submission.md
- name: Update the rollout percentage for a flight submission
href: ../monetize/update-the-package-rollout-percentage-for-a-flight-submission.md
- name: Halt the rollout for a flight submission
href: ../monetize/halt-the-package-rollout-for-a-flight-submission.md
- name: Finalize the rollout for a flight submission
href: ../monetize/finalize-the-package-rollout-for-a-flight-submission.md
- name: Code examples for the submission API
href: ../monetize/code-examples-for-the-windows-store-submission-api.md
items:
- name: "C# sample: submissions for apps, add-ons, and flights"
href: ../monetize/csharp-code-examples-for-the-windows-store-submission-api.md
- name: "C# sample: app submission with game options and trailers"
href: ../monetize/csharp-code-examples-for-submissions-game-options-and-trailers.md
- name: "Java sample: submissions for apps, add-ons, and flights"
href: ../monetize/java-code-examples-for-the-windows-store-submission-api.md
- name: "Java sample: app submission with game options and trailers"
href: ../monetize/java-code-examples-for-submissions-game-options-and-trailers.md
- name: "Python sample: submissions for apps, add-ons, and flights"
href: ../monetize/python-code-examples-for-the-windows-store-submission-api.md
- name: "Python sample: app submission with game options and trailers"
href: ../monetize/python-code-examples-for-submissions-game-options-and-trailers.md
- name: Manage targeted offers
href: ../monetize/manage-targeted-offers-using-windows-store-services.md
items:
- name: Get targeted offers
href: ../monetize/get-targeted-offers.md
- name: Manage product entitlements from a service
href: ../monetize/view-and-grant-products-from-a-service.md
items:
- name: Query for products
href: ../monetize/query-for-products.md
- name: Report consumable products as fulfilled
href: ../monetize/report-consumable-products-as-fulfilled.md
- name: Grant free products
href: ../monetize/grant-free-products.md
- name: Get subscriptions for a user
href: ../monetize/get-subscriptions-for-a-user.md
- name: Change the billing state of a subscription for a user
href: ../monetize/change-the-billing-state-of-a-subscription-for-a-user.md
- name: Renew a Microsoft Store ID key
href: ../monetize/renew-a-windows-store-id-key.md
- name: Send requests to the Store
href: ../monetize/send-requests-to-the-store.md
- name: Add retail demo (RDX) features
href: ../monetize/retail-demo-experience.md
- name: Simplify payments with the Payment Request API
href: ../monetize/index.md
- name: Packaging apps
items:
- name: Overview
href: ../packaging/index.md
- name: App capability declarations
href: ../packaging/app-capability-declarations.md
- name: Set up automated builds for your UWP app
href: ../packaging/auto-build-package-uwp-apps.md
- name: Install apps with the WinAppDeployCmd.exe tool
href: ../packaging/install-universal-windows-apps-with-the-winappdeploycmd-tool.md
- name: Download and install package updates from the Store
href: ../packaging/self-install-package-updates.md
- name: Devices, sensors, and power
href: ../devices-sensors/index.md
items:
- name: Enable device capabilities
href: ../devices-sensors/enable-device-capabilities.md
- name: Enable usermode access
href: ../devices-sensors/enable-usermode-access.md
- name: Enumerate devices
href: ../devices-sensors/enumerate-devices.md
items:
- name: Build a device selector
href: ../devices-sensors/build-a-device-selector.md
- name: Enumerate devices over a network
href: ../devices-sensors/enumerate-devices-over-a-network.md
- name: Device information properties
href: ../devices-sensors/device-information-properties.md
- name: AEP service class IDs
href: ../devices-sensors/aep-service-class-ids.md
- name: Pair devices
href: ../devices-sensors/pair-devices.md
- name: Pairing a set
href: ../devices-sensors/pairing-a-set.md
- name: Dynamic lighting
href: ../devices-sensors/lighting-dynamic-lamparray.md
- name: Point of Service
href: ../devices-sensors/point-of-service.md
items:
- name: Basics
href: ../devices-sensors/pos-basics.md
items:
- name: Capability declaration
href: ../devices-sensors/pos-basics-capability.md
- name: Enumerating PointofService devices
href: ../devices-sensors/pos-basics-enumerating.md
- name: PointOfService device objects
href: ../devices-sensors/pos-basics-deviceobject.md
- name: PointofService device claim and enable model
href: ../devices-sensors/pos-basics-claim.md
- name: PointOfService device sharing
href: ../devices-sensors/pos-basics-sharing.md
- name: Getting started
href: ../devices-sensors/pos-get-started.md
- name: Hardware support
href: ../devices-sensors/pos-device-support.md
- name: Barcode scanner
href: ../devices-sensors/pos-barcodescanner.md
items:
- name: Support specific applications
href: ../devices-sensors/pos-barcodescanner-configure.md
- name: Use a software trigger
href: ../devices-sensors/pos-barcodescanner-software-trigger.md
- name: Working with symbologies
href: ../devices-sensors/pos-barcodescanner-symbologies.md
- name: Obtain and understand barcode data
href: ../devices-sensors/pos-barcodescanner-scan-data.md
- name: Camera barcode scanner
href: ../devices-sensors/pos-camerabarcode.md
items:
- name: System requirements
href: ../devices-sensors/pos-camerabarcode-system-requirements.md
- name: Getting started
href: ../devices-sensors/pos-camerabarcode-get-started.md
- name: Hosting a camera preview
href: ../devices-sensors/pos-camerabarcode-hosting-preview.md
- name: Enable/disable camera barcode scanner
href: ../devices-sensors/pos-camerabarcode-enable-disable.md
- name: Supported symbologies
href: ../devices-sensors/pos-camerabarcode-symbologies.md
- name: Advanced configuration
href: ../devices-sensors/pos-camerabarcode-advancedconfig.md
- name: Magnetic stripe reader
href: ../devices-sensors/pos-magnetic-stripe-reader.md
items:
- name: Obtain and understand magnetic stripe data
href: ../devices-sensors/pos-magnetic-stripe-reader-data.md
- name: POSPrinter
href: ../devices-sensors/pos-printer.md
items:
- name: Epson ESC/POS with formatting
href: ../devices-sensors/epson-esc-pos-with-formatting.md
- name: Sensors
href: ../devices-sensors/sensors.md
items:
- name: Calibrate sensors
href: ../devices-sensors/calibrate-sensors.md
- name: Sensor orientation
href: ../devices-sensors/sensor-orientation.md
- name: Use the accelerometer
href: ../devices-sensors/use-the-accelerometer.md
- name: Use the compass
href: ../devices-sensors/use-the-compass.md
- name: Use the gyrometer
href: ../devices-sensors/use-the-gyrometer.md
- name: Use the inclinometer
href: ../devices-sensors/use-the-inclinometer.md
- name: Use the light sensor
href: ../devices-sensors/use-the-light-sensor.md
- name: Use the orientation sensor
href: ../devices-sensors/use-the-orientation-sensor.md
- name: Bluetooth
href: ../devices-sensors/bluetooth.md
items:
- name: RFCOMM
href: ../devices-sensors/send-or-receive-files-with-rfcomm.md
- name: Bluetooth Low Energy
href: ../devices-sensors/bluetooth-low-energy-overview.md
items:
- name: GATT client
href: ../devices-sensors/gatt-client.md
- name: GATT server
href: ../devices-sensors//gatt-server.md
- name: Advertisements
href: ../devices-sensors/ble-beacon.md
- name: Bluetooth developer FAQ
href: ../devices-sensors/bluetooth-dev-faq.yml
- name: 3D printing
href: ../devices-sensors/3d-printing.md
items:
- name: 3D printing from your app
href: ../devices-sensors/3d-print-from-app.md
- name: Generate a 3MF package
href: ../devices-sensors/3d-generate-3mf.md
- name: NFC
href: ../devices-sensors/nfc.md
items:
- name: Create an NFC Smart Card app
href: ../devices-sensors/host-card-emulation.md
- name: Get battery information
href: ../devices-sensors/get-battery-info.md
- name: Customize the print workflow
href: ../devices-sensors/print-workflow-customize.md
- name: Launching, resuming, and background tasks
href: ../launch-resume/index.md
items:
- name: Create a Universal Windows Platform console app
href: ../launch-resume/console-uwp.md
- name: Create a Multi-instance UWP app
href: ../launch-resume/multi-instance-uwp.md
- name: App lifecycle
href: ../launch-resume/app-lifecycle.md
items:
- name: Handle app prelaunch
href: ../launch-resume/handle-app-prelaunch.md
- name: Handle app activation
href: ../launch-resume/activate-an-app.md
- name: Handle app suspend
href: ../launch-resume/suspend-an-app.md
- name: Handle app resume
href: ../launch-resume/resume-an-app.md
- name: Free memory when your app moves to the background
href: ../launch-resume/reduce-memory-usage.md
- name: Postpone app suspension with extended execution
href: ../launch-resume/run-minimized-with-extended-execution.md
- name: Live Tiles
href: ../launch-resume/creating-tiles.md
items:
- name: Secondary tiles
href: ../launch-resume/secondary-tiles.md
items:
- name: Guidance
href: ../launch-resume/secondary-tiles-guidance.md
- name: Pin to Start
href: ../launch-resume/secondary-tiles-pinning.md
- name: Pin to taskbar
href: ../launch-resume/secondary-tiles-pin-to-taskbar.md
- name: Tile content
href: ../launch-resume/create-adaptive-tiles.md
- name: Tile content schema
href: ../launch-resume/tile-schema.md
- name: Special tile templates
href: ../launch-resume/special-tile-templates-catalog.md
- name: Send local tile notification
href: ../launch-resume/sending-a-local-tile-notification.md
- name: Chaseable tile notifications
href: ../launch-resume/chaseable-tile-notifications.md
- name: Primary tile APIs
href: ../launch-resume/primary-tile-apis.md
- name: Tile, toast notification support for language, scale, contrast
href: ../launch-resume/tile-toast-language-scale-contrast.md
- name: Splash screens
href: ../launch-resume/splash-screens.md
items:
- name: Add a splash screen
href: ../launch-resume/add-a-splash-screen.md
- name: Display a splash screen for more time
href: ../launch-resume/create-a-customized-splash-screen.md
- name: Troubleshoot Microsoft Store app color and appearance issues
href: ../launch-resume/microsoft-store-color-appearance-issues.md
- name: Auto-launching with AutoPlay
href: ../launch-resume/auto-launching-with-autoplay.md
- name: Launch an app for results
href: ../launch-resume/how-to-launch-an-app-for-results.md
- name: Choose and save tones using the ms-tonepicker URI scheme
href: ../launch-resume/launch-ringtone-picker.md
- name: Reserved file and URI scheme names >>
href: /windows/apps/develop/launch/reserved-uri-scheme-names
- name: Use app services and extensions
href: ../launch-resume/app-services.md
items:
- name: Create and consume an app service
href: ../launch-resume/how-to-create-and-consume-an-app-service.md
- name: Convert an app service to run in the same process as its host app
href: ../launch-resume/convert-app-service-in-process.md
- name: Extend your app with services, extensions, and packages
href: ../launch-resume/extend-your-app-with-services-extensions-packages.md
- name: Create and host an app extension
href: ../launch-resume/how-to-create-an-extension.md
- name: Create and host a package extension
href: ../launch-resume/create-and-host-a-package-extension.md
- name: Create hosted apps
href: ../launch-resume/hosted-apps.md
- name: Support your app with background tasks
href: ../launch-resume/support-your-app-with-background-tasks.md
items:
- name: Guidelines for background tasks
href: ../launch-resume/guidelines-for-background-tasks.md
- name: Access sensors and devices from a background task
href: ../launch-resume/access-sensors-and-devices-from-a-background-task.md
- name: Create and register an in-process background task
href: ../launch-resume/create-and-register-an-inproc-background-task.md
- name: Create and register an out-of-process background task
href: ../launch-resume/create-and-register-a-background-task.md
- name: Create and register a winmain COM background task
href: ../launch-resume/create-and-register-a-winmain-background-task.md
- name: Port an out-of-process background task to an in-process background task
href: ../launch-resume/convert-out-of-process-background-task.md
- name: Debug a background task
href: ../launch-resume/debug-a-background-task.md
- name: Declare background tasks in the application manifest
href: ../launch-resume/declare-background-tasks-in-the-application-manifest.md
- name: Group background task registration
href: ../launch-resume/group-background-tasks.md
- name: Handle a cancelled background task
href: ../launch-resume/handle-a-cancelled-background-task.md
- name: Monitor background task progress and completion
href: ../launch-resume/monitor-background-task-progress-and-completion.md
- name: Register a background task
href: ../launch-resume/register-a-background-task.md
- name: Respond to system events with background tasks
href: ../launch-resume/respond-to-system-events-with-background-tasks.md
- name: Run a background task on a timer
href: ../launch-resume/run-a-background-task-on-a-timer-.md
- name: Run a background task when your UWP app is updated
href: ../launch-resume/run-a-background-task-during-updatetask.md
- name: Run in the background indefinitely
href: ../launch-resume/run-in-the-background-indefinetly.md
- name: Set conditions for running a background task
href: ../launch-resume/set-conditions-for-running-a-background-task.md
- name: Trigger a background task from your app
href: ../launch-resume/trigger-background-task-from-app.md
- name: Update a live tile from a background task
href: ../launch-resume/update-a-live-tile-from-a-background-task.md
- name: Use a maintenance trigger
href: ../launch-resume/use-a-maintenance-trigger.md
- name: Connected apps and devices (Project Rome)
href: ../launch-resume/connected-apps-and-devices.md
items:
- name: Discover remote devices
href: ../launch-resume/discover-remote-devices.md
- name: Launch an app on a remote device
href: ../launch-resume/launch-a-remote-app.md
- name: Communicate with a remote app service
href: ../launch-resume/communicate-with-a-remote-app-service.md
- name: Connect devices through remote sessions
href: ../launch-resume/remote-sessions.md
- name: Continue user activity, even across devices
href: ../launch-resume/useractivities.md
- name: User Activities best practices
href: ../launch-resume/useractivities-best-practices.md
- name: Platform
items:
- name: C++/WinRT
href: ../cpp-and-winrt-apis/index.md
items:
- name: Introduction
href: ../cpp-and-winrt-apis/intro-to-using-cpp-with-winrt.md
- name: Get started
href: ../cpp-and-winrt-apis/get-started.md
- name: What's new
href: ../cpp-and-winrt-apis/news.md
- name: Frequently-asked questions
href: ../cpp-and-winrt-apis/faq.yml
- name: Troubleshooting
href: ../cpp-and-winrt-apis/troubleshooting.md
- name: Photo Editor sample application
href: ../cpp-and-winrt-apis/photo-editor-sample.md
- name: String handling
href: ../cpp-and-winrt-apis/strings.md
- name: Standard C++ data types
href: ../cpp-and-winrt-apis/std-cpp-data-types.md
- name: Boxing and unboxing values to IInspectable
href: ../cpp-and-winrt-apis/boxing.md
- name: Consume APIs
href: ../cpp-and-winrt-apis/consume-apis.md
- name: Author APIs
href: ../cpp-and-winrt-apis/author-apis.md
- name: Error handling
href: ../cpp-and-winrt-apis/error-handling.md
- name: Handle events by using delegates
href: ../cpp-and-winrt-apis/handle-events.md
- name: Author events
href: ../cpp-and-winrt-apis/author-events.md
- name: Collections
href: ../cpp-and-winrt-apis/collections.md
- name: Concurrency and asynchronous operations
href: ../cpp-and-winrt-apis/concurrency.md
- name: Advanced concurrency and asynchrony
href: ../cpp-and-winrt-apis/concurrency-2.md
- name: A completion source sample
href: ../cpp-and-winrt-apis/concurrency-3.md
- name: XAML controls; bind to a property
href: ../cpp-and-winrt-apis/binding-property.md
- name: XAML items controls; bind to a collection
href: ../cpp-and-winrt-apis/binding-collection.md
- name: XAML custom (templated) controls
href: ../cpp-and-winrt-apis/xaml-cust-ctrl.md
- name: Calling and overriding your base type
href: ../cpp-and-winrt-apis/base-type.md
- name: Passing parameters to projected APIs
href: ../cpp-and-winrt-apis/pass-parms-to-abi.md
- name: Consume COM components
href: ../cpp-and-winrt-apis/consume-com.md
- name: Author COM components
href: ../cpp-and-winrt-apis/author-coclasses.md
- name: Move to C++/WinRT from C++/CX
href: ../cpp-and-winrt-apis/move-to-winrt-from-cx.md
- name: Interop with C++/CX
href: ../cpp-and-winrt-apis/interop-winrt-cx.md
- name: Asynchrony, and interop with C++/CX
href: ../cpp-and-winrt-apis/interop-winrt-cx-async.md
- name: Move to C++/WinRT from WRL
href: ../cpp-and-winrt-apis/move-to-winrt-from-wrl.md
- name: Porting a sample app from C#
href: ../cpp-and-winrt-apis/clipboard-to-winrt-from-csharp.md
- name: Move to C++/WinRT from C#
href: ../cpp-and-winrt-apis/move-to-winrt-from-csharp.md
- name: Interop with the ABI
href: ../cpp-and-winrt-apis/interop-winrt-abi.md
- name: Strong and weak references
href: ../cpp-and-winrt-apis/weak-references.md
- name: Agile objects
href: ../cpp-and-winrt-apis/agile-objects.md
- name: Diagnosing direct allocations
href: ../cpp-and-winrt-apis/diag-direct-alloc.md
- name: Extension points for implementation types
href: ../cpp-and-winrt-apis/details-about-destructors.md
- name: A simple C++/WinRT WinUI example
href: ../cpp-and-winrt-apis/simple-winui-example.md
- name: Windows Runtime components (C++/WinRT)
href: ../winrt-components/create-a-windows-runtime-component-in-cppwinrt.md
- name: Use a C# component in a C++/WinRT app
href: ../cpp-and-winrt-apis/use-csharp-component-from-cpp-winrt.md
- name: Native debug visualization
href: ../cpp-and-winrt-apis/natvis.md
- name: C++/WinRT configuration macros
href: ../cpp-and-winrt-apis/macros.md
- name: Naming conventions
href: ../cpp-and-winrt-apis/naming.md
- name: C++ language
items:
- name: Value categories, and references
href: ../cpp-and-winrt-apis/cpp-value-categories.md