diff --git a/Samples/Accelerometer/README.md b/Samples/Accelerometer/README.md index e6d0438927..848c9a9117 100644 --- a/Samples/Accelerometer/README.md +++ b/Samples/Accelerometer/README.md @@ -37,7 +37,8 @@ When you choose the **Enable** button for the **Data Events** option, the app be When you choose the **Enable** button for the **Shake Events** option, the app displays the cumulative number of shake events each time an event occurs. (The app first increments the event count and then renders the most recent value.) -Note that shake events are not supported in Windows 10 build 10240, so the Shaken event will never be raised, but the sample demonstrates how to handle the event when support for shake is added. +Note that support for the Shaken event is dependent upon hardware and driver support. +In practice, very few accelerometers support the Shaken event. ### Poll Accelerometer Readings diff --git a/Samples/Accelerometer/js/html/scenario2_ShakeEvents.html b/Samples/Accelerometer/js/html/scenario2_ShakeEvents.html index 209ebd3feb..1e8d4107c6 100644 --- a/Samples/Accelerometer/js/html/scenario2_ShakeEvents.html +++ b/Samples/Accelerometer/js/html/scenario2_ShakeEvents.html @@ -13,7 +13,10 @@

Description:

Shake events
-

Registers an event listener for accelerometer shake events and displays the cumulative count of shake events.

+

+ Registers an event listener for accelerometer shake events and displays the cumulative count of shake events. + Note that not all accelerometers report shake events. +

diff --git a/Samples/Accelerometer/shared/Scenario2_ShakeEvents.xaml b/Samples/Accelerometer/shared/Scenario2_ShakeEvents.xaml index 7274748100..55464f1bc1 100644 --- a/Samples/Accelerometer/shared/Scenario2_ShakeEvents.xaml +++ b/Samples/Accelerometer/shared/Scenario2_ShakeEvents.xaml @@ -22,7 +22,10 @@ - + + Registers an event listener for accelerometer shake events and displays the cumulative count of shake events. + Note that not all accelerometers report shake events. + + diff --git a/Samples/XamlContextMenu/shared/Scenario2.xaml b/Samples/XamlContextMenu/shared/Scenario2.xaml new file mode 100644 index 0000000000..920b3f8662 --- /dev/null +++ b/Samples/XamlContextMenu/shared/Scenario2.xaml @@ -0,0 +1,62 @@ + + + + + + + + + + + + + This scenario attaches a ContextFlyout to each ListViewItem. + + + + + + + + + + + + + + + + + + + diff --git a/Samples/XamlContextMenu/shared/Scenario3.xaml b/Samples/XamlContextMenu/shared/Scenario3.xaml new file mode 100644 index 0000000000..bbbb8ffd35 --- /dev/null +++ b/Samples/XamlContextMenu/shared/Scenario3.xaml @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + The ContextRequested event allows an app to display custom context UI. + This scenario responds to the ContextRequested event by displaying a MenuFlyout, + resulting in the same effect as the "ContextFlyout in ListView" scenario. + + + + + + + + + + + + + + + +