├── LICENSE.txt ├── OneNoteCloudCreatePagesSample.sln.DotSettings ├── OneNoteCloudCreatePagesSample ├── AccountFlyout.xaml ├── AccountFlyout.xaml.cs ├── App.xaml ├── App.xaml.cs ├── Assets │ ├── DarkGray.png │ ├── LightGray.png │ ├── Logo.jpg │ ├── Logo.png │ ├── MediumGray.png │ ├── SmallLogo.png │ ├── SplashScreen.png │ ├── StoreLogo.png │ └── attachment.pdf ├── Common │ ├── BindableBase.cs │ ├── BooleanNegationConverter.cs │ ├── BooleanToVisibilityConverter.cs │ ├── LayoutAwarePage.cs │ ├── ReadMe.txt │ ├── RichTextColumns.cs │ ├── SettingsFlyout.cs │ ├── StandardStyles.xaml │ └── SuspensionManager.cs ├── CreateExamples.cs ├── DataModel │ └── SampleDataSource.cs ├── MainPage.xaml ├── MainPage.xaml.cs ├── OneNoteServiceCreatePagesSample.csproj ├── Package.appxmanifest ├── PrivacyFlyout.xaml ├── PrivacyFlyout.xaml.cs ├── Properties │ └── AssemblyInfo.cs ├── StandardResponse.cs └── packages.config ├── OneNoteServiceCreatePagesSample.sln └── README.md /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/OneNoteAPISampleWinStore/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /OneNoteCloudCreatePagesSample.sln.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/OneNoteAPISampleWinStore/HEAD/OneNoteCloudCreatePagesSample.sln.DotSettings -------------------------------------------------------------------------------- /OneNoteCloudCreatePagesSample/AccountFlyout.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/OneNoteAPISampleWinStore/HEAD/OneNoteCloudCreatePagesSample/AccountFlyout.xaml -------------------------------------------------------------------------------- /OneNoteCloudCreatePagesSample/AccountFlyout.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/OneNoteAPISampleWinStore/HEAD/OneNoteCloudCreatePagesSample/AccountFlyout.xaml.cs -------------------------------------------------------------------------------- /OneNoteCloudCreatePagesSample/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/OneNoteAPISampleWinStore/HEAD/OneNoteCloudCreatePagesSample/App.xaml -------------------------------------------------------------------------------- /OneNoteCloudCreatePagesSample/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/OneNoteAPISampleWinStore/HEAD/OneNoteCloudCreatePagesSample/App.xaml.cs -------------------------------------------------------------------------------- /OneNoteCloudCreatePagesSample/Assets/DarkGray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/OneNoteAPISampleWinStore/HEAD/OneNoteCloudCreatePagesSample/Assets/DarkGray.png -------------------------------------------------------------------------------- /OneNoteCloudCreatePagesSample/Assets/LightGray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/OneNoteAPISampleWinStore/HEAD/OneNoteCloudCreatePagesSample/Assets/LightGray.png -------------------------------------------------------------------------------- /OneNoteCloudCreatePagesSample/Assets/Logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/OneNoteAPISampleWinStore/HEAD/OneNoteCloudCreatePagesSample/Assets/Logo.jpg -------------------------------------------------------------------------------- /OneNoteCloudCreatePagesSample/Assets/Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/OneNoteAPISampleWinStore/HEAD/OneNoteCloudCreatePagesSample/Assets/Logo.png -------------------------------------------------------------------------------- /OneNoteCloudCreatePagesSample/Assets/MediumGray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/OneNoteAPISampleWinStore/HEAD/OneNoteCloudCreatePagesSample/Assets/MediumGray.png -------------------------------------------------------------------------------- /OneNoteCloudCreatePagesSample/Assets/SmallLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/OneNoteAPISampleWinStore/HEAD/OneNoteCloudCreatePagesSample/Assets/SmallLogo.png -------------------------------------------------------------------------------- /OneNoteCloudCreatePagesSample/Assets/SplashScreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/OneNoteAPISampleWinStore/HEAD/OneNoteCloudCreatePagesSample/Assets/SplashScreen.png -------------------------------------------------------------------------------- /OneNoteCloudCreatePagesSample/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/OneNoteAPISampleWinStore/HEAD/OneNoteCloudCreatePagesSample/Assets/StoreLogo.png -------------------------------------------------------------------------------- /OneNoteCloudCreatePagesSample/Assets/attachment.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/OneNoteAPISampleWinStore/HEAD/OneNoteCloudCreatePagesSample/Assets/attachment.pdf -------------------------------------------------------------------------------- /OneNoteCloudCreatePagesSample/Common/BindableBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/OneNoteAPISampleWinStore/HEAD/OneNoteCloudCreatePagesSample/Common/BindableBase.cs -------------------------------------------------------------------------------- /OneNoteCloudCreatePagesSample/Common/BooleanNegationConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/OneNoteAPISampleWinStore/HEAD/OneNoteCloudCreatePagesSample/Common/BooleanNegationConverter.cs -------------------------------------------------------------------------------- /OneNoteCloudCreatePagesSample/Common/BooleanToVisibilityConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/OneNoteAPISampleWinStore/HEAD/OneNoteCloudCreatePagesSample/Common/BooleanToVisibilityConverter.cs -------------------------------------------------------------------------------- /OneNoteCloudCreatePagesSample/Common/LayoutAwarePage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/OneNoteAPISampleWinStore/HEAD/OneNoteCloudCreatePagesSample/Common/LayoutAwarePage.cs -------------------------------------------------------------------------------- /OneNoteCloudCreatePagesSample/Common/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/OneNoteAPISampleWinStore/HEAD/OneNoteCloudCreatePagesSample/Common/ReadMe.txt -------------------------------------------------------------------------------- /OneNoteCloudCreatePagesSample/Common/RichTextColumns.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/OneNoteAPISampleWinStore/HEAD/OneNoteCloudCreatePagesSample/Common/RichTextColumns.cs -------------------------------------------------------------------------------- /OneNoteCloudCreatePagesSample/Common/SettingsFlyout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/OneNoteAPISampleWinStore/HEAD/OneNoteCloudCreatePagesSample/Common/SettingsFlyout.cs -------------------------------------------------------------------------------- /OneNoteCloudCreatePagesSample/Common/StandardStyles.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/OneNoteAPISampleWinStore/HEAD/OneNoteCloudCreatePagesSample/Common/StandardStyles.xaml -------------------------------------------------------------------------------- /OneNoteCloudCreatePagesSample/Common/SuspensionManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/OneNoteAPISampleWinStore/HEAD/OneNoteCloudCreatePagesSample/Common/SuspensionManager.cs -------------------------------------------------------------------------------- /OneNoteCloudCreatePagesSample/CreateExamples.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/OneNoteAPISampleWinStore/HEAD/OneNoteCloudCreatePagesSample/CreateExamples.cs -------------------------------------------------------------------------------- /OneNoteCloudCreatePagesSample/DataModel/SampleDataSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/OneNoteAPISampleWinStore/HEAD/OneNoteCloudCreatePagesSample/DataModel/SampleDataSource.cs -------------------------------------------------------------------------------- /OneNoteCloudCreatePagesSample/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/OneNoteAPISampleWinStore/HEAD/OneNoteCloudCreatePagesSample/MainPage.xaml -------------------------------------------------------------------------------- /OneNoteCloudCreatePagesSample/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/OneNoteAPISampleWinStore/HEAD/OneNoteCloudCreatePagesSample/MainPage.xaml.cs -------------------------------------------------------------------------------- /OneNoteCloudCreatePagesSample/OneNoteServiceCreatePagesSample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/OneNoteAPISampleWinStore/HEAD/OneNoteCloudCreatePagesSample/OneNoteServiceCreatePagesSample.csproj -------------------------------------------------------------------------------- /OneNoteCloudCreatePagesSample/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/OneNoteAPISampleWinStore/HEAD/OneNoteCloudCreatePagesSample/Package.appxmanifest -------------------------------------------------------------------------------- /OneNoteCloudCreatePagesSample/PrivacyFlyout.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/OneNoteAPISampleWinStore/HEAD/OneNoteCloudCreatePagesSample/PrivacyFlyout.xaml -------------------------------------------------------------------------------- /OneNoteCloudCreatePagesSample/PrivacyFlyout.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/OneNoteAPISampleWinStore/HEAD/OneNoteCloudCreatePagesSample/PrivacyFlyout.xaml.cs -------------------------------------------------------------------------------- /OneNoteCloudCreatePagesSample/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/OneNoteAPISampleWinStore/HEAD/OneNoteCloudCreatePagesSample/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /OneNoteCloudCreatePagesSample/StandardResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/OneNoteAPISampleWinStore/HEAD/OneNoteCloudCreatePagesSample/StandardResponse.cs -------------------------------------------------------------------------------- /OneNoteCloudCreatePagesSample/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/OneNoteAPISampleWinStore/HEAD/OneNoteCloudCreatePagesSample/packages.config -------------------------------------------------------------------------------- /OneNoteServiceCreatePagesSample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/OneNoteAPISampleWinStore/HEAD/OneNoteServiceCreatePagesSample.sln -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneNoteDev/OneNoteAPISampleWinStore/HEAD/README.md --------------------------------------------------------------------------------