diff --git a/code/test/Core.Test/TestData/Merge/Source.cs b/code/test/Core.Test/TestData/Merge/Source.cs index 051059b588..74ef7e449f 100644 --- a/code/test/Core.Test/TestData/Merge/Source.cs +++ b/code/test/Core.Test/TestData/Merge/Source.cs @@ -111,7 +111,7 @@ protected override void OnActivated(IActivatedEventArgs args) { var toastArgs = args as ToastNotificationActivatedEventArgs; var arguments = toastArgs.Argument; - //TODO UWPTemplates: Handle activation from toast notification, + // TODO WTS: Handle activation from toast notification, //for more info handling activation see //https://blogs.msdn.microsoft.com/tiles_and_toasts/2015/07/08/quickstart-sending-a-local-toast-notification-and-handling-activations-from-it-windows-10/ } diff --git a/code/test/Core.Test/TestData/Merge/Source_expected.cs b/code/test/Core.Test/TestData/Merge/Source_expected.cs index 48917a76e6..5b97f165fe 100644 --- a/code/test/Core.Test/TestData/Merge/Source_expected.cs +++ b/code/test/Core.Test/TestData/Merge/Source_expected.cs @@ -126,7 +126,7 @@ protected override void OnActivated(IActivatedEventArgs args) //INSIDE IF!! var toastArgs = args as ToastNotificationActivatedEventArgs; var arguments = toastArgs.Argument; - //TODO UWPTemplates: Handle activation from toast notification, + // TODO WTS: Handle activation from toast notification, //for more info handling activation see //https://blogs.msdn.microsoft.com/tiles_and_toasts/2015/07/08/quickstart-sending-a-local-toast-notification-and-handling-activations-from-it-windows-10/ } diff --git a/templates/Features/BackgroundTask/BackgroundTasks/BackgroundTaskFeature.cs b/templates/Features/BackgroundTask/BackgroundTasks/BackgroundTaskFeature.cs index ff6e437d5a..bf6e9450a3 100644 --- a/templates/Features/BackgroundTask/BackgroundTasks/BackgroundTaskFeature.cs +++ b/templates/Features/BackgroundTask/BackgroundTasks/BackgroundTaskFeature.cs @@ -26,7 +26,7 @@ public override void Register() Name = taskName }; - // TODO UWPTemplates: Define your trigger here and set your conditions + // TODO WTS: Define your trigger here and set your conditions // Note conditions are optional // Documentation: https://docs.microsoft.com/windows/uwp/launch-resume/create-and-register-an-inproc-background-task @@ -49,7 +49,7 @@ public override Task RunAsyncInternal(IBackgroundTaskInstance taskInstance) return Task.Run(() => { - // TODO UWPTemplates: Insert the code that should be executed in the background task here. + // TODO WTS: Insert the code that should be executed in the background task here. // This sample initializes a timer that counts to 100 in steps of 10. It updates Message each time. // Documentation: @@ -68,7 +68,7 @@ public override Task RunAsyncInternal(IBackgroundTaskInstance taskInstance) public override void OnCanceled(IBackgroundTaskInstance sender, BackgroundTaskCancellationReason reason) { - // TODO UWPTemplates: Insert code to handle the cancelation request here. + // TODO WTS: Insert code to handle the cancelation request here. // Documentation: https://docs.microsoft.com/windows/uwp/launch-resume/handle-a-cancelled-background-task } diff --git a/templates/Features/FirstUsePrompt/Views/FirstRunDialog.xaml.cs b/templates/Features/FirstUsePrompt/Views/FirstRunDialog.xaml.cs index 85d425192b..07a288cd31 100644 --- a/templates/Features/FirstUsePrompt/Views/FirstRunDialog.xaml.cs +++ b/templates/Features/FirstUsePrompt/Views/FirstRunDialog.xaml.cs @@ -6,7 +6,7 @@ public sealed partial class FirstRunDialog : ContentDialog { public FirstRunDialog() { - // TODO UWPTemplates: Update the contents of this dialog with any important information you want to show when the app is used for the first time. + // TODO WTS: Update the contents of this dialog with any important information you want to show when the app is used for the first time. this.InitializeComponent(); } } diff --git a/templates/Features/HubNotifications/Services/ActivationService_postaction.cs b/templates/Features/HubNotifications/Services/ActivationService_postaction.cs index d51c592cda..97b1676a5d 100644 --- a/templates/Features/HubNotifications/Services/ActivationService_postaction.cs +++ b/templates/Features/HubNotifications/Services/ActivationService_postaction.cs @@ -15,7 +15,7 @@ internal class ActivationService private async Task StartupAsync() { //{[{ - // TODO UWPTemplates: To use the HubNotificationService especific data related with your Azure Notification Hubs is required. + // TODO WTS: To use the HubNotificationService especific data related with your Azure Notification Hubs is required. // 1. Go to the HubNotificationsFeatureService class, in the InitializeAsync() method, provide the Hub Name and DefaultListenSharedAccessSignature. // 2. Uncomment the following line (an exception is thrown if it is executed before the previous information is provided). diff --git a/templates/Features/HubNotifications/Services/HubNotificationsFeatureService.cs b/templates/Features/HubNotifications/Services/HubNotificationsFeatureService.cs index f29140c9d6..1131c86a6f 100644 --- a/templates/Features/HubNotifications/Services/HubNotificationsFeatureService.cs +++ b/templates/Features/HubNotifications/Services/HubNotificationsFeatureService.cs @@ -35,7 +35,7 @@ public async void InitializeAsync() protected override async Task HandleInternalAsync(ToastNotificationActivatedEventArgs args) { - // TODO UWPTemplates: Handle activation from toast notification, + // TODO WTS: Handle activation from toast notification, // for more info handling activation see // Documentation: https://blogs.msdn.microsoft.com/tiles_and_toasts/2015/07/08/quickstart-sending-a-local-toast-notification-and-handling-activations-from-it-windows-10/ diff --git a/templates/Features/LiveTile/Services/LiveTileFeatureService.Samples.cs b/templates/Features/LiveTile/Services/LiveTileFeatureService.Samples.cs index 23c52723de..e941bc75ab 100644 --- a/templates/Features/LiveTile/Services/LiveTileFeatureService.Samples.cs +++ b/templates/Features/LiveTile/Services/LiveTileFeatureService.Samples.cs @@ -82,7 +82,7 @@ public void SampleUpdate() public async Task SamplePinSecondary(string pageName) { - // TODO UWPTemplates: Call this method to Pin a Secondary Tile from a page. + // TODO WTS: Call this method to Pin a Secondary Tile from a page. // You also must implement the navigation to this specific page in the OnLaunched event handler on App.xaml.cs var tile = new SecondaryTile(DateTime.Now.Ticks.ToString()); tile.Arguments = pageName; diff --git a/templates/Features/LiveTile/Services/LiveTileFeatureService.cs b/templates/Features/LiveTile/Services/LiveTileFeatureService.cs index d71fd3dfd0..de072c15eb 100644 --- a/templates/Features/LiveTile/Services/LiveTileFeatureService.cs +++ b/templates/Features/LiveTile/Services/LiveTileFeatureService.cs @@ -62,14 +62,14 @@ protected override bool CanHandleInternal(LaunchActivatedEventArgs args) private bool LaunchFromSecondaryTile(LaunchActivatedEventArgs args) { // If app is launched from a SecondaryTile, tile arguments property is contained in args.Arguments - // TODO UWPTemplates: Implement your own logic to determine if you can handle the SecondaryTile activation + // TODO WTS: Implement your own logic to determine if you can handle the SecondaryTile activation return false; } private bool LaunchFromLiveTileUpdate(LaunchActivatedEventArgs args) { // If app is launched from a LiveTile notification update, TileContent arguments property is contained in args.TileActivatedInfo.RecentlyShownNotifications - // TODO UWPTemplates: Implement your own logic to determine if you can handle the LiveTile notification update activation + // TODO WTS: Implement your own logic to determine if you can handle the LiveTile notification update activation return false; } } diff --git a/templates/Features/SampleData/Models/Order.cs b/templates/Features/SampleData/Models/Order.cs index 34c4556b09..1b7adf08e5 100644 --- a/templates/Features/SampleData/Models/Order.cs +++ b/templates/Features/SampleData/Models/Order.cs @@ -2,7 +2,7 @@ namespace Param_ItemNamespace.Models { - // TODO UWPTemplates: This is used by the Sample Grid Data. Remove this once your grid page is displaying real data + // TODO WTS: This is used by the Sample Grid Data. Remove this once your grid page is displaying real data public class Order { public long OrderId { get; set; } diff --git a/templates/Features/SampleData/Services/SampleDataService.cs b/templates/Features/SampleData/Services/SampleDataService.cs index 7ee0894712..0582f0b1ad 100644 --- a/templates/Features/SampleData/Services/SampleDataService.cs +++ b/templates/Features/SampleData/Services/SampleDataService.cs @@ -6,7 +6,7 @@ namespace Param_ItemNamespace.Services { // This class holds sample data used by some generated pages to show how they can be used. - // TODO UWPTemplates: Delete this file once your app is using real data. + // TODO WTS: Delete this file once your app is using real data. public static class SampleDataService { private static IEnumerable AllOrders() diff --git a/templates/Features/SuspendAndResume/Services/SuspendAndResumeService.cs b/templates/Features/SuspendAndResume/Services/SuspendAndResumeService.cs index 90740f4dbb..ab98569e4e 100644 --- a/templates/Features/SuspendAndResume/Services/SuspendAndResumeService.cs +++ b/templates/Features/SuspendAndResume/Services/SuspendAndResumeService.cs @@ -12,12 +12,12 @@ namespace Param_ItemNamespace.Services { internal class SuspendAndResumeService : ActivationHandler { - // TODO UWPTemplates: For more information regarding the application lifecycle and how to handle suspend and resume, please see: + // TODO WTS: For more information regarding the application lifecycle and how to handle suspend and resume, please see: // Documentation: https://docs.microsoft.com/windows/uwp/launch-resume/app-lifecycle private const string stateFilename = "suspensionState"; - // TODO UWPTemplates: This event is fired just before the app enters in background. Subscribe to this event if you want to save your current state. + // TODO WTS: This event is fired just before the app enters in background. Subscribe to this event if you want to save your current state. public event EventHandler OnBackgroundEntering; public async Task SaveStateAsync() diff --git a/templates/Features/ToastNotifications/Activation/DefaultLaunchActivationHandler_postaction.cs b/templates/Features/ToastNotifications/Activation/DefaultLaunchActivationHandler_postaction.cs index 2b246414a5..6bcba5174b 100644 --- a/templates/Features/ToastNotifications/Activation/DefaultLaunchActivationHandler_postaction.cs +++ b/templates/Features/ToastNotifications/Activation/DefaultLaunchActivationHandler_postaction.cs @@ -14,7 +14,7 @@ protected override async Task HandleInternalAsync(LaunchActivatedEventArgs args) { //^^ //{[{ - // TODO UWPTemplates: This is a sample on how to show a toast notification. + // TODO WTS: This is a sample on how to show a toast notification. // You can use this sample to create toast notifications where needed in your app. Singleton.Instance.ShowToastNotificationSample(); //}]} diff --git a/templates/Features/ToastNotifications/Services/ToastNotificationsFeatureService.Samples.cs b/templates/Features/ToastNotifications/Services/ToastNotificationsFeatureService.Samples.cs index ce47117a3a..eb8a9ad62f 100644 --- a/templates/Features/ToastNotifications/Services/ToastNotificationsFeatureService.Samples.cs +++ b/templates/Features/ToastNotifications/Services/ToastNotificationsFeatureService.Samples.cs @@ -10,7 +10,7 @@ public void ShowToastNotificationSample() // Create the toast content var content = new ToastContent() { - // TODO UWPTemplates: Check this documentation to know more about the Launch property + // TODO WTS: Check this documentation to know more about the Launch property // Documentation: https://developer.microsoft.com/en-us/windows/uwp-community-toolkit/api/microsoft_toolkit_uwp_notifications_toastcontent Launch = "ToastContentActivationParams", @@ -37,7 +37,7 @@ public void ShowToastNotificationSample() { Buttons = { - // TODO UWPTemplates: Check this documentation to know more about Toast Buttons + // TODO WTS: Check this documentation to know more about Toast Buttons // Documentation: https://developer.microsoft.com/en-us/windows/uwp-community-toolkit/api/microsoft_toolkit_uwp_notifications_toastbutton new ToastButton("OK", "ToastButtonActivationArguments") { @@ -52,7 +52,7 @@ public void ShowToastNotificationSample() // Create the toast var toast = new ToastNotification(content.GetXml()) { - // TODO UWPTemplates: Gets or sets the unique identifier of this notification within the notification Group. Max length 16 characters. + // TODO WTS: Gets or sets the unique identifier of this notification within the notification Group. Max length 16 characters. // Documentation: https://docs.microsoft.com/uwp/api/windows.ui.notifications.toastnotification Tag = "ToastTag" }; diff --git a/templates/Features/ToastNotifications/Services/ToastNotificationsFeatureService.cs b/templates/Features/ToastNotifications/Services/ToastNotificationsFeatureService.cs index 86d2f53c43..b0587703a5 100644 --- a/templates/Features/ToastNotifications/Services/ToastNotificationsFeatureService.cs +++ b/templates/Features/ToastNotifications/Services/ToastNotificationsFeatureService.cs @@ -16,7 +16,7 @@ public void ShowToastNotification(ToastNotification toastNotification) protected override async Task HandleInternalAsync(ToastNotificationActivatedEventArgs args) { - // TODO UWPTemplates: Handle activation from toast notification, + // TODO WTS: Handle activation from toast notification, // for more info on handling activation see // Documentation: https://blogs.msdn.microsoft.com/tiles_and_toasts/2015/07/08/quickstart-sending-a-local-toast-notification-and-handling-activations-from-it-windows-10/ diff --git a/templates/Features/WhatsNewPrompt/Views/WhatsNewDialog.xaml.cs b/templates/Features/WhatsNewPrompt/Views/WhatsNewDialog.xaml.cs index f0cdb9b282..26c12e70c0 100644 --- a/templates/Features/WhatsNewPrompt/Views/WhatsNewDialog.xaml.cs +++ b/templates/Features/WhatsNewPrompt/Views/WhatsNewDialog.xaml.cs @@ -6,7 +6,7 @@ public sealed partial class WhatsNewDialog : ContentDialog { public WhatsNewDialog() { - // TODO UWPTemplates: Update the contents of this dialog every time you release a new version of the app + // TODO WTS: Update the contents of this dialog every time you release a new version of the app this.InitializeComponent(); } } diff --git a/templates/Pages/Chart.CodeBehind/Views/ChartViewPage.xaml.cs b/templates/Pages/Chart.CodeBehind/Views/ChartViewPage.xaml.cs index 635ac7db27..29c7fd92c4 100644 --- a/templates/Pages/Chart.CodeBehind/Views/ChartViewPage.xaml.cs +++ b/templates/Pages/Chart.CodeBehind/Views/ChartViewPage.xaml.cs @@ -18,7 +18,7 @@ public ObservableCollection Source { get { - // TODO UWPTemplates: Replace this with your actual data + // TODO WTS: Replace this with your actual data return SampleDataService.GetChartSampleData(); } } diff --git a/templates/Pages/Chart/ViewModels/ChartViewViewModel.cs b/templates/Pages/Chart/ViewModels/ChartViewViewModel.cs index a758078e18..5c8734642a 100644 --- a/templates/Pages/Chart/ViewModels/ChartViewViewModel.cs +++ b/templates/Pages/Chart/ViewModels/ChartViewViewModel.cs @@ -15,7 +15,7 @@ public ObservableCollection Source { get { - // TODO UWPTemplates: Replace this with your actual data + // TODO WTS: Replace this with your actual data return SampleDataService.GetChartSampleData(); } } diff --git a/templates/Pages/Grid.CodeBehind/Views/GridViewPage.xaml.cs b/templates/Pages/Grid.CodeBehind/Views/GridViewPage.xaml.cs index 6621c0eab4..826321020d 100644 --- a/templates/Pages/Grid.CodeBehind/Views/GridViewPage.xaml.cs +++ b/templates/Pages/Grid.CodeBehind/Views/GridViewPage.xaml.cs @@ -8,7 +8,7 @@ namespace Param_ItemNamespace.Views { public sealed partial class GridViewPage : Page, System.ComponentModel.INotifyPropertyChanged { - // TODO UWPTemplates: Change the grid as appropriate to your app. + // TODO WTS: Change the grid as appropriate to your app. // For help see http://docs.telerik.com/windows-universal/controls/raddatagrid/gettingstarted // You may also want to extend the grid to work with the RadDataForm http://docs.telerik.com/windows-universal/controls/raddataform/dataform-gettingstarted public GridViewPage() @@ -20,7 +20,7 @@ public ObservableCollection Source { get { - // TODO UWPTemplates: Replace this with your actual data + // TODO WTS: Replace this with your actual data return SampleDataService.GetGridSampleData(); } } diff --git a/templates/Pages/Grid/ViewModels/GridViewViewModel.cs b/templates/Pages/Grid/ViewModels/GridViewViewModel.cs index 6dc494e23e..9d15c2c5dd 100644 --- a/templates/Pages/Grid/ViewModels/GridViewViewModel.cs +++ b/templates/Pages/Grid/ViewModels/GridViewViewModel.cs @@ -10,7 +10,7 @@ public ObservableCollection Source { get { - // TODO UWPTemplates: Replace this with your actual data + // TODO WTS: Replace this with your actual data return SampleDataService.GetGridSampleData(); } } diff --git a/templates/Pages/Grid/Views/GridViewPage.xaml.cs b/templates/Pages/Grid/Views/GridViewPage.xaml.cs index 00e20c48a5..42cf90b8d3 100644 --- a/templates/Pages/Grid/Views/GridViewPage.xaml.cs +++ b/templates/Pages/Grid/Views/GridViewPage.xaml.cs @@ -5,7 +5,7 @@ namespace Param_ItemNamespace.Views { public sealed partial class GridViewPage : Page { - // TODO UWPTemplates: Change the grid as appropriate to your app. + // TODO WTS: Change the grid as appropriate to your app. // For help see http://docs.telerik.com/windows-universal/controls/raddatagrid/gettingstarted // You may also want to extend the grid to work with the RadDataForm http://docs.telerik.com/windows-universal/controls/raddataform/dataform-gettingstarted public GridViewPage() diff --git a/templates/Pages/Map.CodeBehind/Views/MapPagePage.xaml.cs b/templates/Pages/Map.CodeBehind/Views/MapPagePage.xaml.cs index c0b08d9d84..0724cce6cc 100644 --- a/templates/Pages/Map.CodeBehind/Views/MapPagePage.xaml.cs +++ b/templates/Pages/Map.CodeBehind/Views/MapPagePage.xaml.cs @@ -12,12 +12,12 @@ namespace Param_ItemNamespace.Views { public sealed partial class MapPagePage : Page, System.ComponentModel.INotifyPropertyChanged { - // TODO UWPTemplates: Set your preferred default zoom level + // TODO WTS: Set your preferred default zoom level private const double defaultZoomLevel = 17; private readonly LocationService locationService; - // TODO UWPTemplates: Set your preferred default location if a geolock can't be found. + // TODO WTS: Set your preferred default location if a geolock can't be found. private readonly BasicGeoposition defaultPosition = new BasicGeoposition() { Latitude = 47.609425, @@ -71,7 +71,7 @@ public async Task InitializeAsync() if (mapControl != null) { - // TODO UWPTemplates: Set your map service token. If you don't have it, request at https://www.bingmapsportal.com/ + // TODO WTS: Set your map service token. If you don't have it, request at https://www.bingmapsportal.com/ mapControl.MapServiceToken = ""; AddMapIcon(Center, "Map_YourLocation".GetLocalized()); diff --git a/templates/Pages/Map/ViewModels/MapPageViewModel.cs b/templates/Pages/Map/ViewModels/MapPageViewModel.cs index b732fa9c85..3660f604e7 100644 --- a/templates/Pages/Map/ViewModels/MapPageViewModel.cs +++ b/templates/Pages/Map/ViewModels/MapPageViewModel.cs @@ -12,12 +12,12 @@ namespace Param_ItemNamespace.ViewModels { public class MapPageViewModel : System.ComponentModel.INotifyPropertyChanged { - // TODO UWPTemplates: Set your preferred default zoom level + // TODO WTS: Set your preferred default zoom level private const double defaultZoomLevel = 17; private readonly LocationService locationService; - // TODO UWPTemplates: Set your preferred default location if a geolock can't be found. + // TODO WTS: Set your preferred default location if a geolock can't be found. private readonly BasicGeoposition defaultPosition = new BasicGeoposition() { Latitude = 47.609425, @@ -70,7 +70,7 @@ public async Task InitializeAsync(MapControl map) if (map != null) { - // TODO UWPTemplates: Set your map service token. If you don't have it, request at https://www.bingmapsportal.com/ + // TODO WTS: Set your map service token. If you don't have it, request at https://www.bingmapsportal.com/ map.MapServiceToken = ""; AddMapIcon(map, Center, "Map_YourLocation".GetLocalized()); diff --git a/templates/Pages/MediaPlayer.CodeBehind/Views/MediaPlayerViewPage.xaml.cs b/templates/Pages/MediaPlayer.CodeBehind/Views/MediaPlayerViewPage.xaml.cs index a3355d74ce..2d6fd39736 100644 --- a/templates/Pages/MediaPlayer.CodeBehind/Views/MediaPlayerViewPage.xaml.cs +++ b/templates/Pages/MediaPlayer.CodeBehind/Views/MediaPlayerViewPage.xaml.cs @@ -11,7 +11,7 @@ namespace Param_ItemNamespace.Views { public sealed partial class MediaPlayerViewPage : Page, System.ComponentModel.INotifyPropertyChanged { - // TODO UWPTemplates: Set your video default and image here + // TODO WTS: Set your video default and image here // For more on the MediaPlayer and adjusting controls and behavior see https://docs.microsoft.com/en-us/windows/uwp/controls-and-patterns/media-playback private const string defaultSource = "https://sec.ch9.ms/ch9/db15/43c9fbed-535e-4013-8a4a-a74cc00adb15/C9L12WinTemplateStudio_high.mp4"; // The poster image is displayed until the video is started diff --git a/templates/Pages/MediaPlayer/ViewModels/MediaPlayerViewViewModel.cs b/templates/Pages/MediaPlayer/ViewModels/MediaPlayerViewViewModel.cs index 604fe2fc14..825e580897 100644 --- a/templates/Pages/MediaPlayer/ViewModels/MediaPlayerViewViewModel.cs +++ b/templates/Pages/MediaPlayer/ViewModels/MediaPlayerViewViewModel.cs @@ -7,7 +7,7 @@ namespace Param_ItemNamespace.ViewModels { public class MediaPlayerViewViewModel : System.ComponentModel.INotifyPropertyChanged { - // TODO UWPTemplates: Set your video default and image here + // TODO WTS: Set your video default and image here private const string defaultSource = "https://sec.ch9.ms/ch9/db15/43c9fbed-535e-4013-8a4a-a74cc00adb15/C9L12WinTemplateStudio_high.mp4"; // The poster image is displayed until the video is started private const string defaultPoster = "https://sec.ch9.ms/ch9/db15/43c9fbed-535e-4013-8a4a-a74cc00adb15/C9L12WinTemplateStudio_960.jpg"; diff --git a/templates/Pages/Settings.CodeBehind/Views/SettingsPagePage.xaml.cs b/templates/Pages/Settings.CodeBehind/Views/SettingsPagePage.xaml.cs index 7f25dcfce3..5c2c195a25 100644 --- a/templates/Pages/Settings.CodeBehind/Views/SettingsPagePage.xaml.cs +++ b/templates/Pages/Settings.CodeBehind/Views/SettingsPagePage.xaml.cs @@ -6,8 +6,8 @@ namespace Param_ItemNamespace.Views { public sealed partial class SettingsPagePage : Page, System.ComponentModel.INotifyPropertyChanged { - // TODO UWPTemplates: Add other settings as necessary. For help see https://github.com/Microsoft/WindowsTemplateStudio/blob/master/docs/pages/settings.md - // TODO UWPTemplates: Setup your privacy web in your Resource File, currently set to https://YourPrivacyUrlGoesHere + // TODO WTS: Add other settings as necessary. For help see https://github.com/Microsoft/WindowsTemplateStudio/blob/master/docs/pages/settings.md + // TODO WTS: Setup your privacy web in your Resource File, currently set to https://YourPrivacyUrlGoesHere private bool _isLightThemeEnabled; public bool IsLightThemeEnabled diff --git a/templates/Pages/Settings/ViewModels/SettingsPageViewModel.cs b/templates/Pages/Settings/ViewModels/SettingsPageViewModel.cs index 7d565d92eb..c1fa6e47e2 100644 --- a/templates/Pages/Settings/ViewModels/SettingsPageViewModel.cs +++ b/templates/Pages/Settings/ViewModels/SettingsPageViewModel.cs @@ -7,7 +7,7 @@ namespace Param_ItemNamespace.ViewModels { public class SettingsPageViewModel : System.ComponentModel.INotifyPropertyChanged { - // TODO UWPTemplates: Add other settings as necessary. For help see https://github.com/Microsoft/WindowsTemplateStudio/blob/master/docs/pages/settings.md + // TODO WTS: Add other settings as necessary. For help see https://github.com/Microsoft/WindowsTemplateStudio/blob/master/docs/pages/settings.md private bool _isLightThemeEnabled; public bool IsLightThemeEnabled { diff --git a/templates/Pages/Settings/Views/SettingsPagePage.xaml.cs b/templates/Pages/Settings/Views/SettingsPagePage.xaml.cs index 11733c5f4a..12c1335afe 100644 --- a/templates/Pages/Settings/Views/SettingsPagePage.xaml.cs +++ b/templates/Pages/Settings/Views/SettingsPagePage.xaml.cs @@ -4,7 +4,7 @@ namespace Param_ItemNamespace.Views { public sealed partial class SettingsPagePage : Page { - // TODO UWPTemplates: Setup your privacy web in your Resource File, currently set to https://YourPrivacyUrlGoesHere + // TODO WTS: Setup your privacy web in your Resource File, currently set to https://YourPrivacyUrlGoesHere public SettingsPagePage() { diff --git a/templates/Pages/WebView.CodeBehind/Views/WebViewPagePage.xaml.cs b/templates/Pages/WebView.CodeBehind/Views/WebViewPagePage.xaml.cs index 0169042e51..4227b833d0 100644 --- a/templates/Pages/WebView.CodeBehind/Views/WebViewPagePage.xaml.cs +++ b/templates/Pages/WebView.CodeBehind/Views/WebViewPagePage.xaml.cs @@ -6,7 +6,7 @@ namespace Param_ItemNamespace.Views { public sealed partial class WebViewPagePage : Page, System.ComponentModel.INotifyPropertyChanged { - // TODO UWPTemplates: Set your hyperlink default here + // TODO WTS: Set your hyperlink default here private const string defaultUrl = "https://developer.microsoft.com/en-us/windows/apps"; private Uri _source; diff --git a/templates/Pages/WebView/ViewModels/WebViewPageViewModel.cs b/templates/Pages/WebView/ViewModels/WebViewPageViewModel.cs index 6945947532..2188f0ca97 100644 --- a/templates/Pages/WebView/ViewModels/WebViewPageViewModel.cs +++ b/templates/Pages/WebView/ViewModels/WebViewPageViewModel.cs @@ -7,7 +7,7 @@ namespace Param_ItemNamespace.ViewModels { public class WebViewPageViewModel : System.ComponentModel.INotifyPropertyChanged { - // TODO UWPTemplates: Set your hyperlink default here + // TODO WTS: Set your hyperlink default here private const string defaultUrl = "https://developer.microsoft.com/en-us/windows/apps"; private Uri _source; diff --git a/templates/_composition/CodeBehind/Project.SplitView/Views/ShellPage.xaml.cs b/templates/_composition/CodeBehind/Project.SplitView/Views/ShellPage.xaml.cs index f5ceaca707..dbe97398e8 100644 --- a/templates/_composition/CodeBehind/Project.SplitView/Views/ShellPage.xaml.cs +++ b/templates/_composition/CodeBehind/Project.SplitView/Views/ShellPage.xaml.cs @@ -85,7 +85,7 @@ private void PopulateNavItems() _primaryItems.Clear(); _secondaryItems.Clear(); - // TODO UWPTemplates: Change the symbols for each item as appropriate for your app + // TODO WTS: Change the symbols for each item as appropriate for your app // More on Segoe UI Symbol icons: https://docs.microsoft.com/windows/uwp/style/segoe-ui-symbol-font // Or to use an IconElement instead of a Symbol see https://github.com/Microsoft/WindowsTemplateStudio/blob/master/docs/projectTypes/navigationpane.md // Edit String/en-US/Resources.resw: Add a menu item title for each page diff --git a/templates/_composition/MVVMBasic/Project.SplitView/ViewModels/ShellViewModel.cs b/templates/_composition/MVVMBasic/Project.SplitView/ViewModels/ShellViewModel.cs index 3e5c61a4a5..4752b0fb29 100644 --- a/templates/_composition/MVVMBasic/Project.SplitView/ViewModels/ShellViewModel.cs +++ b/templates/_composition/MVVMBasic/Project.SplitView/ViewModels/ShellViewModel.cs @@ -140,7 +140,7 @@ private void PopulateNavItems() _primaryItems.Clear(); _secondaryItems.Clear(); - // TODO UWPTemplates: Change the symbols for each item as appropriate for your app + // TODO WTS: Change the symbols for each item as appropriate for your app // More on Segoe UI Symbol icons: https://docs.microsoft.com/windows/uwp/style/segoe-ui-symbol-font // Or to use an IconElement instead of a Symbol see https://github.com/Microsoft/WindowsTemplateStudio/blob/master/docs/projectTypes/navigationpane.md // Edit String/en-US/Resources.resw: Add a menu item title for each page diff --git a/templates/_composition/MVVMLight/Project.SplitView/ViewModels/ShellViewModel.cs b/templates/_composition/MVVMLight/Project.SplitView/ViewModels/ShellViewModel.cs index f08d3a5f58..7933bf3477 100644 --- a/templates/_composition/MVVMLight/Project.SplitView/ViewModels/ShellViewModel.cs +++ b/templates/_composition/MVVMLight/Project.SplitView/ViewModels/ShellViewModel.cs @@ -151,7 +151,7 @@ private void PopulateNavItems() _primaryItems.Clear(); _secondaryItems.Clear(); - // TODO UWPTemplates: Change the symbols for each item as appropriate for your app + // TODO WTS: Change the symbols for each item as appropriate for your app // More on Segoe UI Symbol icons: https://docs.microsoft.com/windows/uwp/style/segoe-ui-symbol-font // Or to use an IconElement instead of a Symbol see https://github.com/Microsoft/WindowsTemplateStudio/blob/master/docs/projectTypes/navigationpane.md // Edit String/en-US/Resources.resw: Add a menu item title for each page diff --git a/templates/_composition/_shared/Page.Chart.SampleDataService/Models/DataPoint.cs b/templates/_composition/_shared/Page.Chart.SampleDataService/Models/DataPoint.cs index c5f2ea534c..4acc64e1b5 100644 --- a/templates/_composition/_shared/Page.Chart.SampleDataService/Models/DataPoint.cs +++ b/templates/_composition/_shared/Page.Chart.SampleDataService/Models/DataPoint.cs @@ -2,7 +2,7 @@ namespace Param_ItemNamespace.Models { - // TODO UWPTemplates: This is used by the Sample Chart Data. Remove this once your chart page is displaying real data + // TODO WTS: This is used by the Sample Chart Data. Remove this once your chart page is displaying real data public class DataPoint { public double Value { get; set; } diff --git a/templates/_composition/_shared/Page.Chart.SampleDataService/Services/SampleDataService$wts.ItemName_gpostaction.cs b/templates/_composition/_shared/Page.Chart.SampleDataService/Services/SampleDataService$wts.ItemName_gpostaction.cs index 337b053dd3..78bd9c6f74 100644 --- a/templates/_composition/_shared/Page.Chart.SampleDataService/Services/SampleDataService$wts.ItemName_gpostaction.cs +++ b/templates/_composition/_shared/Page.Chart.SampleDataService/Services/SampleDataService$wts.ItemName_gpostaction.cs @@ -14,7 +14,7 @@ public static class SampleDataService //^^ //{[{ - // TODO UWPTemplates: Remove this once your chart page is displaying real data + // TODO WTS: Remove this once your chart page is displaying real data public static ObservableCollection GetChartSampleData() { var data = AllOrders().Select(o => new DataPoint() { Category = o.Company, Value = o.OrderTotal }) diff --git a/templates/_composition/_shared/Page.Grid.SampleDataService/Services/SampleDataService$wts.ItemName_gpostaction.cs b/templates/_composition/_shared/Page.Grid.SampleDataService/Services/SampleDataService$wts.ItemName_gpostaction.cs index c4317efa8e..2cee325b3f 100644 --- a/templates/_composition/_shared/Page.Grid.SampleDataService/Services/SampleDataService$wts.ItemName_gpostaction.cs +++ b/templates/_composition/_shared/Page.Grid.SampleDataService/Services/SampleDataService$wts.ItemName_gpostaction.cs @@ -9,7 +9,7 @@ public static class SampleDataService //^^ //{[{ - // TODO UWPTemplates: Remove this once your grid page is displaying real data + // TODO WTS: Remove this once your grid page is displaying real data public static ObservableCollection GetGridSampleData() { return new ObservableCollection(AllOrders()); diff --git a/templates/_composition/_shared/Page.MasterDetail.SampleDataService/Services/SampleDataService$wts.ItemName_gpostaction.cs b/templates/_composition/_shared/Page.MasterDetail.SampleDataService/Services/SampleDataService$wts.ItemName_gpostaction.cs index 7e7e2fb40e..b1138ccf8c 100644 --- a/templates/_composition/_shared/Page.MasterDetail.SampleDataService/Services/SampleDataService$wts.ItemName_gpostaction.cs +++ b/templates/_composition/_shared/Page.MasterDetail.SampleDataService/Services/SampleDataService$wts.ItemName_gpostaction.cs @@ -12,7 +12,7 @@ public static class SampleDataService //^^ //{[{ - // TODO UWPTemplates: Remove this once your MasterDetail pages are displaying real data + // TODO WTS: Remove this once your MasterDetail pages are displaying real data public static async Task> GetSampleModelDataAsync() { await Task.CompletedTask;