From 22c72ddee0f557cb9695719687c07ca087075451 Mon Sep 17 00:00:00 2001 From: Markus Zytek Date: Wed, 17 Dec 2014 15:27:28 +0000 Subject: [PATCH] --- .../Common/ItemClickCommand.cs | 6 +- .../Common/SelectionChangedCommand.cs | 6 +- .../View/GroupedImagesPage.xaml | 7 ++- .../View/NetworkDetailPage.xaml | 2 +- .../View/NetworkRecognizePage.xaml | 2 + .../ViewModel/CreateNetworkPageViewModel.cs | 2 +- .../ViewModel/GroupedImagesPageViewModel.cs | 16 ++++- .../ViewModel/GroupedNetworksPageViewModel.cs | 6 +- .../ViewModel/NetworkDetailPageViewModel.cs | 11 ++++ .../ViewModel/NetworkRecognizeViewModel.cs | 60 ++++++++++++------- 10 files changed, 79 insertions(+), 39 deletions(-) diff --git a/NumberRecognizer/NumberRecognizer.App/Common/ItemClickCommand.cs b/NumberRecognizer/NumberRecognizer.App/Common/ItemClickCommand.cs index 06a93ac..dddfb3f 100644 --- a/NumberRecognizer/NumberRecognizer.App/Common/ItemClickCommand.cs +++ b/NumberRecognizer/NumberRecognizer.App/Common/ItemClickCommand.cs @@ -17,14 +17,14 @@ namespace NumberRecognizer.App.Common public static class ItemClickCommand { /// - /// The command property + /// The command property. /// public static readonly DependencyProperty CommandProperty = DependencyProperty.RegisterAttached("Command", typeof(ICommand), typeof(ItemClickCommand), new PropertyMetadata(null, OnCommandPropertyChanged)); /// /// Sets the command. /// - /// The d. + /// The dependent. /// The value. public static void SetCommand(DependencyObject d, ICommand value) { @@ -44,7 +44,7 @@ public static ICommand GetCommand(DependencyObject d) /// /// Called when [command property changed]. /// - /// The d. + /// The dependent. /// The instance containing the event data. private static void OnCommandPropertyChanged(DependencyObject d, DependencyPropertyChangedEventArgs e) { diff --git a/NumberRecognizer/NumberRecognizer.App/Common/SelectionChangedCommand.cs b/NumberRecognizer/NumberRecognizer.App/Common/SelectionChangedCommand.cs index b8c0c9a..3d3c1cc 100644 --- a/NumberRecognizer/NumberRecognizer.App/Common/SelectionChangedCommand.cs +++ b/NumberRecognizer/NumberRecognizer.App/Common/SelectionChangedCommand.cs @@ -22,14 +22,14 @@ namespace NumberRecognizer.App.Common public static class SelectionChangedCommand { /// - /// The command property + /// The command property. /// public static readonly DependencyProperty CommandProperty = DependencyProperty.RegisterAttached("Command", typeof(ICommand), typeof(SelectionChangedCommand), new PropertyMetadata(null, OnCommandPropertyChanged)); /// /// Sets the command. /// - /// The d. + /// The dependent. /// The value. public static void SetCommand(DependencyObject d, ICommand value) { @@ -49,7 +49,7 @@ public static ICommand GetCommand(DependencyObject d) /// /// Called when [command property changed]. /// - /// The d. + /// The dependent. /// The instance containing the event data. private static void OnCommandPropertyChanged(DependencyObject d, DependencyPropertyChangedEventArgs e) { diff --git a/NumberRecognizer/NumberRecognizer.App/View/GroupedImagesPage.xaml b/NumberRecognizer/NumberRecognizer.App/View/GroupedImagesPage.xaml index af7bbf6..bbfed90 100644 --- a/NumberRecognizer/NumberRecognizer.App/View/GroupedImagesPage.xaml +++ b/NumberRecognizer/NumberRecognizer.App/View/GroupedImagesPage.xaml @@ -24,7 +24,7 @@ Source="{Binding ImageGroups}" IsSourceGrouped="true" ItemsPath="Images"/> - +