├── .gitattributes ├── .gitignore ├── CONTRIBUTING.md ├── CameraImagingRecognition.md ├── DatabindInkCanvas.md ├── FamilyNotes.sln ├── FamilyNotes ├── App.xaml ├── App.xaml.cs ├── AppDialogs │ ├── AddPersonContentDialog.xaml │ ├── AddPersonContentDialog.xaml.cs │ ├── DeleteConfirmationDialog.xaml │ ├── DeleteConfirmationDialog.xaml.cs │ ├── WarningDialog.xaml │ └── WarningDialog.xaml.cs ├── Assets │ ├── FridgeIcon.svg │ ├── NewStoreLogo.scale-100.png │ ├── NewStoreLogo.scale-125.png │ ├── NewStoreLogo.scale-150.png │ ├── NewStoreLogo.scale-200.png │ ├── NewStoreLogo.scale-400.png │ ├── SplashScreen.scale-100.png │ ├── SplashScreen.scale-125.png │ ├── SplashScreen.scale-150.png │ ├── SplashScreen.scale-200.png │ ├── SplashScreen.scale-400.png │ ├── Square150x150Logo.scale-100.png │ ├── Square150x150Logo.scale-125.png │ ├── Square150x150Logo.scale-150.png │ ├── Square150x150Logo.scale-200.png │ ├── Square150x150Logo.scale-400.png │ ├── Square310x310Logo.scale-100.png │ ├── Square310x310Logo.scale-125.png │ ├── Square310x310Logo.scale-150.png │ ├── Square310x310Logo.scale-200.png │ ├── Square310x310Logo.scale-400.png │ ├── Square44x44Logo.scale-100.png │ ├── Square44x44Logo.scale-125.png │ ├── Square44x44Logo.scale-150.png │ ├── Square44x44Logo.scale-200.png │ ├── Square44x44Logo.scale-400.png │ ├── Square44x44Logo.targetsize-16.png │ ├── Square44x44Logo.targetsize-16_altform-unplated.png │ ├── Square44x44Logo.targetsize-24.png │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ ├── Square44x44Logo.targetsize-256.png │ ├── Square44x44Logo.targetsize-256_altform-unplated.png │ ├── Square44x44Logo.targetsize-32.png │ ├── Square44x44Logo.targetsize-32_altform-unplated.png │ ├── Square44x44Logo.targetsize-48.png │ ├── Square44x44Logo.targetsize-48_altform-unplated.png │ ├── Square71x71Logo.scale-100.png │ ├── Square71x71Logo.scale-125.png │ ├── Square71x71Logo.scale-150.png │ ├── Square71x71Logo.scale-200.png │ ├── Square71x71Logo.scale-400.png │ ├── Wide310x150Logo.scale-100.png │ ├── Wide310x150Logo.scale-125.png │ ├── Wide310x150Logo.scale-150.png │ ├── Wide310x150Logo.scale-200.png │ ├── Wide310x150Logo.scale-400.png │ ├── brushed_metal_texture.jpg │ ├── face_1.png │ └── family.png ├── BindableBase.cs ├── Controls │ ├── BindableInkCanvas.cs │ ├── Converters.cs │ ├── InputModeChangedArgs.cs │ ├── Note.xaml │ ├── Note.xaml.cs │ ├── NoteInputMode.cs │ ├── NotesCanvas.cs │ └── NotesPanel.cs ├── FamilyNotes.csproj ├── MainPage.xaml ├── MainPage.xaml.cs ├── Model.cs ├── Package.appxmanifest ├── Person.cs ├── Properties │ ├── AssemblyInfo.cs │ └── Default.rd.xml ├── Settings.cs ├── Speech │ ├── CommandVerb.cs │ ├── PhraseRecognizedEventArgs.cs │ ├── RecognitionMode.cs │ ├── SpeechManager.cs │ ├── SpeechResources.resw │ └── StateChangedEventArgs.cs ├── StickyNote.cs ├── Themes │ └── Generic.xaml ├── UserDetection │ ├── FacialSimilarity.cs │ └── UserPresence.cs └── VoiceCommandObjects │ ├── VoiceCommands.cs │ └── VoiceCommands.xml ├── LICENSE ├── README.md ├── SECURITY.md ├── Screenshots ├── FamilyNotes.PNG ├── FilteredNotes.PNG ├── UnfilteredNotes.PNG ├── Using_Ink_Voice_and_Face_Recognition_in_a_UWP_App_Video.PNG ├── family-notes-21-10-dark.png └── family-notes-21-10-light.png ├── Serialization.md └── Speech.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-familynotes/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-familynotes/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-familynotes/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /CameraImagingRecognition.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-familynotes/HEAD/CameraImagingRecognition.md -------------------------------------------------------------------------------- /DatabindInkCanvas.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-familynotes/HEAD/DatabindInkCanvas.md -------------------------------------------------------------------------------- /FamilyNotes.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-familynotes/HEAD/FamilyNotes.sln -------------------------------------------------------------------------------- /FamilyNotes/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-familynotes/HEAD/FamilyNotes/App.xaml -------------------------------------------------------------------------------- /FamilyNotes/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-familynotes/HEAD/FamilyNotes/App.xaml.cs -------------------------------------------------------------------------------- /FamilyNotes/AppDialogs/AddPersonContentDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-familynotes/HEAD/FamilyNotes/AppDialogs/AddPersonContentDialog.xaml -------------------------------------------------------------------------------- /FamilyNotes/AppDialogs/AddPersonContentDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-familynotes/HEAD/FamilyNotes/AppDialogs/AddPersonContentDialog.xaml.cs -------------------------------------------------------------------------------- /FamilyNotes/AppDialogs/DeleteConfirmationDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-familynotes/HEAD/FamilyNotes/AppDialogs/DeleteConfirmationDialog.xaml -------------------------------------------------------------------------------- /FamilyNotes/AppDialogs/DeleteConfirmationDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-familynotes/HEAD/FamilyNotes/AppDialogs/DeleteConfirmationDialog.xaml.cs -------------------------------------------------------------------------------- /FamilyNotes/AppDialogs/WarningDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-familynotes/HEAD/FamilyNotes/AppDialogs/WarningDialog.xaml -------------------------------------------------------------------------------- /FamilyNotes/AppDialogs/WarningDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-familynotes/HEAD/FamilyNotes/AppDialogs/WarningDialog.xaml.cs -------------------------------------------------------------------------------- /FamilyNotes/Assets/FridgeIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-familynotes/HEAD/FamilyNotes/Assets/FridgeIcon.svg -------------------------------------------------------------------------------- /FamilyNotes/Assets/NewStoreLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-familynotes/HEAD/FamilyNotes/Assets/NewStoreLogo.scale-100.png -------------------------------------------------------------------------------- /FamilyNotes/Assets/NewStoreLogo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-familynotes/HEAD/FamilyNotes/Assets/NewStoreLogo.scale-125.png -------------------------------------------------------------------------------- /FamilyNotes/Assets/NewStoreLogo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-familynotes/HEAD/FamilyNotes/Assets/NewStoreLogo.scale-150.png -------------------------------------------------------------------------------- /FamilyNotes/Assets/NewStoreLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-familynotes/HEAD/FamilyNotes/Assets/NewStoreLogo.scale-200.png -------------------------------------------------------------------------------- /FamilyNotes/Assets/NewStoreLogo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-familynotes/HEAD/FamilyNotes/Assets/NewStoreLogo.scale-400.png -------------------------------------------------------------------------------- /FamilyNotes/Assets/SplashScreen.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-familynotes/HEAD/FamilyNotes/Assets/SplashScreen.scale-100.png -------------------------------------------------------------------------------- /FamilyNotes/Assets/SplashScreen.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-familynotes/HEAD/FamilyNotes/Assets/SplashScreen.scale-125.png -------------------------------------------------------------------------------- /FamilyNotes/Assets/SplashScreen.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-familynotes/HEAD/FamilyNotes/Assets/SplashScreen.scale-150.png -------------------------------------------------------------------------------- /FamilyNotes/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-familynotes/HEAD/FamilyNotes/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /FamilyNotes/Assets/SplashScreen.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-familynotes/HEAD/FamilyNotes/Assets/SplashScreen.scale-400.png -------------------------------------------------------------------------------- /FamilyNotes/Assets/Square150x150Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-familynotes/HEAD/FamilyNotes/Assets/Square150x150Logo.scale-100.png -------------------------------------------------------------------------------- /FamilyNotes/Assets/Square150x150Logo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-familynotes/HEAD/FamilyNotes/Assets/Square150x150Logo.scale-125.png -------------------------------------------------------------------------------- /FamilyNotes/Assets/Square150x150Logo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-familynotes/HEAD/FamilyNotes/Assets/Square150x150Logo.scale-150.png -------------------------------------------------------------------------------- /FamilyNotes/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-familynotes/HEAD/FamilyNotes/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /FamilyNotes/Assets/Square150x150Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-familynotes/HEAD/FamilyNotes/Assets/Square150x150Logo.scale-400.png -------------------------------------------------------------------------------- /FamilyNotes/Assets/Square310x310Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-familynotes/HEAD/FamilyNotes/Assets/Square310x310Logo.scale-100.png -------------------------------------------------------------------------------- /FamilyNotes/Assets/Square310x310Logo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-familynotes/HEAD/FamilyNotes/Assets/Square310x310Logo.scale-125.png -------------------------------------------------------------------------------- /FamilyNotes/Assets/Square310x310Logo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-familynotes/HEAD/FamilyNotes/Assets/Square310x310Logo.scale-150.png -------------------------------------------------------------------------------- /FamilyNotes/Assets/Square310x310Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-familynotes/HEAD/FamilyNotes/Assets/Square310x310Logo.scale-200.png -------------------------------------------------------------------------------- /FamilyNotes/Assets/Square310x310Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-familynotes/HEAD/FamilyNotes/Assets/Square310x310Logo.scale-400.png -------------------------------------------------------------------------------- /FamilyNotes/Assets/Square44x44Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-familynotes/HEAD/FamilyNotes/Assets/Square44x44Logo.scale-100.png -------------------------------------------------------------------------------- /FamilyNotes/Assets/Square44x44Logo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-familynotes/HEAD/FamilyNotes/Assets/Square44x44Logo.scale-125.png -------------------------------------------------------------------------------- /FamilyNotes/Assets/Square44x44Logo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-familynotes/HEAD/FamilyNotes/Assets/Square44x44Logo.scale-150.png -------------------------------------------------------------------------------- /FamilyNotes/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-familynotes/HEAD/FamilyNotes/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /FamilyNotes/Assets/Square44x44Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-familynotes/HEAD/FamilyNotes/Assets/Square44x44Logo.scale-400.png -------------------------------------------------------------------------------- /FamilyNotes/Assets/Square44x44Logo.targetsize-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-familynotes/HEAD/FamilyNotes/Assets/Square44x44Logo.targetsize-16.png -------------------------------------------------------------------------------- /FamilyNotes/Assets/Square44x44Logo.targetsize-16_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-familynotes/HEAD/FamilyNotes/Assets/Square44x44Logo.targetsize-16_altform-unplated.png -------------------------------------------------------------------------------- /FamilyNotes/Assets/Square44x44Logo.targetsize-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-familynotes/HEAD/FamilyNotes/Assets/Square44x44Logo.targetsize-24.png -------------------------------------------------------------------------------- /FamilyNotes/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-familynotes/HEAD/FamilyNotes/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /FamilyNotes/Assets/Square44x44Logo.targetsize-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-familynotes/HEAD/FamilyNotes/Assets/Square44x44Logo.targetsize-256.png -------------------------------------------------------------------------------- /FamilyNotes/Assets/Square44x44Logo.targetsize-256_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-familynotes/HEAD/FamilyNotes/Assets/Square44x44Logo.targetsize-256_altform-unplated.png -------------------------------------------------------------------------------- /FamilyNotes/Assets/Square44x44Logo.targetsize-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-familynotes/HEAD/FamilyNotes/Assets/Square44x44Logo.targetsize-32.png -------------------------------------------------------------------------------- /FamilyNotes/Assets/Square44x44Logo.targetsize-32_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-familynotes/HEAD/FamilyNotes/Assets/Square44x44Logo.targetsize-32_altform-unplated.png -------------------------------------------------------------------------------- /FamilyNotes/Assets/Square44x44Logo.targetsize-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-familynotes/HEAD/FamilyNotes/Assets/Square44x44Logo.targetsize-48.png -------------------------------------------------------------------------------- /FamilyNotes/Assets/Square44x44Logo.targetsize-48_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-familynotes/HEAD/FamilyNotes/Assets/Square44x44Logo.targetsize-48_altform-unplated.png -------------------------------------------------------------------------------- /FamilyNotes/Assets/Square71x71Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-familynotes/HEAD/FamilyNotes/Assets/Square71x71Logo.scale-100.png -------------------------------------------------------------------------------- /FamilyNotes/Assets/Square71x71Logo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-familynotes/HEAD/FamilyNotes/Assets/Square71x71Logo.scale-125.png -------------------------------------------------------------------------------- /FamilyNotes/Assets/Square71x71Logo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-familynotes/HEAD/FamilyNotes/Assets/Square71x71Logo.scale-150.png -------------------------------------------------------------------------------- /FamilyNotes/Assets/Square71x71Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-familynotes/HEAD/FamilyNotes/Assets/Square71x71Logo.scale-200.png -------------------------------------------------------------------------------- /FamilyNotes/Assets/Square71x71Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-familynotes/HEAD/FamilyNotes/Assets/Square71x71Logo.scale-400.png -------------------------------------------------------------------------------- /FamilyNotes/Assets/Wide310x150Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-familynotes/HEAD/FamilyNotes/Assets/Wide310x150Logo.scale-100.png -------------------------------------------------------------------------------- /FamilyNotes/Assets/Wide310x150Logo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-familynotes/HEAD/FamilyNotes/Assets/Wide310x150Logo.scale-125.png -------------------------------------------------------------------------------- /FamilyNotes/Assets/Wide310x150Logo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-familynotes/HEAD/FamilyNotes/Assets/Wide310x150Logo.scale-150.png -------------------------------------------------------------------------------- /FamilyNotes/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-familynotes/HEAD/FamilyNotes/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /FamilyNotes/Assets/Wide310x150Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-familynotes/HEAD/FamilyNotes/Assets/Wide310x150Logo.scale-400.png -------------------------------------------------------------------------------- /FamilyNotes/Assets/brushed_metal_texture.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-familynotes/HEAD/FamilyNotes/Assets/brushed_metal_texture.jpg -------------------------------------------------------------------------------- /FamilyNotes/Assets/face_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-familynotes/HEAD/FamilyNotes/Assets/face_1.png -------------------------------------------------------------------------------- /FamilyNotes/Assets/family.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-familynotes/HEAD/FamilyNotes/Assets/family.png -------------------------------------------------------------------------------- /FamilyNotes/BindableBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-familynotes/HEAD/FamilyNotes/BindableBase.cs -------------------------------------------------------------------------------- /FamilyNotes/Controls/BindableInkCanvas.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-familynotes/HEAD/FamilyNotes/Controls/BindableInkCanvas.cs -------------------------------------------------------------------------------- /FamilyNotes/Controls/Converters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-familynotes/HEAD/FamilyNotes/Controls/Converters.cs -------------------------------------------------------------------------------- /FamilyNotes/Controls/InputModeChangedArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-familynotes/HEAD/FamilyNotes/Controls/InputModeChangedArgs.cs -------------------------------------------------------------------------------- /FamilyNotes/Controls/Note.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-familynotes/HEAD/FamilyNotes/Controls/Note.xaml -------------------------------------------------------------------------------- /FamilyNotes/Controls/Note.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-familynotes/HEAD/FamilyNotes/Controls/Note.xaml.cs -------------------------------------------------------------------------------- /FamilyNotes/Controls/NoteInputMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-familynotes/HEAD/FamilyNotes/Controls/NoteInputMode.cs -------------------------------------------------------------------------------- /FamilyNotes/Controls/NotesCanvas.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-familynotes/HEAD/FamilyNotes/Controls/NotesCanvas.cs -------------------------------------------------------------------------------- /FamilyNotes/Controls/NotesPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-familynotes/HEAD/FamilyNotes/Controls/NotesPanel.cs -------------------------------------------------------------------------------- /FamilyNotes/FamilyNotes.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-familynotes/HEAD/FamilyNotes/FamilyNotes.csproj -------------------------------------------------------------------------------- /FamilyNotes/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-familynotes/HEAD/FamilyNotes/MainPage.xaml -------------------------------------------------------------------------------- /FamilyNotes/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-familynotes/HEAD/FamilyNotes/MainPage.xaml.cs -------------------------------------------------------------------------------- /FamilyNotes/Model.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-familynotes/HEAD/FamilyNotes/Model.cs -------------------------------------------------------------------------------- /FamilyNotes/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-familynotes/HEAD/FamilyNotes/Package.appxmanifest -------------------------------------------------------------------------------- /FamilyNotes/Person.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-familynotes/HEAD/FamilyNotes/Person.cs -------------------------------------------------------------------------------- /FamilyNotes/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-familynotes/HEAD/FamilyNotes/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /FamilyNotes/Properties/Default.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-familynotes/HEAD/FamilyNotes/Properties/Default.rd.xml -------------------------------------------------------------------------------- /FamilyNotes/Settings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-familynotes/HEAD/FamilyNotes/Settings.cs -------------------------------------------------------------------------------- /FamilyNotes/Speech/CommandVerb.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-familynotes/HEAD/FamilyNotes/Speech/CommandVerb.cs -------------------------------------------------------------------------------- /FamilyNotes/Speech/PhraseRecognizedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-familynotes/HEAD/FamilyNotes/Speech/PhraseRecognizedEventArgs.cs -------------------------------------------------------------------------------- /FamilyNotes/Speech/RecognitionMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-familynotes/HEAD/FamilyNotes/Speech/RecognitionMode.cs -------------------------------------------------------------------------------- /FamilyNotes/Speech/SpeechManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-familynotes/HEAD/FamilyNotes/Speech/SpeechManager.cs -------------------------------------------------------------------------------- /FamilyNotes/Speech/SpeechResources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-familynotes/HEAD/FamilyNotes/Speech/SpeechResources.resw -------------------------------------------------------------------------------- /FamilyNotes/Speech/StateChangedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-familynotes/HEAD/FamilyNotes/Speech/StateChangedEventArgs.cs -------------------------------------------------------------------------------- /FamilyNotes/StickyNote.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-familynotes/HEAD/FamilyNotes/StickyNote.cs -------------------------------------------------------------------------------- /FamilyNotes/Themes/Generic.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-familynotes/HEAD/FamilyNotes/Themes/Generic.xaml -------------------------------------------------------------------------------- /FamilyNotes/UserDetection/FacialSimilarity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-familynotes/HEAD/FamilyNotes/UserDetection/FacialSimilarity.cs -------------------------------------------------------------------------------- /FamilyNotes/UserDetection/UserPresence.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-familynotes/HEAD/FamilyNotes/UserDetection/UserPresence.cs -------------------------------------------------------------------------------- /FamilyNotes/VoiceCommandObjects/VoiceCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-familynotes/HEAD/FamilyNotes/VoiceCommandObjects/VoiceCommands.cs -------------------------------------------------------------------------------- /FamilyNotes/VoiceCommandObjects/VoiceCommands.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-familynotes/HEAD/FamilyNotes/VoiceCommandObjects/VoiceCommands.xml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-familynotes/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-familynotes/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-familynotes/HEAD/SECURITY.md -------------------------------------------------------------------------------- /Screenshots/FamilyNotes.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-familynotes/HEAD/Screenshots/FamilyNotes.PNG -------------------------------------------------------------------------------- /Screenshots/FilteredNotes.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-familynotes/HEAD/Screenshots/FilteredNotes.PNG -------------------------------------------------------------------------------- /Screenshots/UnfilteredNotes.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-familynotes/HEAD/Screenshots/UnfilteredNotes.PNG -------------------------------------------------------------------------------- /Screenshots/Using_Ink_Voice_and_Face_Recognition_in_a_UWP_App_Video.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-familynotes/HEAD/Screenshots/Using_Ink_Voice_and_Face_Recognition_in_a_UWP_App_Video.PNG -------------------------------------------------------------------------------- /Screenshots/family-notes-21-10-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-familynotes/HEAD/Screenshots/family-notes-21-10-dark.png -------------------------------------------------------------------------------- /Screenshots/family-notes-21-10-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-familynotes/HEAD/Screenshots/family-notes-21-10-light.png -------------------------------------------------------------------------------- /Serialization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-familynotes/HEAD/Serialization.md -------------------------------------------------------------------------------- /Speech.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-appsample-familynotes/HEAD/Speech.md --------------------------------------------------------------------------------