├── .editorconfig ├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ └── config.yml ├── PULL_REQUEST_TEMPLATE.md └── fabricbot.json ├── .gitignore ├── .runsettings ├── CODE_OF_CONDUCT.md ├── Contributing.md ├── Directory.Build.props ├── Directory.Build.targets ├── GazeInputTest ├── App.xaml ├── App.xaml.cs ├── Assets │ ├── LockScreenLogo.scale-200.png │ ├── SplashScreen.scale-200.png │ ├── Square150x150Logo.scale-200.png │ ├── Square44x44Logo.scale-200.png │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ ├── StoreLogo.png │ └── Wide310x150Logo.scale-200.png ├── GazeInputTest.csproj ├── MainPage.xaml ├── MainPage.xaml.cs ├── Package.appxmanifest └── Properties │ ├── AssemblyInfo.cs │ └── Default.rd.xml ├── License.md ├── Microsoft.Toolkit.Uwp.Connectivity ├── BluetoothLEHelper │ ├── BluetoothLEHelper.cs │ ├── GattConvert.cs │ ├── GattNativeUuid.cs │ ├── GattProtocolErrorParser.cs │ ├── GattUuidsService.cs │ ├── ObservableBluetoothLEDevice.cs │ ├── ObservableGattCharacteristics.cs │ └── ObservableGattDeviceService.cs ├── Microsoft.Toolkit.Uwp.Connectivity.csproj ├── Network │ ├── ConnectionInformation.cs │ ├── ConnectionType.cs │ └── NetworkHelper.cs └── Properties │ └── Microsoft.Toolkit.Uwp.Connectivity.rd.xml ├── Microsoft.Toolkit.Uwp.DeveloperTools ├── AlignmentGrid │ └── AlignmentGrid.cs ├── FocusTracker │ ├── FocusTracker.cs │ └── FocusTracker.xaml ├── Microsoft.Toolkit.Uwp.DeveloperTools.csproj ├── Properties │ └── Microsoft.Toolkit.Uwp.DeveloperTools.rd.xml ├── Themes │ └── Generic.xaml └── VisualStudioToolsManifest.xml ├── Microsoft.Toolkit.Uwp.Input.GazeInteraction ├── ComboBoxItemGazeTargetItem.cs ├── DwellInvokedRoutedEventArgs.cs ├── DwellProgressEventArgs.cs ├── DwellProgressState.cs ├── ExpandCollapsePatternGazeTargetItem.cs ├── GazeCursor.cs ├── GazeElement.cs ├── GazeEventArgs.cs ├── GazeFeedbackPopupFactory.cs ├── GazeFilterArgs.cs ├── GazeHidParsers │ ├── GazeHidParsersHelpers.cs │ ├── GazeHidPosition.cs │ ├── GazeHidPositionParser.cs │ ├── GazeHidPositions.cs │ ├── GazeHidPositionsParser.cs │ └── GazeHidRotationParser.cs ├── GazeHidUsages.cs ├── GazeHistoryItem.cs ├── GazeInput.cs ├── GazePointer.cs ├── GazePointerProxy.cs ├── GazeSettingsHelper.cs ├── GazeStats.cs ├── GazeTargetItem.cs ├── IGazeFilter.cs ├── Interaction.cs ├── InvokePatternGazeTargetItem.cs ├── LowpassFilter.cs ├── Microsoft.Toolkit.Uwp.Input.GazeInteraction.csproj ├── NonInvokeGazeTargetItem.cs ├── NullFilter.cs ├── OneEuroFilter.cs ├── PivotItemGazeTargetItem.cs ├── PointerState.cs ├── SelectionItemPatternGazeTargetItem.cs ├── StateChangedEventArgs.cs └── TogglePatternGazeTargetItem.cs ├── Microsoft.Toolkit.Uwp.Notifications ├── Adaptive │ ├── AdaptiveGroup.cs │ ├── AdaptiveHelper.cs │ ├── AdaptiveImage.cs │ ├── AdaptiveImageEnums.cs │ ├── AdaptiveProgressBar.cs │ ├── AdaptiveProgressBarBindableProperty.cs │ ├── AdaptiveProgressBarValue.cs │ ├── AdaptiveSubgroup.cs │ ├── AdaptiveSubgroupEnums.cs │ ├── AdaptiveText.cs │ ├── AdaptiveTextBindableProperty.cs │ ├── AdaptiveTextEnums.cs │ ├── BaseImageHelper.cs │ ├── BaseTextHelper.cs │ ├── BindableValues │ │ ├── BindableProgressBarValue.cs │ │ └── BindableString.cs │ ├── Elements │ │ ├── Element_AdaptiveGroup.cs │ │ ├── Element_AdaptiveImage.cs │ │ ├── Element_AdaptiveImageEnums.cs │ │ ├── Element_AdaptiveProgressBar.cs │ │ ├── Element_AdaptiveSubgroup.cs │ │ └── Element_AdaptiveText.cs │ ├── IAdaptiveChild.cs │ ├── IAdaptiveSubgroupChild.cs │ ├── IBaseImage.cs │ └── IBaseText.cs ├── Badges │ ├── BadgeGlyphContent.cs │ ├── BadgeGlyphValue.cs │ └── BadgeNumericContent.cs ├── Common │ ├── ArgumentValidator.cs │ ├── BaseElement.cs │ ├── EnumFormatter.cs │ ├── INotificationContent.cs │ ├── LimitedList{T}.cs │ ├── NotificationContentValidationException.cs │ ├── Serialization │ │ ├── IHaveXmlAdditionalProperties.cs │ │ ├── IHaveXmlChildren.cs │ │ ├── IHaveXmlName.cs │ │ ├── IHaveXmlNamedProperties.cs │ │ └── IHaveXmlText.cs │ └── XmlWriterHelper.cs ├── Microsoft.Toolkit.Uwp.Notifications.csproj ├── Microsoft.Toolkit.Uwp.Notifications.nuspec ├── Microsoft.Toolkit.Uwp.Notifications.targets ├── ReadMe.md ├── Tiles │ ├── Builder │ │ ├── TileContentBuilder.SpecialTiles.cs │ │ └── TileContentBuilder.cs │ ├── Elements │ │ ├── Element_Tile.cs │ │ ├── Element_TileBinding.cs │ │ ├── Element_TileVisual.cs │ │ └── TileElementsCommon.cs │ ├── ITileBindingContentAdaptiveChild.cs │ ├── SpecialTemplates │ │ ├── TileBindingContentContact.cs │ │ ├── TileBindingContentIconic.cs │ │ ├── TileBindingContentPeople.cs │ │ └── TileBindingContentPhotos.cs │ ├── TileBackgroundImage.cs │ ├── TileBasicImage.cs │ ├── TileBasicText.cs │ ├── TileBinding.cs │ ├── TileBindingContentAdaptive.cs │ ├── TileBranding.cs │ ├── TileCommon.cs │ ├── TileContent.cs │ ├── TileImages.cs │ ├── TilePeekImage.cs │ ├── TileSizeToAdaptiveTemplateConverter.cs │ ├── TileTemplateNameV3.cs │ ├── TileTextStacking.cs │ └── TileVisual.cs └── Toasts │ ├── Builder │ ├── CustomizeToast.cs │ ├── ToastContentBuilder.Actions.cs │ ├── ToastContentBuilder.Visuals.cs │ └── ToastContentBuilder.cs │ ├── Compat │ ├── Desktop │ │ ├── DesktopBridgeHelpers.cs │ │ ├── DesktopNotificationHistoryCompat.cs │ │ ├── DesktopNotificationManagerCompat.cs │ │ ├── InternalNotificationActivator.cs │ │ ├── ManifestHelper.cs │ │ ├── Native │ │ │ ├── CAppResolver.cs │ │ │ ├── IApplicationResolver.cs │ │ │ ├── IShellItem.cs │ │ │ ├── IShellItemImageFactory.cs │ │ │ ├── NativeMethods.cs │ │ │ ├── SIIGBF.cs │ │ │ └── SIZE.cs │ │ ├── NotificationActivator.cs │ │ ├── NotificationUserInput.cs │ │ ├── OnActivated.cs │ │ ├── ToastNotificationActivatedEventArgsCompat.cs │ │ └── Win32AppInfo.cs │ ├── ToastNotificationHistoryCompat.cs │ ├── ToastNotificationManagerCompat.cs │ └── ToastNotifierCompat.cs │ ├── Elements │ ├── Element_Toast.cs │ ├── Element_ToastAction.cs │ ├── Element_ToastActions.cs │ ├── Element_ToastAudio.cs │ ├── Element_ToastBinding.cs │ ├── Element_ToastHeader.cs │ ├── Element_ToastImage.cs │ ├── Element_ToastInput.cs │ ├── Element_ToastSelection.cs │ ├── Element_ToastText.cs │ ├── Element_ToastVisual.cs │ └── IElement_ToastActivatable.cs │ ├── IToastActions.cs │ ├── IToastActivateableBuilder.cs │ ├── IToastBindingGenericChild.cs │ ├── IToastButton.cs │ ├── IToastInput.cs │ ├── ToastActionsCustom.cs │ ├── ToastActionsSnoozeAndDismiss.cs │ ├── ToastActivationOptions.cs │ ├── ToastArguments.cs │ ├── ToastAudio.cs │ ├── ToastBindingGeneric.cs │ ├── ToastBindingShoulderTap.cs │ ├── ToastButton.cs │ ├── ToastButtonDismiss.cs │ ├── ToastButtonSnooze.cs │ ├── ToastCommon.cs │ ├── ToastContent.cs │ ├── ToastContextMenuItem.cs │ ├── ToastGenericAppLogo.cs │ ├── ToastGenericAppLogoEnums.cs │ ├── ToastGenericAttributionText.cs │ ├── ToastGenericHeroImage.cs │ ├── ToastHeader.cs │ ├── ToastPeople.cs │ ├── ToastSelectionBox.cs │ ├── ToastSelectionBoxItem.cs │ ├── ToastShoulderTapImage.cs │ ├── ToastSpriteSheet.cs │ ├── ToastTextBox.cs │ └── ToastVisual.cs ├── Microsoft.Toolkit.Uwp.SampleApp ├── .editorconfig ├── App.xaml ├── App.xaml.cs ├── Assets │ ├── BrushAssets │ │ ├── NoiseTexture.png │ │ └── TileTexture.png │ ├── Helpers.png │ ├── Llama.mp3 │ ├── NotificationAssets │ │ ├── Cloudy-Square.png │ │ ├── Cloudy.png │ │ ├── Drizzle-Square.png │ │ ├── Drizzle.png │ │ ├── Haze-Square.png │ │ ├── Haze.png │ │ ├── Mostly Cloudy-Background.jpg │ │ ├── Mostly Cloudy-Square.png │ │ ├── Mostly Cloudy.png │ │ ├── SampleLiveTiles.gif │ │ ├── SampleToast.gif │ │ ├── Slight Drizzle-Square.png │ │ ├── Slight Drizzle.png │ │ ├── Snow-Square.png │ │ ├── Snow.png │ │ ├── Sunny-Square.png │ │ ├── Sunny.png │ │ ├── Thunderstorms-Square.png │ │ ├── Thunderstorms.png │ │ ├── WeatherTileLarge.png │ │ ├── WeatherTileMedium.png │ │ ├── WeatherTileSmall.png │ │ ├── WeatherTileWide.png │ │ └── WeatherToast.png │ ├── People │ │ ├── dave.png │ │ ├── david.png │ │ ├── giorgio.png │ │ ├── jeff.png │ │ ├── nikola.png │ │ ├── pete.png │ │ ├── petri.png │ │ ├── shen.png │ │ └── vlad.png │ ├── Photos │ │ ├── Backgrounds │ │ │ └── HERO.jpg │ │ ├── BigFourSummerHeat.jpg │ │ ├── BisonBadlandsChillin.jpg │ │ ├── ColumbiaRiverGorge.jpg │ │ ├── GiantSlabInOregon.jpg │ │ ├── GrandTetons.jpg │ │ ├── ImageExPlaceholder.jpg │ │ ├── LakeAnnMushroom.jpg │ │ ├── LunchBreak.jpg │ │ ├── MilkyWayStHelensHikePurple.jpg │ │ ├── MitchellButtes.jpg │ │ ├── MultnomahFalls.jpg │ │ ├── NorthernCascadesReflection.jpg │ │ ├── NovemberHikeWaterfall.jpg │ │ ├── OnlinePhotos.json │ │ ├── OregonWineryNamaste.jpg │ │ ├── Owl.jpg │ │ ├── PaintedHillsPathway.jpg │ │ ├── Photos.json │ │ ├── RunningDogPacificCity.jpg │ │ ├── ShootingOnAutoOnTheDrone.jpg │ │ ├── SmithnRockDownTheRiverView.jpg │ │ ├── SnowyInterbayt.jpg │ │ ├── SpeedTripleAtristsPoint.jpg │ │ ├── Van.jpg │ │ └── WestSeattleView.jpg │ ├── ToolkitLogo.png │ ├── ToolkitLogoTransparent.png │ ├── UWPCommunityToolkitSampleAppAppList.scale-100.png │ ├── UWPCommunityToolkitSampleAppAppList.scale-125.png │ ├── UWPCommunityToolkitSampleAppAppList.scale-150.png │ ├── UWPCommunityToolkitSampleAppAppList.scale-200.png │ ├── UWPCommunityToolkitSampleAppAppList.scale-400.png │ ├── UWPCommunityToolkitSampleAppAppList.targetsize-16.png │ ├── UWPCommunityToolkitSampleAppAppList.targetsize-16_altform-unplated.png │ ├── UWPCommunityToolkitSampleAppAppList.targetsize-20.png │ ├── UWPCommunityToolkitSampleAppAppList.targetsize-20_altform-unplated.png │ ├── UWPCommunityToolkitSampleAppAppList.targetsize-24.png │ ├── UWPCommunityToolkitSampleAppAppList.targetsize-24_altform-unplated.png │ ├── UWPCommunityToolkitSampleAppAppList.targetsize-256.png │ ├── UWPCommunityToolkitSampleAppAppList.targetsize-256_altform-unplated.png │ ├── UWPCommunityToolkitSampleAppAppList.targetsize-30.png │ ├── UWPCommunityToolkitSampleAppAppList.targetsize-30_altform-unplated.png │ ├── UWPCommunityToolkitSampleAppAppList.targetsize-32.png │ ├── UWPCommunityToolkitSampleAppAppList.targetsize-32_altform-unplated.png │ ├── UWPCommunityToolkitSampleAppAppList.targetsize-36.png │ ├── UWPCommunityToolkitSampleAppAppList.targetsize-36_altform-unplated.png │ ├── UWPCommunityToolkitSampleAppAppList.targetsize-40.png │ ├── UWPCommunityToolkitSampleAppAppList.targetsize-40_altform-unplated.png │ ├── UWPCommunityToolkitSampleAppAppList.targetsize-48.png │ ├── UWPCommunityToolkitSampleAppAppList.targetsize-48_altform-unplated.png │ ├── UWPCommunityToolkitSampleAppAppList.targetsize-60.png │ ├── UWPCommunityToolkitSampleAppAppList.targetsize-60_altform-unplated.png │ ├── UWPCommunityToolkitSampleAppAppList.targetsize-64.png │ ├── UWPCommunityToolkitSampleAppAppList.targetsize-64_altform-unplated.png │ ├── UWPCommunityToolkitSampleAppAppList.targetsize-72.png │ ├── UWPCommunityToolkitSampleAppAppList.targetsize-72_altform-unplated.png │ ├── UWPCommunityToolkitSampleAppAppList.targetsize-80.png │ ├── UWPCommunityToolkitSampleAppAppList.targetsize-80_altform-unplated.png │ ├── UWPCommunityToolkitSampleAppAppList.targetsize-96.png │ ├── UWPCommunityToolkitSampleAppAppList.targetsize-96_altform-unplated.png │ ├── UWPCommunityToolkitSampleAppBadgeLogo.scale-100.png │ ├── UWPCommunityToolkitSampleAppBadgeLogo.scale-125.png │ ├── UWPCommunityToolkitSampleAppBadgeLogo.scale-150.png │ ├── UWPCommunityToolkitSampleAppBadgeLogo.scale-200.png │ ├── UWPCommunityToolkitSampleAppBadgeLogo.scale-400.png │ ├── UWPCommunityToolkitSampleAppLargeTile.scale-100.png │ ├── UWPCommunityToolkitSampleAppLargeTile.scale-125.png │ ├── UWPCommunityToolkitSampleAppLargeTile.scale-150.png │ ├── UWPCommunityToolkitSampleAppLargeTile.scale-200.png │ ├── UWPCommunityToolkitSampleAppLargeTile.scale-400.png │ ├── UWPCommunityToolkitSampleAppMedTile.scale-100.png │ ├── UWPCommunityToolkitSampleAppMedTile.scale-125.png │ ├── UWPCommunityToolkitSampleAppMedTile.scale-150.png │ ├── UWPCommunityToolkitSampleAppMedTile.scale-200.png │ ├── UWPCommunityToolkitSampleAppMedTile.scale-400.png │ ├── UWPCommunityToolkitSampleAppSmallTile.scale-100.png │ ├── UWPCommunityToolkitSampleAppSmallTile.scale-125.png │ ├── UWPCommunityToolkitSampleAppSmallTile.scale-150.png │ ├── UWPCommunityToolkitSampleAppSmallTile.scale-200.png │ ├── UWPCommunityToolkitSampleAppSmallTile.scale-400.png │ ├── UWPCommunityToolkitSampleAppSplashScreen.scale-100.png │ ├── UWPCommunityToolkitSampleAppSplashScreen.scale-125.png │ ├── UWPCommunityToolkitSampleAppSplashScreen.scale-150.png │ ├── UWPCommunityToolkitSampleAppSplashScreen.scale-200.png │ ├── UWPCommunityToolkitSampleAppSplashScreen.scale-400.png │ ├── UWPCommunityToolkitSampleAppStoreLogo.scale-100.png │ ├── UWPCommunityToolkitSampleAppStoreLogo.scale-125.png │ ├── UWPCommunityToolkitSampleAppStoreLogo.scale-150.png │ ├── UWPCommunityToolkitSampleAppStoreLogo.scale-200.png │ ├── UWPCommunityToolkitSampleAppStoreLogo.scale-400.png │ ├── UWPCommunityToolkitSampleAppWideTile.scale-100.png │ ├── UWPCommunityToolkitSampleAppWideTile.scale-125.png │ ├── UWPCommunityToolkitSampleAppWideTile.scale-150.png │ ├── UWPCommunityToolkitSampleAppWideTile.scale-200.png │ ├── UWPCommunityToolkitSampleAppWideTile.scale-400.png │ ├── Wide310x150Logo.scale-400.png │ ├── checker.png │ ├── mslogo.png │ └── mtns.csv ├── Common │ ├── AnalyticsVersionInfoExtensions.cs │ ├── BindableBase.cs │ ├── BoolStringConverter.cs │ ├── Constants.cs │ ├── DelegateCommand.cs │ ├── DelegateCommand{T}.cs │ ├── DoubleTopThicknessConverter.cs │ ├── EnumConverter.cs │ ├── IXamlRenderListener.cs │ ├── SampleCommand.cs │ ├── SolidColorBrushConverter.cs │ ├── TextBlockHyperlinkBehavior.cs │ ├── ThicknessConverter.cs │ ├── TimeSpanConverter.cs │ ├── Tools.cs │ └── Vector3Converter.cs ├── Controls │ ├── CodeRenderer.cs │ ├── CodeRenderer.xaml │ ├── PropertyControl.xaml │ ├── PropertyControl.xaml.cs │ ├── SampleAppMarkdownRenderer.cs │ ├── XamlCodeEditor.xaml │ ├── XamlCodeEditor.xaml.cs │ ├── XamlExceptionRange.cs │ └── XamlRenderService.cs ├── Data │ ├── DataGridDataItem.cs │ ├── DataGridDataSource.cs │ ├── GitHub.cs │ ├── PhotoDataItem.cs │ ├── PhotoDataItemWithDimension.cs │ └── PhotosDataSource.cs ├── Icons │ ├── About.png │ ├── Animations.png │ ├── Brushes.png │ ├── DeveloperTools.png │ ├── Error.png │ ├── Extensions.png │ ├── Foundation.png │ ├── Helpers.png │ ├── Layouts.png │ ├── More.png │ ├── Notifications.png │ └── Services.png ├── Microsoft.Toolkit.Uwp.SampleApp.csproj ├── Microsoft.Toolkit.Uwp.SampleApp_TemporaryKey.pfx ├── MiddleClickScrolling-CursorType.res ├── Models │ ├── Email.cs │ ├── GitHubRelease.cs │ ├── Item.cs │ ├── LandingPageLink.cs │ ├── LandingPageLinks.cs │ ├── LandingPageResource.cs │ ├── Option.cs │ ├── PaneState.cs │ ├── PropertyDescriptor │ │ ├── PropertyDescriptor.cs │ │ ├── PropertyKind.cs │ │ ├── PropertyOptions.cs │ │ ├── SliderPropertyOptions.cs │ │ └── ValueHolder.cs │ ├── Sample.cs │ ├── SampleCategory.cs │ ├── Samples.cs │ └── ThemeChangedArgs.cs ├── Package.appxmanifest ├── Pages │ ├── About.xaml │ ├── About.xaml.cs │ ├── SampleController.xaml │ └── SampleController.xaml.cs ├── Properties │ ├── AssemblyInfo.cs │ └── Default.rd.xml ├── ReadMe.md ├── SamplePages │ ├── AcrylicBrush │ │ ├── AcrylicBrush.png │ │ ├── AcrylicBrushPage.xaml │ │ ├── AcrylicBrushPage.xaml.cs │ │ └── AcrylicBrushXaml.bind │ ├── AdaptiveGridView │ │ ├── AdaptiveGridView.png │ │ ├── AdaptiveGridViewCode.bind │ │ ├── AdaptiveGridViewPage.xaml │ │ └── AdaptiveGridViewPage.xaml.cs │ ├── AdvancedCollectionView │ │ ├── AdvancedCollectionView.bind │ │ ├── AdvancedCollectionView.png │ │ ├── AdvancedCollectionViewPage.xaml │ │ └── AdvancedCollectionViewPage.xaml.cs │ ├── AlignmentGrid │ │ ├── AlignmentGrid.png │ │ ├── AlignmentGridPage.xaml │ │ ├── AlignmentGridPage.xaml.cs │ │ └── AlignmentGridXaml.bind │ ├── Animations │ │ ├── Activities │ │ │ ├── InvokeActionsActivity.bind │ │ │ ├── InvokeActionsActivityCode.bind │ │ │ ├── StartAnimationActivity.bind │ │ │ └── StartAnimationActivityCode.bind │ │ ├── Behaviors │ │ │ ├── BlurBehavior.png │ │ │ ├── BlurBehaviorCode.bind │ │ │ ├── BlurBehaviorXaml.bind │ │ │ ├── OffsetBehavior.png │ │ │ ├── OffsetBehaviorCode.bind │ │ │ ├── OffsetBehaviorXaml.bind │ │ │ ├── RotateBehavior.png │ │ │ ├── RotateBehaviorCode.bind │ │ │ ├── RotateBehaviorXaml.bind │ │ │ ├── SaturationBehavior.png │ │ │ ├── SaturationBehaviorCode.bind │ │ │ ├── SaturationBehaviorXaml.bind │ │ │ ├── ScaleBehavior.png │ │ │ ├── ScaleBehaviorCode.bind │ │ │ └── ScaleBehaviorXaml.bind │ │ ├── Effects │ │ │ ├── EffectAnimations.bind │ │ │ ├── EffectAnimations.png │ │ │ ├── FadeBehavior.png │ │ │ ├── FadeBehaviorCode.bind │ │ │ └── FadeBehaviorXaml.bind │ │ └── Shadows │ │ │ └── AnimatedCardShadowXaml.bind │ ├── AutoFocusBehavior │ │ ├── AutoFocusBehaviorPage.xaml │ │ ├── AutoFocusBehaviorPage.xaml.cs │ │ └── AutoFocusBehaviorXaml.bind │ ├── AutoSelectBehavior │ │ └── AutoSelectBehaviorXaml.bind │ ├── BackdropBlurBrush │ │ ├── BackdropBlurBrush.png │ │ ├── BackdropBlurBrushPage.xaml │ │ ├── BackdropBlurBrushPage.xaml.cs │ │ └── BackdropBlurBrushXaml.bind │ ├── BackdropGammaTransferBrush │ │ ├── BackdropGammaTransferBrush.png │ │ ├── BackdropGammaTransferBrushPage.xaml │ │ ├── BackdropGammaTransferBrushPage.xaml.cs │ │ └── BackdropGammaTransferBrushXaml.bind │ ├── BackdropInvertBrush │ │ ├── BackdropInvertBrush.png │ │ ├── BackdropInvertBrushPage.xaml │ │ ├── BackdropInvertBrushPage.xaml.cs │ │ └── BackdropInvertBrushXaml.bind │ ├── BackdropSaturationBrush │ │ ├── BackdropSaturationBrush.png │ │ ├── BackdropSaturationBrushPage.xaml │ │ ├── BackdropSaturationBrushPage.xaml.cs │ │ └── BackdropSaturationBrushXaml.bind │ ├── BackdropSepiaBrush │ │ ├── BackdropSepiaBrush.png │ │ ├── BackdropSepiaBrushPage.xaml │ │ ├── BackdropSepiaBrushPage.xaml.cs │ │ └── BackdropSepiaBrushXaml.bind │ ├── BackgroundTaskHelper │ │ ├── BackgroundTaskHelper.png │ │ ├── BackgroundTaskHelperCode.bind │ │ ├── BackgroundTaskHelperPage.xaml │ │ ├── BackgroundTaskHelperPage.xaml.cs │ │ └── TestBackgroundTask.cs │ ├── BladeView │ │ ├── BladeCode.bind │ │ ├── BladePage.xaml │ │ ├── BladePage.xaml.cs │ │ └── BladeView.png │ ├── BluetoothLEHelper │ │ ├── BluetoothLEHelper.png │ │ ├── BluetoothLEHelperCode.bind │ │ ├── BluetoothLEHelperPage.xaml │ │ └── BluetoothLEHelperPage.xaml.cs │ ├── CameraHelper │ │ ├── CameraHelper.png │ │ ├── CameraHelperCode.bind │ │ ├── CameraHelperPage.xaml │ │ └── CameraHelperPage.xaml.cs │ ├── CameraPreview │ │ ├── CameraPreview.png │ │ ├── CameraPreviewCode.bind │ │ ├── CameraPreviewPage.xaml │ │ ├── CameraPreviewPage.xaml.cs │ │ └── CameraPreviewXaml.bind │ ├── CanvasPathGeometry │ │ ├── CanvasPathGeometry.png │ │ ├── CanvasPathGeometryPage.xaml │ │ ├── CanvasPathGeometryPage.xaml.cs │ │ └── GeometryStreamReader.cs │ ├── Carousel │ │ ├── Carousel.png │ │ ├── CarouselCode.bind │ │ ├── CarouselPage.xaml │ │ └── CarouselPage.xaml.cs │ ├── ClipToBounds │ │ ├── ClipToBoundsCode.bind │ │ ├── ClipToBoundsPage.xaml │ │ └── ClipToBoundsPage.xaml.cs │ ├── ColorPicker │ │ ├── ColorPicker.png │ │ ├── ColorPickerButtonXaml.bind │ │ └── ColorPickerXaml.bind │ ├── Connected Animations │ │ ├── ConnectedAnimations.png │ │ ├── ConnectedAnimationsCode.bind │ │ ├── ConnectedAnimationsPage.xaml │ │ ├── ConnectedAnimationsPage.xaml.cs │ │ └── Pages │ │ │ ├── FirstPage.xaml │ │ │ ├── FirstPage.xaml.cs │ │ │ ├── SecondPage.xaml │ │ │ ├── SecondPage.xaml.cs │ │ │ ├── ThirdPage.xaml │ │ │ └── ThirdPage.xaml.cs │ ├── DataGrid │ │ ├── DataGrid.png │ │ ├── DataGridCode.bind │ │ ├── DataGridPage.xaml │ │ └── DataGridPage.xaml.cs │ ├── DispatcherQueueHelper │ │ ├── DispatchQueueHelper.png │ │ ├── DispatcherQueueHelperCode.bind │ │ ├── DispatcherQueueHelperPage.xaml │ │ └── DispatcherQueueHelperPage.xaml.cs │ ├── DockPanel │ │ ├── DockPanel.bind │ │ ├── DockPanel.png │ │ ├── DockPanelPage.xaml │ │ └── DockPanelPage.xaml.cs │ ├── EnumValuesExtension │ │ ├── Animal.cs │ │ ├── AnimalToColorConverter.xaml.cs │ │ ├── EnumValuesExtensionCode.bind │ │ ├── EnumValuesExtensionPage.xaml │ │ ├── EnumValuesExtensionPage.xaml.cs │ │ └── EnumValuesExtensionXaml.bind │ ├── Expander │ │ ├── Expander.png │ │ ├── ExpanderPage.xaml │ │ ├── ExpanderPage.xaml.cs │ │ └── ExpanderXaml.bind │ ├── Eyedropper │ │ ├── Eyedropper.png │ │ ├── EyedropperCode.bind │ │ ├── EyedropperPage.xaml │ │ ├── EyedropperPage.xaml.cs │ │ └── EyedropperXaml.bind │ ├── FadeHeader │ │ ├── FadeHeaderBehavior.png │ │ ├── FadeHeaderBehaviorCode.bind │ │ ├── FadeHeaderBehaviorPage.xaml │ │ ├── FadeHeaderBehaviorPage.xaml.cs │ │ └── FadeHeaderBehaviorXaml.bind │ ├── FocusBehavior │ │ ├── FocusBehaviorPage.xaml │ │ ├── FocusBehaviorPage.xaml.cs │ │ └── FocusBehaviorXaml.bind │ ├── FocusTracker │ │ ├── FocusTracker.png │ │ ├── FocusTrackerPage.xaml │ │ ├── FocusTrackerPage.xaml.cs │ │ └── FocusTrackerXaml.bind │ ├── FrameworkElementExtensions │ │ ├── FrameworkElementExtensionsCode.bind │ │ ├── FrameworkElementExtensionsPage.xaml │ │ └── FrameworkElementExtensionsPage.xaml.cs │ ├── GazeInteraction │ │ ├── GazeInteraction.png │ │ ├── GazeInteractionCode.bind │ │ ├── GazeInteractionPage.xaml │ │ ├── GazeInteractionPage.xaml.cs │ │ └── GazeInteractionXaml.bind │ ├── GazeTracing │ │ ├── GazeTracing.png │ │ ├── GazeTracingCode.bind │ │ ├── GazeTracingPage.xaml │ │ ├── GazeTracingPage.xaml.cs │ │ └── GazeTracingXaml.bind │ ├── Graph │ │ ├── LoginButton.png │ │ ├── LoginButtonXaml.bind │ │ ├── PeoplePicker.png │ │ ├── PeoplePickerXaml.bind │ │ ├── PersonView.png │ │ └── PersonViewXaml.bind │ ├── GridSplitter │ │ ├── GridSplitter.bind │ │ ├── GridSplitter.png │ │ ├── GridSplitterPage.xaml │ │ └── GridSplitterPage.xaml.cs │ ├── HeaderedContentControl │ │ ├── HeaderedContentControl.png │ │ ├── HeaderedContentControlPage.xaml │ │ ├── HeaderedContentControlPage.xaml.cs │ │ └── HeaderedContentControlXaml.bind │ ├── HeaderedItemsControl │ │ ├── HeaderedItemsControl.png │ │ ├── HeaderedItemsControlPage.xaml │ │ ├── HeaderedItemsControlPage.xaml.cs │ │ └── HeaderedItemsControlXaml.bind │ ├── IconExtensions │ │ ├── IconExtensionsPage.xaml │ │ ├── IconExtensionsPage.xaml.cs │ │ └── IconExtensionsXaml.bind │ ├── ImageBlendBrush │ │ ├── ImageBlendBrush.png │ │ ├── ImageBlendBrushPage.xaml │ │ ├── ImageBlendBrushPage.xaml.cs │ │ └── ImageBlendBrushXaml.bind │ ├── ImageCache │ │ ├── ImageCache.png │ │ ├── ImageCacheCode.bind │ │ ├── ImageCachePage.xaml │ │ ├── ImageCachePage.xaml.cs │ │ └── ImageCacheXaml.bind │ ├── ImageCropper │ │ ├── AspectRatioConfig.cs │ │ ├── ImageCropper.png │ │ ├── ImageCropperCode.bind │ │ ├── ImageCropperPage.xaml │ │ ├── ImageCropperPage.xaml.cs │ │ └── ImageCropperXaml.bind │ ├── ImageEx │ │ ├── ImageEx.png │ │ ├── ImageExCode.bind │ │ ├── ImageExLazyLoadingControl.xaml │ │ ├── ImageExLazyLoadingControl.xaml.cs │ │ ├── ImageExPage.xaml │ │ └── ImageExPage.xaml.cs │ ├── Implicit Animations │ │ ├── ImplicitAnimations.png │ │ ├── ImplicitAnimationsCode.bind │ │ ├── ImplicitAnimationsPage.xaml │ │ └── ImplicitAnimationsPage.xaml.cs │ ├── InAppNotification │ │ ├── InAppNotification.png │ │ ├── InAppNotificationCode.bind │ │ ├── InAppNotificationPage.xaml │ │ ├── InAppNotificationPage.xaml.cs │ │ └── InAppNotificationXaml.bind │ ├── Incremental Loading Collection │ │ ├── IncrementalLoadingCollectionCode.bind │ │ ├── IncrementalLoadingCollectionPage.xaml │ │ ├── IncrementalLoadingCollectionPage.xaml.cs │ │ ├── PeopleSource.cs │ │ ├── Person.cs │ │ └── icon.png │ ├── InfiniteCanvas │ │ ├── InfiniteCanvas.bind │ │ ├── InfiniteCanvas.png │ │ ├── InfiniteCanvasPage.xaml │ │ └── InfiniteCanvasPage.xaml.cs │ ├── ItemsReorderAnimation │ │ ├── ItemsReorderAnimation.bind │ │ ├── ItemsReorderAnimation.png │ │ ├── ItemsReorderAnimationPage.xaml │ │ └── ItemsReorderAnimationPage.xaml.cs │ ├── KeyDownTriggerBehavior │ │ └── KeyDownTriggerBehaviorXaml.bind │ ├── LayoutTransformControl │ │ ├── LayoutTransformControl.png │ │ ├── LayoutTransformControlPage.xaml │ │ ├── LayoutTransformControlPage.xaml.cs │ │ └── LayoutTransformControlXaml.bind │ ├── ListDetailsView │ │ ├── ListDetailsView.bind │ │ ├── ListDetailsView.png │ │ ├── ListDetailsViewCode.bind │ │ ├── ListDetailsViewPage.cs │ │ ├── ListDetailsViewPage.xaml │ │ └── OneDriveLogo.png │ ├── ListViewExtensions │ │ ├── ListViewExtensionsCode.bind │ │ ├── ListViewExtensionsPage.xaml │ │ ├── ListViewExtensionsPage.xaml.cs │ │ └── ListViewExtensionsXaml.bind │ ├── LiveTile │ │ ├── LiveTile.png │ │ ├── LiveTileCode.bind │ │ ├── LiveTilePage.xaml │ │ └── LiveTilePage.xaml.cs │ ├── Loading │ │ ├── Loading.png │ │ ├── LoadingCode.bind │ │ ├── LoadingPage.xaml │ │ └── LoadingPage.xaml.cs │ ├── MarkdownTextBlock │ │ ├── InitialContent.md │ │ ├── MarkdownTextBlock.bind │ │ ├── MarkdownTextBlock.png │ │ ├── MarkdownTextBlockCode.bind │ │ ├── MarkdownTextBlockPage.xaml │ │ └── MarkdownTextBlockPage.xaml.cs │ ├── Menu │ │ ├── Commands │ │ │ └── VsCommands.cs │ │ ├── Menu.bind │ │ ├── Menu.png │ │ ├── MenuPage.xaml │ │ └── MenuPage.xaml.cs │ ├── MetadataControl │ │ ├── MetadataControl.png │ │ ├── MetadataControlCode.bind │ │ ├── MetadataControlPage.xaml │ │ └── MetadataControlPage.xaml.cs │ ├── Mouse │ │ ├── MouseCursor.png │ │ ├── MouseCursorPage.bind │ │ ├── MouseCursorPage.xaml │ │ └── MouseCursorPage.xaml.cs │ ├── NetworkHelper │ │ ├── NetworkHelper.png │ │ ├── NetworkHelperCode.bind │ │ ├── NetworkHelperPage.xaml │ │ └── NetworkHelperPage.xaml.cs │ ├── Object Storage │ │ ├── ObjectStorage.png │ │ ├── ObjectStorageCode.bind │ │ ├── ObjectStoragePage.xaml │ │ └── ObjectStoragePage.xaml.cs │ ├── ObservableGroup │ │ ├── ObservableGroup.bind │ │ ├── ObservableGroupPage.xaml │ │ └── ObservableGroupPage.xaml.cs │ ├── OnDevice │ │ ├── OnDevice.png │ │ ├── OnDevicePage.xaml │ │ ├── OnDevicePage.xaml.cs │ │ └── OnDeviceXaml.bind │ ├── OrbitView │ │ ├── OrbitView.png │ │ ├── OrbitViewPage.xaml │ │ ├── OrbitViewPage.xaml.cs │ │ └── OrbitViewXaml.bind │ ├── PipelineBrush │ │ ├── PipelineBrush.png │ │ ├── PipelineBrushCode.bind │ │ ├── PipelineBrushPage.xaml │ │ ├── PipelineBrushPage.xaml.cs │ │ └── PipelineBrushXaml.bind │ ├── Primitives │ │ ├── ConstrainedBox.bind │ │ ├── ConstrainedBox.png │ │ ├── SwitchPresenter.bind │ │ └── SwitchPresenter.png │ ├── PrintHelper │ │ ├── PrintHelper.png │ │ ├── PrintHelperCode.bind │ │ ├── PrintHelperPage.xaml │ │ ├── PrintHelperPage.xaml.cs │ │ └── PrintHelperXaml.bind │ ├── RadialGauge │ │ ├── RadialGauge.png │ │ ├── RadialGaugeCode.bind │ │ ├── RadialGaugePage.xaml │ │ └── RadialGaugePage.xaml.cs │ ├── RadialGradientBrush │ │ ├── RadialGradientBrush.png │ │ ├── RadialGradientBrushPage.xaml │ │ ├── RadialGradientBrushPage.xaml.cs │ │ └── RadialGradientBrushXaml.bind │ ├── RadialProgressBar │ │ ├── RadialProgressBar.png │ │ ├── RadialProgressBarCode.bind │ │ ├── RadialProgressBarPage.xaml │ │ └── RadialProgressBarPage.xaml.cs │ ├── RangeSelector │ │ ├── RangeSelector.png │ │ └── RangeSelectorCode.bind │ ├── RemoteDeviceHelper │ │ ├── RemoteDeviceHelper.png │ │ ├── RemoteDeviceHelperCode.bind │ │ ├── RemoteDeviceHelperPage.xaml │ │ └── RemoteDeviceHelperPage.xaml.cs │ ├── RemoteDevicePicker │ │ ├── RemoteDevicePicker.png │ │ ├── RemoteDevicePickerCode.bind │ │ ├── RemoteDevicePickerControlPage.xaml │ │ └── RemoteDevicePickerControlPage.xaml.cs │ ├── RichSuggestBox │ │ ├── RichSuggestBox.png │ │ ├── RichSuggestBoxCode.bind │ │ ├── RichSuggestBoxPage.xaml │ │ ├── RichSuggestBoxPage.xaml.cs │ │ ├── RichSuggestBoxXaml.bind │ │ └── SuggestionTemplateSelector.cs │ ├── RotatorTile │ │ ├── RotatorTile.png │ │ ├── RotatorTileCode.bind │ │ ├── RotatorTilePage.xaml │ │ └── RotatorTilePage.xaml.cs │ ├── ScrollHeader │ │ ├── ScrollHeader.png │ │ ├── ScrollHeaderCode.bind │ │ ├── ScrollHeaderPage.xaml │ │ └── ScrollHeaderPage.xaml.cs │ ├── ScrollViewerExtensions │ │ ├── ScrollViewerExtensionsCode.bind │ │ ├── ScrollViewerExtensionsPage.xaml │ │ ├── ScrollViewerExtensionsPage.xaml.cs │ │ └── ScrollViewerExtensionsXaml.bind │ ├── Shadows │ │ ├── AttachedDropShadowPage.xaml │ │ ├── AttachedDropShadowPage.xaml.cs │ │ ├── AttachedShadowCompositionXaml.bind │ │ ├── AttachedShadowWin2DXaml.bind │ │ ├── DropShadowPanel.png │ │ ├── DropShadowPanelXaml.bind │ │ ├── Trex.png │ │ └── Unicorn.png │ ├── StaggeredLayout │ │ ├── StaggeredLayout.bind │ │ ├── StaggeredLayout.png │ │ ├── StaggeredLayoutPage.xaml │ │ └── StaggeredLayoutPage.xaml.cs │ ├── StaggeredPanel │ │ ├── StaggeredPanel.bind │ │ ├── StaggeredPanel.png │ │ ├── StaggeredPanelPage.xaml │ │ └── StaggeredPanelPage.xaml.cs │ ├── StringExtensions │ │ ├── StringExtensionsPage.xaml │ │ └── StringExtensionsPage.xaml.cs │ ├── SurfaceDialTextbox │ │ ├── SurfaceDialTextbox.png │ │ └── SurfaceDialTextboxCode.bind │ ├── SystemInformation │ │ ├── SystemInformation.png │ │ ├── SystemInformationCode.bind │ │ ├── SystemInformationPage.xaml │ │ └── SystemInformationPage.xaml.cs │ ├── TabbedCommandBar │ │ ├── TabbedCommandBar.bind │ │ └── TabbedCommandBar.png │ ├── TextBoxMask │ │ ├── TextBoxMask.bind │ │ ├── TextBoxMask.png │ │ ├── TextBoxMaskPage.xaml │ │ └── TextBoxMaskPage.xaml.cs │ ├── TextBoxRegex │ │ ├── TextBoxRegex.bind │ │ ├── TextBoxRegex.png │ │ ├── TextBoxRegexPage.xaml │ │ └── TextBoxRegexPage.xaml.cs │ ├── TextToolbar │ │ ├── SampleFormatter.cs │ │ ├── TextToolbar.bind │ │ ├── TextToolbar.png │ │ ├── TextToolbarCode.bind │ │ ├── TextToolbarPage.xaml │ │ └── TextToolbarPage.xaml.cs │ ├── ThemeListener │ │ ├── ThemeListenerPage.xaml │ │ └── ThemeListenerPage.xaml.cs │ ├── TileControl │ │ ├── Animations.png │ │ ├── TileControl.bind │ │ ├── TileControl.png │ │ ├── TileControlPage.xaml │ │ └── TileControlPage.xaml.cs │ ├── TilesBrush │ │ ├── TilesBrush.png │ │ ├── TilesBrushPage.xaml │ │ ├── TilesBrushPage.xaml.cs │ │ └── TilesBrushXaml.bind │ ├── Toast │ │ ├── Toast.png │ │ ├── ToastCode.bind │ │ ├── ToastPage.xaml │ │ └── ToastPage.xaml.cs │ ├── TokenizingTextBox │ │ ├── NameToColorConverter.cs │ │ ├── SampleDataType.cs │ │ ├── SampleEmailDataType.cs │ │ ├── TokenizingTextBox.png │ │ ├── TokenizingTextBoxCode.bind │ │ ├── TokenizingTextBoxPage.xaml │ │ ├── TokenizingTextBoxPage.xaml.cs │ │ └── TokenizingTextBoxXaml.bind │ ├── Triggers │ │ ├── CompareStateTrigger.bind │ │ ├── ControlSizeTrigger.bind │ │ ├── FullScreenModeStateTrigger.bind │ │ ├── FullScreenModeStateTriggerPage.xaml │ │ ├── FullScreenModeStateTriggerPage.xaml.cs │ │ ├── IsEqualStateTrigger.bind │ │ ├── IsNotEqualStateTrigger.bind │ │ ├── IsNullOrEmptyStateTrigger.bind │ │ ├── IsNullOrEmptyStateTriggerPage.xaml │ │ ├── IsNullOrEmptyStateTriggerPage.xaml.cs │ │ ├── NetworkConnectionStateTrigger.bind │ │ ├── RegexStateTrigger.bind │ │ ├── UserHandPreferenceStateTrigger.bind │ │ └── UserInteractionModeStateTrigger.bind │ ├── UniformGrid │ │ ├── UniformGrid.png │ │ ├── UniformGridPage.xaml │ │ ├── UniformGridPage.xaml.cs │ │ └── UniformGridXaml.bind │ ├── ViewExtensions │ │ ├── ViewExtensions.png │ │ ├── ViewExtensionsCode.bind │ │ ├── ViewExtensionsPage.xaml │ │ └── ViewExtensionsPage.xaml.cs │ ├── ViewportBehavior │ │ ├── ViewportBehavior.png │ │ ├── ViewportBehaviorCode.bind │ │ ├── ViewportBehaviorPage.xaml │ │ ├── ViewportBehaviorPage.xaml.cs │ │ └── ViewportBehaviorXaml.bind │ ├── Visual Extensions │ │ ├── VisualExtensions.png │ │ ├── VisualExtensionsCode.bind │ │ ├── VisualExtensionsPage.xaml │ │ └── VisualExtensionsPage.xaml.cs │ ├── VisualEffectFactory │ │ └── VisualEffectFactory.bind │ ├── WeatherLiveTileAndToast │ │ ├── WeatherLiveTileAndToast.png │ │ ├── WeatherLiveTileAndToastCode.bind │ │ ├── WeatherLiveTileAndToastPage.xaml │ │ └── WeatherLiveTileAndToastPage.xaml.cs │ ├── WrapLayout │ │ ├── WrapLayout.bind │ │ ├── WrapLayout.png │ │ ├── WrapLayoutPage.xaml │ │ └── WrapLayoutPage.xaml.cs │ ├── WrapPanel │ │ ├── WrapPanel.bind │ │ ├── WrapPanel.png │ │ ├── WrapPanelPage.xaml │ │ └── WrapPanelPage.xaml.cs │ ├── XamlOnlyPage.xaml │ ├── XamlOnlyPage.xaml.cs │ └── samples.json ├── Shell.SamplePicker.cs ├── Shell.Search.cs ├── Shell.xaml ├── Shell.xaml.cs ├── Styles │ ├── Custom │ │ └── PivotHeaderItemUnderlineStyle.xaml │ ├── Generic.xaml │ ├── GithubIcon.xaml │ ├── ThemeInjector.cs │ └── Themes.xaml ├── TrackingManager.cs └── landingPageLinks.json ├── Microsoft.Toolkit.Uwp.Samples.BackgroundTasks ├── Microsoft.Toolkit.Uwp.Samples.BackgroundTasks.csproj ├── Properties │ └── AssemblyInfo.cs └── TestBackgroundTask.cs ├── Microsoft.Toolkit.Uwp.UI.Animations ├── Builders │ ├── AnimationBuilder.Default.cs │ ├── AnimationBuilder.External.cs │ ├── AnimationBuilder.Factories.cs │ ├── AnimationBuilder.KeyFrames.cs │ ├── AnimationBuilder.PropertyBuilders.cs │ ├── AnimationBuilder.Setup.cs │ ├── AnimationBuilder.cs │ ├── Helpers │ │ └── ListBuilder{T}.cs │ ├── Interfaces │ │ ├── IKeyFrameInfo.cs │ │ ├── INormalizedKeyFrameAnimationBuilder{T}.cs │ │ ├── IPropertyAnimationBuilder{T}.cs │ │ └── ITimedKeyFrameAnimationBuilder{T}.cs │ ├── NormalizedKeyFrameAnimationBuilder{T}.Composition.cs │ ├── NormalizedKeyFrameAnimationBuilder{T}.Xaml.cs │ ├── NormalizedKeyFrameAnimationBuilder{T}.cs │ ├── TimedKeyFrameAnimationBuilder{T}.Composition.cs │ ├── TimedKeyFrameAnimationBuilder{T}.Xaml.cs │ └── TimedKeyFrameAnimationBuilder{T}.cs ├── ConnectedAnimations │ ├── Connected.cs │ ├── ConnectedAnimationHelper.cs │ ├── ConnectedAnimationListProperty.cs │ └── ConnectedAnimationProperties.cs ├── Enums │ ├── Axis.cs │ ├── EasingType.cs │ ├── FrameworkLayer.cs │ ├── Side.cs │ └── VisualProperty.cs ├── Explicit.cs ├── Expressions │ ├── CompositionExtensions.cs │ ├── ExpressionFunctions.cs │ ├── ExpressionNodes │ │ ├── BooleanNode.cs │ │ ├── ColorNode.cs │ │ ├── ExpressionNode.cs │ │ ├── ExpressionNodeType.cs │ │ ├── Matrix3x2Node.cs │ │ ├── Matrix4x4Node.Subchannel.cs │ │ ├── Matrix4x4Node.cs │ │ ├── QuaternionNode.cs │ │ ├── ScalarNode.cs │ │ ├── ValueKeywordKind.cs │ │ ├── Vector2Node.cs │ │ ├── Vector3Node.cs │ │ └── Vector4Node.cs │ ├── ExpressionValues │ │ ├── ExpressionValues.Constant.cs │ │ ├── ExpressionValues.CurrentValue.cs │ │ ├── ExpressionValues.Reference.cs │ │ ├── ExpressionValues.StartingValue.cs │ │ └── ExpressionValues.Target.cs │ ├── OperationType.cs │ └── ReferenceNodes │ │ ├── AmbientLightReferenceNode.cs │ │ ├── ColorBrushReferenceNode.cs │ │ ├── DistantLightReferenceNode.cs │ │ ├── DropShadowReferenceNode.cs │ │ ├── InsetClipReferenceNode.cs │ │ ├── InteractionTrackerReferenceNode.cs │ │ ├── ManipulationPropertySetReferenceNode.cs │ │ ├── NineGridBrushReferenceNode.cs │ │ ├── PointLightReferenceNode.cs │ │ ├── PointerPositionPropertySetReferenceNode.cs │ │ ├── PropertySetReferenceNode.cs │ │ ├── ReferenceNode.cs │ │ ├── SpotLightReferenceNode.cs │ │ ├── SurfaceBrushReferenceNode.cs │ │ └── VisualReferenceNode.cs ├── Extensions │ ├── AnimationExtensions.cs │ ├── CompositionObjectExtensions.cs │ ├── CompositorExtensions.cs │ ├── DependencyObjectExtensions.cs │ ├── EasingTypeExtensions.cs │ ├── ITimedKeyFrameAnimationBuilderExtensions.cs │ ├── ScrollViewerExtensions.cs │ ├── StoryboardAnimations.cs │ └── System │ │ ├── FloatExtensions.cs │ │ └── GuidExtensions.cs ├── Implicit.cs ├── ItemsReorderAnimation.cs ├── Microsoft.Toolkit.Uwp.UI.Animations.csproj ├── Options │ └── RepeatOption.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── IsExternalInit.cs │ ├── Microsoft.Toolkit.Uwp.UI.Animations.rd.xml │ └── SkipLocalsInitAttribute.cs └── Xaml │ ├── Abstract │ ├── Animation.cs │ ├── Animation{TValue,TKeyFrame}.cs │ ├── CustomAnimation{TValue,TKeyFrame}.cs │ ├── ImplicitAnimation{TValue,TKeyFrame}.cs │ ├── KeyFrame{TValue,TKeyFrame}.cs │ └── ShadowAnimation{TValue,TKeyFrame}.cs │ ├── Activities │ ├── Activity.cs │ ├── StartAnimationActivity.cs │ └── StopAnimationActivity.cs │ ├── AnimationDictionary.cs │ ├── AnimationScope.cs │ ├── AnimationSet.cs │ ├── Custom │ ├── ColorAnimation.cs │ ├── QuaternionAnimation.cs │ ├── ScalarAnimation.cs │ ├── Vector2Animation.cs │ ├── Vector3Animation.cs │ └── Vector4Animation.cs │ ├── Default │ ├── AnchorPointAnimation.cs │ ├── CenterPointAnimation.cs │ ├── ClipAnimation.cs │ ├── OffsetAnimation.cs │ ├── OpacityAnimation.cs │ ├── OrientationAnimation.cs │ ├── RotationAnimation.cs │ ├── RotationAxisAnimation.cs │ ├── RotationInDegreesAnimation.cs │ ├── ScaleAnimation.cs │ ├── SizeAnimation.cs │ └── TranslationAnimation.cs │ ├── ImplicitAnimationSet.cs │ ├── Interfaces │ ├── IActivity.cs │ ├── IAttachedTimeline.cs │ ├── IImplicitTimeline.cs │ ├── IKeyFrame{T}.cs │ └── ITimeline.cs │ ├── KeyFrames │ ├── ColorKeyFrame.cs │ ├── QuaternionKeyFrame.cs │ ├── ScalarKeyFrame.cs │ ├── Vector2KeyFrame.cs │ ├── Vector3KeyFrame.cs │ └── Vector4KeyFrame.cs │ └── Shadows │ ├── BlurRadiusDropShadowAnimation.cs │ ├── ColorDropShadowAnimation.cs │ ├── OffsetDropShadowAnimation.cs │ └── OpacityDropShadowAnimation.cs ├── Microsoft.Toolkit.Uwp.UI.Behaviors ├── Animations │ ├── AnimationCompletedTriggerBehavior.cs │ ├── AnimationStartedTriggerBehavior.cs │ ├── InvokeActionsActivity.cs │ ├── StartAnimationAction.cs │ └── StopAnimationAction.cs ├── ApiInformationHelper.cs ├── BehaviorBase.cs ├── Focus │ ├── AutoFocusBehavior.cs │ └── FocusBehavior.cs ├── Headers │ ├── FadeHeaderBehavior.cs │ ├── QuickReturnHeaderBehavior.cs │ └── StickyHeaderBehavior.cs ├── Keyboard │ └── KeyDownTriggerBehavior.cs ├── Microsoft.Toolkit.Uwp.UI.Behaviors.csproj ├── Properties │ └── Microsoft.Toolkit.Uwp.UI.Behaviors.rd.xml ├── Select │ └── AutoSelectBehavior.cs └── Viewport │ ├── ViewportBehavior.Properties.cs │ └── ViewportBehavior.cs ├── Microsoft.Toolkit.Uwp.UI.Controls.Core.Design ├── Common │ ├── Constants.cs │ ├── MetadataRegistration.cs │ ├── MetadataRegistrationBase.cs │ └── PlatformTypes.cs ├── Controls │ ├── DropShadowPanel.Metadata.cs │ ├── DropShadowPanel.Typedata.cs │ ├── ImageEx.Metadata.cs │ ├── ImageEx.Typedata.cs │ ├── InAppNotification.Metadata.cs │ ├── InAppNotification.Typedata.cs │ ├── Loading.Metadata.cs │ ├── Loading.Typedata.cs │ ├── Menu.Metadata.cs │ ├── Menu.Typedata.cs │ ├── MenuItem.Metadata.cs │ ├── MenuItem.Typedata.cs │ ├── RadialProgressBar.Metadata.cs │ ├── RadialProgressBar.Typedata.cs │ ├── RotatorTile.Metadata.cs │ ├── RotatorTile.Typedata.cs │ ├── ScrollHeader.Metadata.cs │ ├── ScrollHeader.Typedata.cs │ ├── TabbedCommandBar.Metadata.cs │ ├── TabbedCommandBar.Typedata.cs │ ├── TabbedCommandBarItem.Metadata.cs │ ├── TabbedCommandBarItem.Typedata.cs │ ├── TextToolbar.Metadata.cs │ ├── TextToolbar.Typedata.cs │ ├── TileControl.Metadata.cs │ └── TileControl.Typedata.cs ├── Icons │ ├── Menu.icon.png │ └── RotatorTile.icon.png ├── Microsoft.Toolkit.Uwp.UI.Controls.Core.DesignTools.csproj └── Properties │ ├── Resources.Designer.cs │ └── Resources.resx ├── Microsoft.Toolkit.Uwp.UI.Controls.Core ├── CameraPreview │ ├── CameraPreview.Constants.cs │ ├── CameraPreview.Events.cs │ ├── CameraPreview.Properties.cs │ ├── CameraPreview.cs │ ├── CameraPreview.xaml │ └── PreviewFailedEventArgs.cs ├── ControlHelpers.Composition.cs ├── ControlHelpers.Math.cs ├── ControlHelpers.XamlHost.cs ├── DropShadowPanel │ ├── DropShadowPanel.Properties.cs │ ├── DropShadowPanel.cs │ └── DropShadowPanel.xaml ├── ImageEx │ ├── ImageEx.Members.cs │ ├── ImageEx.cs │ ├── ImageEx.xaml │ ├── ImageExBase.Members.cs │ ├── ImageExBase.Placeholder.cs │ ├── ImageExBase.Source.cs │ ├── ImageExBase.cs │ ├── ImageExFailedEventArgs.cs │ └── ImageExOpenedEventArgs.cs ├── InAppNotification │ ├── InAppNotification.AttachedProperties.cs │ ├── InAppNotification.Constants.cs │ ├── InAppNotification.Events.cs │ ├── InAppNotification.Properties.cs │ ├── InAppNotification.cs │ ├── InAppNotification.xaml │ ├── InAppNotificationClosedEventArgs.cs │ ├── InAppNotificationClosingEventArgs.cs │ ├── InAppNotificationDismissKind.cs │ ├── InAppNotificationOpeningEventArgs.cs │ ├── NotificationOptions.cs │ ├── StackMode.cs │ └── Styles │ │ ├── MSEdgeNotificationStyle.xaml │ │ └── VSCodeNotificationStyle.xaml ├── InlineCollectionWrapper.cs ├── Loading │ ├── Loading.Properties.cs │ ├── Loading.cs │ └── Loading.xaml ├── Menu │ ├── Menu.Events.cs │ ├── Menu.Extensions.cs │ ├── Menu.Logic.cs │ ├── Menu.cs │ ├── Menu.xaml │ ├── MenuItem.cs │ └── MenuItem.xaml ├── MetadataControl │ ├── MetadataControl.cs │ ├── MetadataControl.xaml │ └── MetadataItem.cs ├── Microsoft.Toolkit.Uwp.UI.Controls.Core.csproj ├── Properties │ └── AssemblyInfo.cs ├── RadialProgressBar │ ├── RadialProgressBar.cs │ └── RadialProgressBar.xaml ├── RotatorTile │ ├── RotatorTile.cs │ └── RotatorTile.xaml ├── Strings │ └── en-US │ │ └── Resources.resw ├── TabbedCommandBar │ ├── TabbedCommandBar.cs │ ├── TabbedCommandBar.xaml │ ├── TabbedCommandBarItem.cs │ ├── TabbedCommandBarItem.xaml │ └── TabbedCommandBarItemTemplateSelector.cs ├── TextToolbar │ ├── EditorChangedArgs.cs │ ├── Formats │ │ ├── ButtonActions.cs │ │ ├── Formatter.cs │ │ └── RichText │ │ │ ├── RichTextButtonActions.cs │ │ │ └── RichTextFormatter.cs │ ├── ShortcutKeyRequestArgs.cs │ ├── Symbols │ │ ├── List.cs │ │ ├── NumberedList.cs │ │ ├── Symbol.cs │ │ └── Symbols.xaml │ ├── TextToolbar.Events.cs │ ├── TextToolbar.Methods.cs │ ├── TextToolbar.Properties.cs │ ├── TextToolbar.cs │ ├── TextToolbar.xaml │ └── ToolbarItems │ │ ├── ButtonMap.cs │ │ ├── ButtonType.cs │ │ ├── Common │ │ ├── CommonButtons.Events.cs │ │ └── CommonButtons.cs │ │ ├── DefaultButton.cs │ │ ├── DefaultButtonModificationList.cs │ │ ├── IToolbarItem.cs │ │ ├── ToolbarButton.cs │ │ ├── ToolbarButton.xaml │ │ ├── ToolbarSeparator.cs │ │ └── ToolbarSeparator.xaml ├── Themes │ └── Generic.xaml ├── TileControl │ ├── ImageAlignment.cs │ ├── ScrollOrientation.cs │ ├── TileControl.Properties.cs │ ├── TileControl.cs │ └── TileControl.xaml └── VisualStudioToolsManifest.xml ├── Microsoft.Toolkit.Uwp.UI.Controls.DataGrid.Design ├── Controls │ ├── DataGrid.Metadata.cs │ └── DataGrid.Typedata.cs ├── Microsoft.Toolkit.Uwp.UI.Controls.DataGrid.DesignTools.csproj └── Properties │ ├── Resources.Designer.cs │ └── Resources.resx ├── Microsoft.Toolkit.Uwp.UI.Controls.DataGrid ├── CollectionViews │ ├── CollectionView.cs │ ├── CollectionViewsError.cs │ ├── EnumerableCollectionView.cs │ └── ListCollectionView.cs ├── DataGrid │ ├── Automation │ │ ├── DataGridAutomationPeer.cs │ │ ├── DataGridCellAutomationPeer.cs │ │ ├── DataGridColumnHeaderAutomationPeer.cs │ │ ├── DataGridColumnHeadersPresenterAutomationPeer.cs │ │ ├── DataGridDetailsPresenterAutomationPeer.cs │ │ ├── DataGridGroupItemAutomationPeer.cs │ │ ├── DataGridItemAutomationPeer.cs │ │ ├── DataGridRowAutomationPeer.cs │ │ ├── DataGridRowGroupHeaderAutomationPeer.cs │ │ ├── DataGridRowHeaderAutomationPeer.cs │ │ └── DataGridRowsPresenterAutomationPeer.cs │ ├── DataGrid.cs │ ├── DataGrid.xaml │ ├── DataGridAutoGeneratingColumnEventArgs.cs │ ├── DataGridBeginningEditEventArgs.cs │ ├── DataGridBoundColumn.cs │ ├── DataGridCell.cs │ ├── DataGridCellCollection.cs │ ├── DataGridCellCoordinates.cs │ ├── DataGridCellEditEndedEventArgs.cs │ ├── DataGridCellEditEndingEventArgs.cs │ ├── DataGridCellEventArgs.cs │ ├── DataGridCellsPresenter.cs │ ├── DataGridCheckBoxColumn.cs │ ├── DataGridClipboardCellContent.cs │ ├── DataGridColumn.cs │ ├── DataGridColumnCollection.cs │ ├── DataGridColumnEventArgs.cs │ ├── DataGridColumnHeader.cs │ ├── DataGridColumnHeaderInteractionInfo.cs │ ├── DataGridColumnHeadersPresenter.cs │ ├── DataGridColumnReorderingEventArgs.cs │ ├── DataGridColumns.cs │ ├── DataGridComboBoxColumn.cs │ ├── DataGridDataConnection.cs │ ├── DataGridDetailsPresenter.cs │ ├── DataGridDisplayData.cs │ ├── DataGridEnumerations.cs │ ├── DataGridError.cs │ ├── DataGridFillerColumn.cs │ ├── DataGridFrozenGrid.cs │ ├── DataGridInteractionInfo.cs │ ├── DataGridLength.cs │ ├── DataGridPreparingCellForEditEventArgs.cs │ ├── DataGridRow.cs │ ├── DataGridRowClipboardEventArgs.cs │ ├── DataGridRowDetailsEventArgs.cs │ ├── DataGridRowEditEndedEventArgs.cs │ ├── DataGridRowEditEndingEventArgs.cs │ ├── DataGridRowEventArgs.cs │ ├── DataGridRowGroupHeader.cs │ ├── DataGridRowGroupHeaderEventArgs.cs │ ├── DataGridRowGroupInfo.cs │ ├── DataGridRowHeader.cs │ ├── DataGridRows.cs │ ├── DataGridRowsPresenter.cs │ ├── DataGridSelectedItemsCollection.cs │ ├── DataGridTemplateColumn.cs │ ├── DataGridTextColumn.cs │ └── DataGridValueConverter.cs ├── Microsoft.Toolkit.Uwp.UI.Controls.DataGrid.csproj ├── Properties │ ├── AssemblyInfo.cs │ ├── Microsoft.Toolkit.Uwp.UI.Controls.DataGrid.rd.xml │ ├── Resources.Designer.cs │ └── Resources.resx ├── Themes │ └── Generic.xaml ├── Utilities │ ├── BindingInfo.cs │ ├── DoubleUtil.cs │ ├── Extensions.cs │ ├── IndexToValueTable.cs │ ├── KeyboardHelper.cs │ ├── Range.cs │ ├── TypeHelper.cs │ ├── UISettingsHelper.cs │ ├── ValidationUtil.cs │ ├── VisualStates.cs │ └── WeakEventListener.cs └── VisualStudioToolsManifest.xml ├── Microsoft.Toolkit.Uwp.UI.Controls.Input.Design ├── Controls │ ├── RadialGauge.Metadata.cs │ ├── RadialGauge.Typedata.cs │ ├── RangeSelector.Metadata.cs │ ├── RangeSelector.Typedata.cs │ ├── RichSuggestBox.Metadata.cs │ └── RichSuggestBox.Typedata.cs ├── Microsoft.Toolkit.Uwp.UI.Controls.Input.DesignTools.csproj └── Properties │ ├── Resources.Designer.cs │ └── Resources.resx ├── Microsoft.Toolkit.Uwp.UI.Controls.Input ├── ColorPicker │ ├── ColorChannel.cs │ ├── ColorPicker.Properties.cs │ ├── ColorPicker.cs │ ├── ColorPicker.xaml │ ├── ColorPickerButton.cs │ ├── ColorPickerButton.xaml │ ├── ColorPickerRenderingHelpers.cs │ ├── ColorPickerSlider.Properties.cs │ ├── ColorPickerSlider.cs │ ├── ColorPickerSlider.xaml │ ├── ColorRepresentation.cs │ ├── ColorToColorShadeConverter.cs │ ├── ColorToHexConverter.cs │ ├── ColorToSelectedValueConverter.cs │ ├── ContrastBrushConverter.cs │ ├── FluentColorPalette.cs │ └── IColorPalette.cs ├── Microsoft.Toolkit.Uwp.UI.Controls.Input.csproj ├── Properties │ └── AssemblyInfo.cs ├── RadialGauge │ ├── RadialGauge.cs │ ├── RadialGauge.xaml │ └── RadialGaugeAutomationPeer.cs ├── RangeSelector │ ├── RangeChangedEventArgs.cs │ ├── RangeSelector.Events.cs │ ├── RangeSelector.Input.Drag.cs │ ├── RangeSelector.Input.Key.cs │ ├── RangeSelector.Input.Pointer.cs │ ├── RangeSelector.Properties.cs │ ├── RangeSelector.cs │ └── RangeSelector.xaml ├── RemoteDevicePicker │ ├── RemoteDevicePicker.cs │ ├── RemoteDevicePicker.xaml │ ├── RemoteDeviceSelectionMode.cs │ └── RemoteSystemKindToSymbolConverter.cs ├── RichSuggestBox │ ├── RichSuggestBox.Document.cs │ ├── RichSuggestBox.Events.cs │ ├── RichSuggestBox.Helpers.cs │ ├── RichSuggestBox.Properties.cs │ ├── RichSuggestBox.Suggestion.cs │ ├── RichSuggestBox.cs │ ├── RichSuggestBox.xaml │ ├── RichSuggestQuery.cs │ ├── RichSuggestToken.cs │ ├── RichSuggestTokenPointerOverEventArgs.cs │ ├── RichSuggestTokenSelectedEventArgs.cs │ ├── SuggestionChosenEventArgs.cs │ ├── SuggestionPopupPlacementMode.cs │ └── SuggestionRequestedEventArgs.cs ├── Strings │ └── en-US │ │ └── Resources.resw ├── Themes │ └── Generic.xaml ├── TokenizingTextBox │ ├── ITokenStringContainer.cs │ ├── InterspersedObservableCollection.cs │ ├── PretokenStringContainer.cs │ ├── TokenItemAddingEventArgs.cs │ ├── TokenItemRemovingEventArgs.cs │ ├── TokenizingTextBox.Events.cs │ ├── TokenizingTextBox.Properties.cs │ ├── TokenizingTextBox.Selection.cs │ ├── TokenizingTextBox.cs │ ├── TokenizingTextBox.xaml │ ├── TokenizingTextBoxAutomationPeer.cs │ ├── TokenizingTextBoxItem.AutoSuggestBox.cs │ ├── TokenizingTextBoxItem.AutoSuggestBox.xaml │ ├── TokenizingTextBoxItem.Token.xaml │ ├── TokenizingTextBoxItem.cs │ └── TokenizingTextBoxStyleSelector.cs └── VisualStudioToolsManifest.xml ├── Microsoft.Toolkit.Uwp.UI.Controls.Layout.Design ├── Controls │ ├── BladeItem.Metadata.cs │ ├── BladeItem.Typedata.cs │ ├── BladeView.Metadata.cs │ ├── BladeView.Typedata.cs │ ├── Carousel.Metadata.cs │ ├── Carousel.Typedata.cs │ ├── Expander.Metadata.cs │ ├── Expander.Typedata.cs │ ├── GridSplitter.Metadata.cs │ ├── GridSplitter.Typedata.cs │ ├── LayoutTransitionControl.Metadata.cs │ ├── LayoutTransitionControl.Typedata.cs │ ├── ListDetailsView.Metadata.cs │ ├── ListDetailsView.Typedata.cs │ ├── OrbitView.Metadata.cs │ └── OrbitView.Typedata.cs ├── Microsoft.Toolkit.Uwp.UI.Controls.Layout.DesignTools.csproj └── Properties │ ├── Resources.Designer.cs │ └── Resources.resx ├── Microsoft.Toolkit.Uwp.UI.Controls.Layout ├── BladeView │ ├── BladeItem.Events.cs │ ├── BladeItem.Properties.cs │ ├── BladeItem.cs │ ├── BladeItemAutomationPeer.cs │ ├── BladeMode.cs │ ├── BladeView.Events.cs │ ├── BladeView.Properties.cs │ ├── BladeView.cs │ ├── BladeView.xaml │ └── BladeViewAutomationPeer.cs ├── Carousel │ ├── Carousel.cs │ ├── Carousel.xaml │ ├── CarouselAutomationPeer.cs │ ├── CarouselItem.cs │ ├── CarouselItemAutomationPeer.cs │ └── CarouselPanel.cs ├── Expander │ ├── ExpandDirection.cs │ ├── Expander.Constants.cs │ ├── Expander.Events.cs │ ├── Expander.Properties.cs │ ├── Expander.cs │ ├── Expander.xaml │ └── ExpanderAutomationPeer.cs ├── GridSplitter │ ├── GridSplitter.Data.cs │ ├── GridSplitter.Events.cs │ ├── GridSplitter.Helper.cs │ ├── GridSplitter.Options.cs │ ├── GridSplitter.cs │ ├── GridSplitter.xaml │ └── GripperHoverWrapper.cs ├── HeaderedContentControl │ ├── HeaderedContentControl.cs │ └── HeaderedContentControl.xaml ├── HeaderedItemsControl │ ├── HeaderedItemsControl.cs │ └── HeaderedItemsControl.xaml ├── LayoutTransformControl │ ├── LayoutTransformControl.Properties.cs │ ├── LayoutTransformControl.cs │ ├── LayoutTransformControl.xaml │ └── PropertyChangeEventSource.cs ├── ListDetailsView │ ├── BackButtonBehavior.cs │ ├── ListDetailsView.BackButton.cs │ ├── ListDetailsView.Events.cs │ ├── ListDetailsView.Properties.cs │ ├── ListDetailsView.cs │ ├── ListDetailsView.xaml │ └── ListDetailsViewState.cs ├── Microsoft.Toolkit.Uwp.UI.Controls.Layout.csproj ├── OrbitView │ ├── OrbitView.cs │ ├── OrbitView.xaml │ ├── OrbitViewDataItem.cs │ ├── OrbitViewDataItemCollection.cs │ ├── OrbitViewElementProperties.cs │ ├── OrbitViewItem.cs │ ├── OrbitViewItemClickedEventArgs.cs │ ├── OrbitViewPanel.cs │ ├── OrbitViewPanelItemArrangedArgs.cs │ └── OrbitViewPanelItemsArrangedArgs.cs ├── Properties │ └── AssemblyInfo.cs ├── Strings │ └── en-US │ │ └── Resources.resw ├── Themes │ └── Generic.xaml └── VisualStudioToolsManifest.xml ├── Microsoft.Toolkit.Uwp.UI.Controls.Markdown.Design ├── Controls │ ├── MarkdownTextBlock.Metadata.cs │ └── MarkdownTextBlock.Typedata.cs ├── Microsoft.Toolkit.Uwp.UI.Controls.Markdown.DesignTools.csproj └── Properties │ ├── Resources.Designer.cs │ └── Resources.resx ├── Microsoft.Toolkit.Uwp.UI.Controls.Markdown ├── MarkdownTextBlock │ ├── CodeBlockResolvingEventArgs.cs │ ├── ImageResolvingEventArgs.cs │ ├── LinkClickedEventArgs.cs │ ├── MarkdownRenderedEventArgs.cs │ ├── MarkdownTextBlock.Dimensions.cs │ ├── MarkdownTextBlock.Events.cs │ ├── MarkdownTextBlock.Methods.cs │ ├── MarkdownTextBlock.Properties.cs │ ├── MarkdownTextBlock.cs │ └── MarkdownTextBlock.xaml ├── Microsoft.Toolkit.Uwp.UI.Controls.Markdown.csproj ├── Parsers │ ├── Constants.cs │ ├── Core │ │ ├── IParser.cs │ │ ├── ParseHelpers.cs │ │ ├── SchemaBase.cs │ │ └── StringValueAttribute.cs │ └── Markdown │ │ ├── Blocks │ │ ├── CodeBlock.cs │ │ ├── HeaderBlock.cs │ │ ├── HorizontalRuleBlock.cs │ │ ├── LinkReferenceBlock.cs │ │ ├── List │ │ │ ├── ListItemBlock.cs │ │ │ ├── ListItemBuilder.cs │ │ │ ├── ListItemPreamble.cs │ │ │ └── NestedListInfo.cs │ │ ├── ListBlock.cs │ │ ├── ParagraphBlock.cs │ │ ├── QuoteBlock.cs │ │ ├── TableBlock.cs │ │ └── YamlHeaderBlock.cs │ │ ├── Enums │ │ ├── ColumnAlignment.cs │ │ ├── HyperlinkType.cs │ │ ├── InlineParseMethod.cs │ │ ├── ListStyle.cs │ │ ├── MarkdownBlockType.cs │ │ └── MarkdownInlineType.cs │ │ ├── Helpers │ │ ├── Common.cs │ │ ├── DebuggingReporter.cs │ │ ├── InlineParseResult.cs │ │ ├── InlineTripCharHelper.cs │ │ └── LineInfo.cs │ │ ├── Inlines │ │ ├── BoldItalicTextInline.cs │ │ ├── BoldTextInline.cs │ │ ├── CodeInline.cs │ │ ├── CommentInline.cs │ │ ├── EmojiInline.EmojiCodes.cs │ │ ├── EmojiInline.cs │ │ ├── HyperlinkInline.cs │ │ ├── IInlineContainer.cs │ │ ├── IInlineLeaf.cs │ │ ├── ILinkElement.cs │ │ ├── ImageInline.cs │ │ ├── ItalicTextInline.cs │ │ ├── LinkAnchorInline.cs │ │ ├── MarkdownLinkInline.cs │ │ ├── StrikethroughTextInline.cs │ │ ├── SubscriptTextInline.cs │ │ ├── SuperscriptTextInline.cs │ │ └── TextRunInline.cs │ │ ├── MarkdownBlock.cs │ │ ├── MarkdownDocument.cs │ │ ├── MarkdownElement.cs │ │ ├── MarkdownInline.cs │ │ └── Render │ │ ├── IRenderContext.cs │ │ ├── MarkdownRendererBase.Blocks.cs │ │ ├── MarkdownRendererBase.Inlines.cs │ │ └── MarkdownRendererBase.cs ├── Render │ ├── ICodeBlockResolver.cs │ ├── IImageResolver.cs │ ├── ILinkRegister.cs │ ├── InlineRenderContext.cs │ ├── MarkdownRenderer.Blocks.cs │ ├── MarkdownRenderer.Dimensions.cs │ ├── MarkdownRenderer.Inlines.cs │ ├── MarkdownRenderer.Properties.cs │ ├── MarkdownRenderer.cs │ ├── MarkdownTable.cs │ ├── RenderContext.cs │ ├── RenderContextIncorrectException.cs │ └── UIElementCollectionRenderContext.cs ├── TextToolbar │ └── Formats │ │ └── MarkDown │ │ ├── MarkDownButtonActions.cs │ │ └── MarkDownFormatter.cs ├── Themes │ └── Generic.xaml └── VisualStudioToolsManifest.xml ├── Microsoft.Toolkit.Uwp.UI.Controls.Media.Design ├── Microsoft.Toolkit.Uwp.UI.Controls.Media.DesignTools.csproj └── Properties │ ├── Resources.Designer.cs │ └── Resources.resx ├── Microsoft.Toolkit.Uwp.UI.Controls.Media ├── Eyedropper │ ├── Eyedropper.Logic.cs │ ├── Eyedropper.Properties.cs │ ├── Eyedropper.cs │ ├── Eyedropper.xaml │ ├── EyedropperColorChangedEventArgs.cs │ ├── EyedropperToolButton.Properties.cs │ ├── EyedropperToolButton.cs │ └── EyedropperToolButton.xaml ├── ImageCropper │ ├── BitmapFileFormat.cs │ ├── CropShape.cs │ ├── ImageCropper.Animations.cs │ ├── ImageCropper.Constants.cs │ ├── ImageCropper.Events.cs │ ├── ImageCropper.Helpers.cs │ ├── ImageCropper.Logic.cs │ ├── ImageCropper.Properties.cs │ ├── ImageCropper.cs │ ├── ImageCropper.xaml │ ├── ImageCropperThumb.cs │ ├── ImageCropperThumb.xaml │ ├── ThumbPlacement.cs │ └── ThumbPosition.cs ├── InfiniteCanvas │ ├── Commands │ │ ├── IInfiniteCanvasCommand.cs │ │ ├── InfiniteCanvasClearAllCommand.cs │ │ ├── InfiniteCanvasCreateInkCommand.cs │ │ ├── InfiniteCanvasCreateTextBoxCommand.cs │ │ ├── InfiniteCanvasEraseInkCommand.cs │ │ ├── InfiniteCanvasRemoveTextBoxCommand.cs │ │ ├── InfiniteCanvasUpdateTextColorCommand.cs │ │ ├── InfiniteCanvasUpdateTextCommand.cs │ │ ├── InfiniteCanvasUpdateTextFontSizeCommand.cs │ │ ├── InfiniteCanvasUpdateTextStyleCommand.cs │ │ └── InfiniteCanvasUpdateTextWeightCommand.cs │ ├── Controls │ │ ├── InfiniteCanvasTextBox.cs │ │ ├── InfiniteCanvasVirtualDrawingSurface.Commands.cs │ │ ├── InfiniteCanvasVirtualDrawingSurface.Ink.cs │ │ ├── InfiniteCanvasVirtualDrawingSurface.Render.cs │ │ ├── InfiniteCanvasVirtualDrawingSurface.TextBox.cs │ │ └── InfiniteCanvasVirtualDrawingSurface.cs │ ├── Drawables │ │ ├── IDrawable.cs │ │ ├── InkDrawable.cs │ │ └── TextDrawable.cs │ ├── InfiniteCanvas.Events.cs │ ├── InfiniteCanvas.TextBox.cs │ ├── InfiniteCanvas.cs │ ├── InfiniteCanvas.xaml │ └── JsonConverters │ │ ├── CustomInkDrawingAttribute.cs │ │ ├── IDrawableConverter.cs │ │ ├── InkCanvasExportModel.cs │ │ ├── Matrix3x2Converter.cs │ │ ├── SerializablePoint.cs │ │ ├── SerializableStroke.cs │ │ └── SerializableStrokeConverter.cs ├── Microsoft.Toolkit.Uwp.UI.Controls.Media.csproj ├── Properties │ ├── AssemblyInfo.cs │ └── Microsoft.Toolkit.Uwp.UI.Controls.Media.rd.xml ├── Themes │ └── Generic.xaml └── VisualStudioToolsManifest.xml ├── Microsoft.Toolkit.Uwp.UI.Controls.Primitives.Design ├── Controls │ ├── AdaptiveGridView.Metadata.cs │ ├── AdaptiveGridView.Typedata.cs │ ├── WrapPanel.Metadata.cs │ └── WrapPanel.Typedata.cs ├── Microsoft.Toolkit.Uwp.UI.Controls.Primitives.DesignTools.csproj └── Properties │ ├── Resources.Designer.cs │ └── Resources.resx ├── Microsoft.Toolkit.Uwp.UI.Controls.Primitives ├── AdaptiveGridView │ ├── AdaptiveGridView.Properties.cs │ ├── AdaptiveGridView.cs │ └── AdaptiveHeightValueConverter.cs ├── ConstrainedBox │ ├── AspectRatio.cs │ ├── ConstrainedBox.Properties.cs │ └── ConstrainedBox.cs ├── DockPanel │ ├── Dock.cs │ ├── DockPanel.Properties.cs │ └── DockPanel.cs ├── Microsoft.Toolkit.Uwp.UI.Controls.Primitives.csproj ├── Properties │ ├── AssemblyInfo.cs │ └── Microsoft.Toolkit.Uwp.UI.Controls.Primitives.rd.xml ├── StaggeredLayout │ ├── StaggeredColumnLayout.cs │ ├── StaggeredItem.cs │ ├── StaggeredLayout.cs │ └── StaggeredLayoutState.cs ├── StaggeredPanel │ └── StaggeredPanel.cs ├── SwitchPresenter │ ├── Case.cs │ ├── CaseCollection.cs │ └── SwitchPresenter.cs ├── UniformGrid │ ├── TakenSpotsReferenceHolder.cs │ ├── UniformGrid.Helpers.cs │ ├── UniformGrid.Properties.cs │ └── UniformGrid.cs ├── VisualStudioToolsManifest.xml ├── WrapLayout │ ├── UvBounds.cs │ ├── UvMeasure.cs │ ├── WrapItem.cs │ ├── WrapLayout.cs │ └── WrapLayoutState.cs └── WrapPanel │ ├── StretchChild.cs │ ├── WrapPanel.Data.cs │ └── WrapPanel.cs ├── Microsoft.Toolkit.Uwp.UI.Controls ├── Microsoft.Toolkit.Uwp.UI.Controls.csproj └── ReadMe.txt ├── Microsoft.Toolkit.Uwp.UI.Media ├── Animations │ ├── Abstract │ │ └── EffectAnimation{TEffect,TValue,TKeyFrame}.cs │ ├── BlurEffectAnimation.cs │ ├── ColorEffectAnimation.cs │ ├── CrossFadeEffectAnimation.cs │ ├── ExposureEffectAnimation.cs │ ├── HueRotationEffectAnimation.cs │ ├── OpacityEffectAnimation.cs │ ├── SaturationEffectAnimation.cs │ └── SepiaEffectAnimation.cs ├── Brushes │ ├── AcrylicBrush.cs │ ├── BackdropBlurBrush.cs │ ├── BackdropGammaTransferBrush.cs │ ├── BackdropInvertBrush.cs │ ├── BackdropSaturationBrush.cs │ ├── BackdropSepiaBrush.cs │ ├── Base │ │ └── XamlCompositionEffectBrushBase.cs │ ├── CanvasBrushBase.cs │ ├── ImageBlendBrush.cs │ ├── PipelineBrush.cs │ ├── RadialGradientBrush.Properties.cs │ ├── RadialGradientBrush.cs │ ├── RadialGradientBrushInterop.cs │ ├── TilesBrush.cs │ └── XamlCompositionBrush.cs ├── Effects │ ├── Abstract │ │ ├── ImageSourceBaseExtension.cs │ │ └── PipelineEffect.cs │ ├── BlendEffect.cs │ ├── BlurEffect.cs │ ├── CrossFadeEffect.cs │ ├── ExposureEffect.cs │ ├── Extensions │ │ ├── AcrylicSourceExtension.cs │ │ ├── BackdropSourceExtension.cs │ │ ├── ImageSourceExtension.cs │ │ ├── SolidColorSourceExtension.cs │ │ └── TileSourceExtension.cs │ ├── GrayscaleEffect.cs │ ├── HueRotationEffect.cs │ ├── Interfaces │ │ └── IPipelineEffect.cs │ ├── InvertEffect.cs │ ├── LuminanceToAlphaEffect.cs │ ├── OpacityEffect.cs │ ├── SaturationEffect.cs │ ├── SepiaEffect.cs │ ├── ShadeEffect.cs │ ├── TemperatureAndTintEffect.cs │ └── TintEffect.cs ├── Enums │ ├── AlphaMode.cs │ ├── CacheMode.cs │ ├── DpiMode.cs │ ├── ImageBlendMode.cs │ ├── InnerContentClipMode.cs │ └── Placement.cs ├── Extensions │ ├── System.Collections.Generic │ │ └── GenericExtensions.cs │ ├── System.Threading.Tasks │ │ └── AsyncMutex.cs │ ├── System │ │ └── UriExtensions.cs │ ├── UIElementExtensions.cs │ └── Windows.UI.Composition │ │ └── CompositionObjectExtensions.cs ├── Geometry │ ├── CanvasDrawingSessionExtensions.cs │ ├── CanvasPathBuilderExtensions.cs │ ├── CanvasPathGeometry.cs │ ├── CanvasStroke.cs │ ├── CompositorGeometryExtensions.cs │ ├── Core │ │ ├── CanvasRoundRect.cs │ │ ├── GeometryTypeDefinitions.cs │ │ ├── PathElementFactory.cs │ │ └── RegexFactory.cs │ ├── CultureShield.cs │ ├── Elements │ │ ├── Brush │ │ │ ├── AbstractCanvasBrushElement.cs │ │ │ ├── ICanvasBrushElement.cs │ │ │ ├── LinearGradientBrushElement.cs │ │ │ ├── LinearGradientHdrBrushElement.cs │ │ │ ├── RadialGradientBrushElement.cs │ │ │ ├── RadialGradientHdrBrushElement.cs │ │ │ └── SolidColorBrushElement.cs │ │ ├── Path │ │ │ ├── AbstractPathElement.cs │ │ │ ├── ArcElement.cs │ │ │ ├── CanvasEllipseFigure.cs │ │ │ ├── CanvasPathFigure.cs │ │ │ ├── CanvasPolygonFigure.cs │ │ │ ├── CanvasRectangleFigure.cs │ │ │ ├── CanvasRoundRectangleFigure.cs │ │ │ ├── ClosePathElement.cs │ │ │ ├── CubicBezierElement.cs │ │ │ ├── FillRuleElement.cs │ │ │ ├── HorizontalLineElement.cs │ │ │ ├── ICanvasPathElement.cs │ │ │ ├── LineElement.cs │ │ │ ├── MoveToElement.cs │ │ │ ├── QuadraticBezierElement.cs │ │ │ ├── SmoothCubicBezierElement.cs │ │ │ ├── SmoothQuadraticBezierElement.cs │ │ │ └── VerticalLineElement.cs │ │ └── Stroke │ │ │ ├── AbstractCanvasStrokeElement.cs │ │ │ ├── CanvasStrokeElement.cs │ │ │ ├── CanvasStrokeStyleElement.cs │ │ │ ├── ICanvasStrokeElement.cs │ │ │ └── ICanvasStrokeStyleElement.cs │ ├── ICanvasStroke.cs │ ├── Parsers │ │ ├── CanvasBrushParser.cs │ │ ├── CanvasGeometryParser.cs │ │ ├── CanvasStrokeParser.cs │ │ ├── CanvasStrokeStyleParser.cs │ │ └── ColorParser.cs │ ├── Scalar.cs │ └── Utils.cs ├── Helpers │ ├── Cache │ │ ├── CompositionObjectCache{TKey,TValue}.cs │ │ └── CompositionObjectCache{T}.cs │ ├── SurfaceLoader.Instance.cs │ └── SurfaceLoader.cs ├── Microsoft.Toolkit.Uwp.UI.Media.csproj ├── Pipelines │ ├── BrushProvider.cs │ ├── PipelineBuilder.Effects.Internals.cs │ ├── PipelineBuilder.Effects.cs │ ├── PipelineBuilder.Initialization.cs │ ├── PipelineBuilder.Merge.cs │ ├── PipelineBuilder.Prebuilt.cs │ └── PipelineBuilder.cs ├── Properties │ └── Microsoft.Toolkit.Uwp.UI.Media.rd.xml ├── Shadows │ └── AttachedCardShadow.cs └── Visuals │ ├── AttachedVisualFactoryBase.cs │ ├── PipelineVisualFactory.cs │ └── PipelineVisualFactoryBase.cs ├── Microsoft.Toolkit.Uwp.UI ├── AdvancedCollectionView │ ├── AdvancedCollectionView.Defer.cs │ ├── AdvancedCollectionView.Events.cs │ ├── AdvancedCollectionView.cs │ ├── IAdvancedCollectionView.cs │ ├── SortDescription.cs │ ├── SortDirection.cs │ └── VectorChangedEventArgs.cs ├── Cache │ ├── CacheBase.cs │ ├── FileCache.cs │ ├── ImageCache.cs │ ├── InMemoryStorage.cs │ └── InMemoryStorageItem.cs ├── Converters │ ├── BoolNegationConverter.cs │ ├── BoolToObjectConverter.cs │ ├── BoolToVisibilityConverter.cs │ ├── CollectionVisibilityConverter.cs │ ├── ColorToDisplayNameConverter.cs │ ├── ConverterTools.cs │ ├── DoubleToObjectConverter.cs │ ├── DoubleToVisibilityConverter.cs │ ├── EmptyCollectionToObjectConverter.cs │ ├── EmptyObjectToObjectConverter.cs │ ├── EmptyStringToObjectConverter.cs │ ├── FileSizeToFriendlyStringConverter.cs │ ├── FormatStringConverter.cs │ ├── ResourceNameToResourceStringConverter.cs │ ├── StringFormatConverter.cs │ ├── StringVisibilityConverter.cs │ ├── TaskResultConverter.cs │ ├── TypeToObjectConverter.cs │ └── VisibilityToBoolConverter.cs ├── Extensions │ ├── ApplicationViewExtensions.cs │ ├── DependencyObjectExtensions.cs │ ├── FrameworkElement │ │ ├── FrameworkElementExtensions.ActualSize.cs │ │ ├── FrameworkElementExtensions.LogicalTree.cs │ │ ├── FrameworkElementExtensions.Mouse.cs │ │ └── FrameworkElementExtensions.RelativeAncestor.cs │ ├── HyperlinkExtensions.cs │ ├── ListViewBase │ │ ├── ItemContainerStretchDirection.cs │ │ ├── ListViewExtensions.AlternateRows.cs │ │ ├── ListViewExtensions.Command.cs │ │ ├── ListViewExtensions.Selection.cs │ │ ├── ListViewExtensions.SmoothScrollIntoView.cs │ │ ├── ListViewExtensions.StretchItemContainer.cs │ │ └── ScrollItemPlacement.cs │ ├── Markup │ │ ├── Abstract │ │ │ └── TextIconExtension.cs │ │ ├── BitmapIconExtension.cs │ │ ├── BitmapIconSourceExtension.cs │ │ ├── EnumValuesExtension.cs │ │ ├── FontIconExtension.cs │ │ ├── FontIconSourceExtension.cs │ │ ├── NullableBoolExtension.cs │ │ ├── OnDeviceExtension.cs │ │ ├── SymbolIconExtension.cs │ │ └── SymbolIconSourceExtension.cs │ ├── Media │ │ ├── MatrixExtensions.cs │ │ ├── RectExtensions.cs │ │ ├── RotateTransformExtensions.cs │ │ ├── ScaleTransformExtensions.cs │ │ ├── SkewTransformExtensions.cs │ │ └── TranslateTransformExtensions.cs │ ├── Predicates │ │ ├── Interfaces │ │ │ └── IPredicate{T}.cs │ │ ├── PredicateByAny{T}.cs │ │ ├── PredicateByFunc{T,TState}.cs │ │ ├── PredicateByFunc{T}.cs │ │ ├── PredicateByName.cs │ │ └── PredicateByType.cs │ ├── ScrollViewer │ │ ├── MiddleClickScrolling-CursorType.res │ │ ├── ScrollViewerExtensions.MiddleClickScrolling.cs │ │ ├── ScrollViewerExtensions.Properties.cs │ │ └── ScrollViewerExtensions.cs │ ├── StringExtensions.cs │ ├── TextBox │ │ ├── SurfaceDialOptions.cs │ │ ├── TextBoxExtensions.Mask.Internals.cs │ │ ├── TextBoxExtensions.Mask.Properties.cs │ │ ├── TextBoxExtensions.Regex.Data.cs │ │ ├── TextBoxExtensions.Regex.Internals.cs │ │ ├── TextBoxExtensions.Regex.Properties.cs │ │ └── TextBoxExtensions.SurfaceDial.cs │ ├── TitleBarExtensions.cs │ ├── UIElementExtensions.cs │ ├── VisualExtensions.cs │ └── WebViewExtensions.cs ├── Helpers │ ├── BindableValueHolder.cs │ ├── CompositionTargetHelper.cs │ ├── DependencyPropertyWatcher.cs │ ├── DesignTimeHelpers.cs │ └── ThemeListener.cs ├── Microsoft.Toolkit.Uwp.UI.csproj ├── Properties │ ├── AssemblyInfo.cs │ └── Microsoft.Toolkit.Uwp.UI.rd.xml ├── Shadows │ ├── AttachedDropShadow.cs │ ├── AttachedShadowBase.cs │ ├── AttachedShadowElementContext.cs │ ├── Effects.cs │ ├── IAlphaMaskProvider.cs │ ├── IAttachedShadow.cs │ └── TypedResourceKey.cs └── Triggers │ ├── CompareStateTrigger.cs │ ├── ControlSizeTrigger.cs │ ├── FullScreenModeStateTrigger.cs │ ├── IsEqualStateTrigger.cs │ ├── IsNotEqualStateTrigger.cs │ ├── IsNullOrEmptyStateTrigger.cs │ ├── NetworkConnectionStateTrigger.cs │ ├── RegexStateTrigger.cs │ ├── UserHandPreferenceStateTrigger.cs │ └── UserInteractionModeStateTrigger.cs ├── Microsoft.Toolkit.Uwp ├── Extensions │ ├── DispatcherQueueExtensions.cs │ ├── DispatcherQueueTimerExtensions.cs │ ├── PointExtensions.cs │ ├── RectExtensions.cs │ ├── SizeExtensions.cs │ ├── StringExtensions.cs │ └── TypedEventHandlerExtensions.cs ├── Helpers │ ├── BackgroundTaskHelper.cs │ ├── CameraHelper │ │ ├── CameraHelper.cs │ │ ├── CameraHelperResult.cs │ │ └── FrameEventArgs.cs │ ├── ColorHelper.cs │ ├── DeepLinkParser │ │ ├── CollectionFormingDeepLinkParser.cs │ │ ├── DeepLinkParser.cs │ │ └── QueryParameterCollection.cs │ ├── DispatcherHelper.cs │ ├── ObjectStorage │ │ ├── ApplicationDataStorageHelper.CacheFolder.cs │ │ ├── ApplicationDataStorageHelper.cs │ │ ├── BaseObjectStorageHelper.cs │ │ ├── IObjectSerializer.cs │ │ ├── IObjectStorageHelper.cs │ │ ├── LocalObjectStorageHelper.cs │ │ ├── RoamingObjectStorageHelper.cs │ │ └── SystemSerializer.cs │ ├── PackageVersionHelper.cs │ ├── PrintHelper │ │ ├── PrintHelper.cs │ │ ├── PrintHelperOptions.cs │ │ └── PrintHelperStateBag.cs │ ├── RemoteDeviceHelper │ │ └── RemoteDeviceHelper.cs │ ├── ScreenUnit.cs │ ├── ScreenUnitHelper.cs │ ├── StorageFileHelper.cs │ ├── StreamHelper.cs │ ├── SystemInformation.cs │ └── WeakEventListener.cs ├── IncrementalLoadingCollection │ └── IncrementalLoadingCollection.cs ├── Microsoft.Toolkit.Uwp.csproj └── Structures │ ├── HslColor.cs │ ├── HsvColor.cs │ └── OSVersion.cs ├── Microsoft.Toolkit.Win32.WpfCore.SampleApp.PackagingProject ├── Images │ ├── LockScreenLogo.scale-200.png │ ├── SplashScreen.scale-200.png │ ├── Square150x150Logo.scale-200.png │ ├── Square44x44Logo.scale-200.png │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ ├── StoreLogo.png │ └── Wide310x150Logo.scale-200.png ├── Microsoft.Toolkit.Win32.WpfCore.SampleApp.PackagingProject.wapproj └── Package.appxmanifest ├── Microsoft.Toolkit.Win32.WpfCore.SampleApp ├── App.xaml ├── App.xaml.cs ├── AssemblyInfo.cs ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── Microsoft.Toolkit.Win32.WpfCore.SampleApp.csproj ├── MyToastActions.cs └── ToolkitIcon.ico ├── Microsoft.Toolkit.Win32 └── ReadMe.md ├── ReadMe.md ├── SmokeTests ├── App.xaml ├── App.xaml.cs ├── Assets │ ├── LockScreenLogo.scale-200.png │ ├── SplashScreen.scale-200.png │ ├── Square150x150Logo.scale-200.png │ ├── Square44x44Logo.scale-200.png │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ ├── StoreLogo.png │ └── Wide310x150Logo.scale-200.png ├── Microsoft.Toolkit.Uwp.Connectivity │ ├── MainPage.xaml │ └── MainPage.xaml.cs ├── Microsoft.Toolkit.Uwp.DeveloperTools │ ├── MainPage.xaml │ └── MainPage.xaml.cs ├── Microsoft.Toolkit.Uwp.Input.GazeInteraction │ ├── MainPage.xaml │ └── MainPage.xaml.cs ├── Microsoft.Toolkit.Uwp.Notifications │ ├── MainPage.xaml │ └── MainPage.xaml.cs ├── Microsoft.Toolkit.Uwp.UI.Animations │ ├── MainPage.xaml │ └── MainPage.xaml.cs ├── Microsoft.Toolkit.Uwp.UI.Behaviors │ ├── MainPage.xaml │ └── MainPage.xaml.cs ├── Microsoft.Toolkit.Uwp.UI.Controls.Core │ ├── MainPage.xaml │ └── MainPage.xaml.cs ├── Microsoft.Toolkit.Uwp.UI.Controls.DataGrid │ ├── MainPage.xaml │ └── MainPage.xaml.cs ├── Microsoft.Toolkit.Uwp.UI.Controls.Input │ ├── MainPage.xaml │ └── MainPage.xaml.cs ├── Microsoft.Toolkit.Uwp.UI.Controls.Layout │ ├── MainPage.xaml │ └── MainPage.xaml.cs ├── Microsoft.Toolkit.Uwp.UI.Controls.Markdown │ ├── MainPage.xaml │ └── MainPage.xaml.cs ├── Microsoft.Toolkit.Uwp.UI.Controls.Media │ ├── MainPage.xaml │ └── MainPage.xaml.cs ├── Microsoft.Toolkit.Uwp.UI.Controls.Primitives │ ├── MainPage.xaml │ └── MainPage.xaml.cs ├── Microsoft.Toolkit.Uwp.UI.Controls │ ├── MainPage.xaml │ └── MainPage.xaml.cs ├── Microsoft.Toolkit.Uwp.UI.Media │ ├── MainPage.xaml │ └── MainPage.xaml.cs ├── Microsoft.Toolkit.Uwp.UI │ ├── MainPage.xaml │ └── MainPage.xaml.cs ├── Microsoft.Toolkit.Uwp │ ├── MainPage.xaml │ └── MainPage.xaml.cs ├── Package.appxmanifest ├── Properties │ ├── AssemblyInfo.cs │ └── Default.rd.xml ├── SmokeTest.csproj ├── SmokeTest.sln ├── SmokeTestAnalysis.ps1 ├── SmokeTestDownloadNuGetVersion.ps1 ├── SmokeTests.proj ├── UWPBaseline │ ├── MainPage.xaml │ └── MainPage.xaml.cs ├── UWPBaselineWinUI │ ├── MainPage.xaml │ └── MainPage.xaml.cs └── nuget.config ├── ThirdPartyNotices.txt ├── UITests ├── UITests.App │ ├── App.AppService.xaml.cs │ ├── App.xaml │ ├── App.xaml.cs │ ├── Assets │ │ ├── LockScreenLogo.scale-200.png │ │ ├── SplashScreen.scale-200.png │ │ ├── Square150x150Logo.scale-200.png │ │ ├── Square44x44Logo.scale-200.png │ │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ │ ├── StoreLogo.png │ │ └── Wide310x150Logo.scale-200.png │ ├── Commands │ │ └── VisualTreeHelperCommands.cs │ ├── HomePage.xaml │ ├── HomePage.xaml.cs │ ├── MainTestHost.xaml │ ├── MainTestHost.xaml.cs │ ├── Package.appxmanifest │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ └── Default.rd.xml │ ├── RequestPageMessage.cs │ ├── TestInterop.cs │ ├── UITests.App.csproj │ └── UITests.App.pfx ├── UITests.Tests.MSTest │ ├── MSTestInterop.cs │ └── UITests.Tests.MSTest.csproj ├── UITests.Tests.Shared │ ├── Controls │ │ ├── ColorPickerButtonTest.cs │ │ ├── ColorPickerButtonTestPage.xaml │ │ ├── ColorPickerButtonTestPage.xaml.cs │ │ ├── ConstrainedBoxTest.cs │ │ ├── ConstrainedBoxTestPage.xaml │ │ ├── ConstrainedBoxTestPage.xaml.cs │ │ ├── GridSplitterTest.cs │ │ ├── GridSplitterTestPage.xaml │ │ ├── GridSplitterTestPage.xaml.cs │ │ ├── RangeSelectorTest.cs │ │ ├── RangeSelectorTestPage.xaml │ │ ├── RangeSelectorTestPage.xaml.cs │ │ ├── RichSuggestBoxTest.cs │ │ ├── RichSuggestBoxTestPage.xaml │ │ ├── RichSuggestBoxTestPage.xaml.cs │ │ ├── TextBoxMaskTest.cs │ │ ├── TextBoxMaskTestPage.xaml │ │ └── TextBoxMaskTestPage.xaml.cs │ ├── Examples │ │ ├── SimpleTest.cs │ │ ├── SimpleTestPage.xaml │ │ └── SimpleTestPage.xaml.cs │ ├── TestAssembly.cs │ ├── TestPageAttribute.cs │ ├── UITestBase.cs │ ├── UITests.Tests.Shared.projitems │ ├── UITests.Tests.Shared.shproj │ └── VisualTreeHelper.cs └── UITests.Tests.TAEF │ ├── MainClass.cs │ ├── UITests.App.dependencies.Debug.txt │ ├── UITests.App.dependencies.Release.txt │ └── UITests.Tests.TAEF.csproj ├── UnitTests ├── UnitTests.Notifications.NetCore │ └── UnitTests.Notifications.NetCore.csproj ├── UnitTests.Notifications.Shared │ ├── .editorconfig │ ├── TestAssertHelper.cs │ ├── TestMail.cs │ ├── TestTileContentBuilder.cs │ ├── TestToastArguments.cs │ ├── TestToastContentBuilder.cs │ ├── TestWeather.cs │ ├── Test_Adaptive_Xml.cs │ ├── Test_Badge_Xml.cs │ ├── Test_Tile_Xml.cs │ ├── Test_Toast_Xml.cs │ ├── TextXboxModern.cs │ ├── UnitTests.Notifications.Shared.projitems │ └── UnitTests.Notifications.Shared.shproj ├── UnitTests.Notifications.UWP │ ├── Assets │ │ ├── LockScreenLogo.scale-200.png │ │ ├── SplashScreen.scale-200.png │ │ ├── Square150x150Logo.scale-200.png │ │ ├── Square44x44Logo.scale-200.png │ │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ │ ├── StoreLogo.png │ │ └── Wide310x150Logo.scale-200.png │ ├── Package.appxmanifest │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ └── UnitTestApp.rd.xml │ ├── UnitTestApp.xaml │ ├── UnitTestApp.xaml.cs │ ├── UnitTests.Notifications.UWP.csproj │ └── UnitTests.Notifications.UWP_TemporaryKey.pfx ├── UnitTests.Notifications.WinRT │ ├── Assets │ │ ├── LockScreenLogo.scale-200.png │ │ ├── SplashScreen.scale-200.png │ │ ├── Square150x150Logo.scale-200.png │ │ ├── Square44x44Logo.scale-200.png │ │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ │ ├── StoreLogo.png │ │ └── Wide310x150Logo.scale-200.png │ ├── Package.appxmanifest │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ └── UnitTestApp.rd.xml │ ├── UnitTestApp.xaml │ ├── UnitTestApp.xaml.cs │ ├── UnitTests.Notifications.WinRT.csproj │ └── UnitTests.Notifications.WinRT_TemporaryKey.pfx ├── UnitTests.UWP │ ├── .editorconfig │ ├── App.xaml │ ├── App.xaml.cs │ ├── Assets │ │ ├── LockScreenLogo.scale-200.png │ │ ├── Samples │ │ │ ├── InfiniteCanvasExport.json │ │ │ ├── InfiniteCanvasExportPreMedia.json │ │ │ └── lorem.txt │ │ ├── SplashScreen.scale-200.png │ │ ├── Square150x150Logo.scale-200.png │ │ ├── Square44x44Logo.scale-200.png │ │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ │ ├── StoreLogo.embeded.png │ │ ├── StoreLogo.png │ │ └── Wide310x150Logo.scale-200.png │ ├── Behaviors │ │ └── Test_AutoSelectBehavior.cs │ ├── Converters │ │ ├── Test_AdaptiveHeightValueConverter.cs │ │ ├── Test_BoolToObjectConverter.cs │ │ ├── Test_EmptyCollectionToObjectConverter.cs │ │ ├── Test_EmptyStringToObjectConverter.cs │ │ ├── Test_StringFormatConverter.cs │ │ ├── Test_TaskResultConverter.cs │ │ └── Test_TypeToObjectConverter.cs │ ├── Extensions │ │ ├── Helpers │ │ │ └── ObjectWithNullableBoolProperty.cs │ │ ├── Test_BitmapIconExtensionMarkupExtension.cs │ │ ├── Test_DispatcherQueueExtensions.cs │ │ ├── Test_DispatcherQueueTimerExtensions.cs │ │ ├── Test_EnumValuesExtension.cs │ │ ├── Test_FontIconExtensionMarkupExtension.cs │ │ ├── Test_FontIconSourceExtensionMarkupExtension.cs │ │ ├── Test_LogicalTreeExtensions.cs │ │ ├── Test_NullableBoolMarkupExtension.cs │ │ ├── Test_PointExtensions.cs │ │ ├── Test_RectExtensions.cs │ │ ├── Test_SizeExtensions.cs │ │ ├── Test_StringExtensions.cs │ │ ├── Test_UIElementExtensions_Coordinates.cs │ │ └── Test_VisualTreeExtensions.cs │ ├── Geometry │ │ ├── Test_CanvasPathGeometry.cs │ │ ├── Test_RegexFactory.cs │ │ └── Test_Utils.cs │ ├── GlobalSuppressions.cs │ ├── Helpers │ │ ├── JsonObjectSerializer.cs │ │ ├── JsonObjectSerializer2.cs │ │ ├── SystemTextJsonSerializer.cs │ │ ├── SystemTextJsonSerializer2.cs │ │ ├── TestCollectionCapableDeepLinkParser.cs │ │ ├── TestDeepLinkParser.cs │ │ ├── Test_AdvancedCollectionView.cs │ │ ├── Test_ApplicationDataStorageHelper.cs │ │ ├── Test_BackgroundTaskHelper.cs │ │ ├── Test_CollectionCapableDeepLinkParser.cs │ │ ├── Test_ColorHelper.cs │ │ ├── Test_ConnectionHelper.cs │ │ ├── Test_DeepLinkParser.cs │ │ ├── Test_DispatcherHelper.cs │ │ ├── Test_ScreenUnitHelper.cs │ │ ├── Test_StorageFileHelper.cs │ │ ├── Test_StorageHelper.cs │ │ ├── Test_StreamHelper.cs │ │ ├── Test_SystemInformation.cs │ │ └── Test_WeakEventListener.cs │ ├── IsExternalInit.cs │ ├── Markdown │ │ ├── Parse │ │ │ ├── BoldTests.cs │ │ │ ├── CodeTests.cs │ │ │ ├── HeaderTests.cs │ │ │ ├── HorizontalRuleTests.cs │ │ │ ├── HyperlinkTests.cs │ │ │ ├── ImageInlineTests.cs │ │ │ ├── ItalicTests.cs │ │ │ ├── ListTests.cs │ │ │ ├── MarkdownLinkTests.cs │ │ │ ├── ParagraphTests.cs │ │ │ ├── ParseTestBase.cs │ │ │ ├── ParseTestExtensionMethods.cs │ │ │ ├── QuoteTests.cs │ │ │ ├── StrikethroughTests.cs │ │ │ ├── SubscriptTests.cs │ │ │ ├── SuperscriptTests.cs │ │ │ └── TableTests.cs │ │ └── TestBase.cs │ ├── MarkdownTests.playlist │ ├── Package.appxmanifest │ ├── PrivateObject.cs │ ├── PrivateType.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ └── UnitTestApp.rd.xml │ ├── Strings │ │ ├── en-us │ │ │ └── Resources.resw │ │ └── fr │ │ │ └── Resources.resw │ ├── UI │ │ ├── Animations │ │ │ └── Test_AnimationBuilderStart.cs │ │ ├── Collection │ │ │ ├── DataSource.cs │ │ │ └── Test_IncrementalLoadingCollection.cs │ │ ├── Controls │ │ │ ├── Test_BladeView.cs │ │ │ ├── Test_Carousel.cs │ │ │ ├── Test_ConstrainedBox.Alignment.cs │ │ │ ├── Test_ConstrainedBox.AspectRatio.cs │ │ │ ├── Test_ConstrainedBox.Coerce.cs │ │ │ ├── Test_ConstrainedBox.Combined.cs │ │ │ ├── Test_ConstrainedBox.Constrict.cs │ │ │ ├── Test_ConstrainedBox.Infinity.cs │ │ │ ├── Test_ConstrainedBox.Multiple.cs │ │ │ ├── Test_ConstrainedBox.Scale.cs │ │ │ ├── Test_ImageEx.cs │ │ │ ├── Test_InfiniteCanvas_Regression.cs │ │ │ ├── Test_ListDetailsView.cs │ │ │ ├── Test_ListDetailsView_UI.cs │ │ │ ├── Test_RadialGauge.cs │ │ │ ├── Test_RangeSelector.cs │ │ │ ├── Test_RichSuggestBox.cs │ │ │ ├── Test_TextToolbar_Localization.cs │ │ │ ├── Test_TokenizingTextBox_AutomationPeer.cs │ │ │ ├── Test_TokenizingTextBox_General.cs │ │ │ ├── Test_TokenizingTextBox_InterspersedCollection.cs │ │ │ ├── Test_UniformGrid_AutoLayout.cs │ │ │ ├── Test_UniformGrid_Dimensions.cs │ │ │ ├── Test_UniformGrid_FreeSpots.cs │ │ │ ├── Test_UniformGrid_RowColDefinitions.cs │ │ │ ├── Test_WrapPanel_BasicLayout.cs │ │ │ └── Test_WrapPanel_Visibility.cs │ │ ├── Extensions │ │ │ └── Test_VisualExtensions.cs │ │ ├── Person.cs │ │ ├── Test_AdvancedCollectionView.cs │ │ └── Triggers │ │ │ └── Test_ControlSizeTrigger.cs │ ├── UnitTests.UWP.csproj │ └── VisualUITestBase.cs ├── UnitTests.XamlIslands.Package │ ├── Images │ │ ├── LockScreenLogo.scale-200.png │ │ ├── SplashScreen.scale-200.png │ │ ├── Square150x150Logo.scale-200.png │ │ ├── Square44x44Logo.scale-200.png │ │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ │ ├── StoreLogo.png │ │ └── Wide310x150Logo.scale-200.png │ ├── Package.appxmanifest │ └── UnitTests.XamlIslands.Package.wapproj ├── UnitTests.XamlIslands.UWPApp │ ├── App.xaml │ ├── App.xaml.cs │ ├── Assets │ │ ├── LockScreenLogo.scale-200.png │ │ ├── SplashScreen.scale-200.png │ │ ├── Square150x150Logo.scale-200.png │ │ ├── Square44x44Logo.scale-200.png │ │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ │ ├── StoreLogo.png │ │ └── Wide310x150Logo.scale-200.png │ ├── FakeTestClasses │ │ ├── Assert.cs │ │ ├── IgnoreAttribute.cs │ │ ├── TestClassAttribute.cs │ │ ├── TestCleanupAttribute.cs │ │ ├── TestInitializeAttribute.cs │ │ └── TestMethodAttribute.cs │ ├── Package.appxmanifest │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ └── Default.rd.xml │ ├── STATestClassAttribute.cs │ ├── STATestMethodAttribute.cs │ ├── Strings │ │ └── en-us │ │ │ └── Resources.resw │ ├── TestsPage.xaml │ ├── TestsPage.xaml.cs │ ├── UnitTests.XamlIslands.UWPApp.csproj │ ├── XamlIslandsTest_DropShadowPanel.cs │ ├── XamlIslandsTest_Eyedropper.cs │ ├── XamlIslandsTest_Gaze.cs │ ├── XamlIslandsTest_ObjectStorageHelper.cs │ ├── XamlIslandsTest_StringExtensions.cs │ ├── XamlIslandsTest_SystemInformation.cs │ ├── XamlIslandsTest_TextToolbar.cs │ ├── XamlIslandsTest_ThemeListener_Threading.cs │ ├── XamlIslandsTest_TokenizingTextBox.cs │ └── XamlIslandsTest_WrapPanel.cs └── UnitTests.XamlIslands │ ├── Directory.Build.props │ ├── Directory.Build.targets │ ├── Program.cs │ ├── Properties │ └── launchSettings.json │ ├── UnitTests.XamlIslands.csproj │ └── app.manifest ├── Windows Community Toolkit.sln ├── azure-pipelines.yml ├── build ├── Build.bat ├── Find-WindowsSDKVersions.ps1 ├── Install-WindowsSDK.ps1 ├── Install-WindowsSdkISO.ps1 ├── Sign-Package.ps1 ├── SignClientSettings.json ├── StyleXaml.bat ├── UpdateHeaders.bat ├── Windows.Toolkit.Common.props ├── Windows.Toolkit.Common.targets ├── Windows.Toolkit.UWP.Build.targets ├── Windows.Toolkit.UWP.Controls.targets ├── Windows.Toolkit.VisualStudio.Design.props ├── Windows.Toolkit.VisualStudio.Design.targets ├── Windows.Toolkit.Workarounds.Xaml.targets ├── build.cake ├── build.ps1 ├── header.txt ├── nuget.png └── tools │ └── packages.config ├── githubresources ├── content │ ├── analytics.md │ └── links.md └── images │ ├── NugetPackages.png │ └── UWP-community-toolkit-overview.png ├── global.json ├── nuget.config ├── settings.xamlstyler ├── stylecop.json ├── toolkit.snk └── version.json /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: false 2 | contact_links: 3 | - name: We've moved ➡️ 4 | url: https://github.com/CommunityToolkit/Windows/issues/new/choose 5 | about: "Please file your issue in the new repository." 6 | - name: MVVM Toolkit, High Performance, or Diagnostic Package? 7 | url: https://aka.ms/toolkit/dotnet 8 | about: "If you have a question on these, see the .NET Community Toolkit repo:" 9 | -------------------------------------------------------------------------------- /.runsettings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 0 4 | 5 | 0 6 | ClassLevel 7 | 8 | 9 | -------------------------------------------------------------------------------- /GazeInputTest/App.xaml: -------------------------------------------------------------------------------- 1 | 7 | 8 | -------------------------------------------------------------------------------- /GazeInputTest/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/GazeInputTest/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /GazeInputTest/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/GazeInputTest/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /GazeInputTest/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/GazeInputTest/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /GazeInputTest/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/GazeInputTest/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /GazeInputTest/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/GazeInputTest/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /GazeInputTest/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/GazeInputTest/Assets/StoreLogo.png -------------------------------------------------------------------------------- /GazeInputTest/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/GazeInputTest/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.Connectivity/Properties/Microsoft.Toolkit.Uwp.Connectivity.rd.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.DeveloperTools/Properties/Microsoft.Toolkit.Uwp.DeveloperTools.rd.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.DeveloperTools/Themes/Generic.xaml: -------------------------------------------------------------------------------- 1 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.DeveloperTools/VisualStudioToolsManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.Input.GazeInteraction/GazeHistoryItem.cs: -------------------------------------------------------------------------------- 1 | // Licensed to the .NET Foundation under one or more agreements. 2 | // The .NET Foundation licenses this file to you under the MIT license. 3 | // See the LICENSE file in the project root for more information. 4 | 5 | using System; 6 | 7 | namespace Microsoft.Toolkit.Uwp.Input.GazeInteraction 8 | { 9 | internal struct GazeHistoryItem 10 | { 11 | public GazeTargetItem HitTarget { get; set; } 12 | 13 | public TimeSpan Timestamp { get; set; } 14 | 15 | public TimeSpan Duration { get; set; } 16 | } 17 | } -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.Input.GazeInteraction/IGazeFilter.cs: -------------------------------------------------------------------------------- 1 | // Licensed to the .NET Foundation under one or more agreements. 2 | // The .NET Foundation licenses this file to you under the MIT license. 3 | // See the LICENSE file in the project root for more information. 4 | 5 | using Windows.Foundation.Collections; 6 | 7 | namespace Microsoft.Toolkit.Uwp.Input.GazeInteraction 8 | { 9 | // Every filter must provide an Update method which transforms sample data 10 | // and returns filtered output 11 | internal interface IGazeFilter 12 | { 13 | GazeFilterArgs Update(GazeFilterArgs args); 14 | 15 | void LoadSettings(ValueSet settings); 16 | } 17 | } -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.Notifications/Adaptive/Elements/Element_AdaptiveImageEnums.cs: -------------------------------------------------------------------------------- 1 | // Licensed to the .NET Foundation under one or more agreements. 2 | // The .NET Foundation licenses this file to you under the MIT license. 3 | // See the LICENSE file in the project root for more information. 4 | 5 | namespace Microsoft.Toolkit.Uwp.Notifications.Adaptive.Elements 6 | { 7 | internal enum AdaptiveImagePlacement 8 | { 9 | Inline, 10 | Background, 11 | Peek, 12 | Hero, 13 | AppLogoOverride 14 | } 15 | } -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.Notifications/Common/Serialization/IHaveXmlName.cs: -------------------------------------------------------------------------------- 1 | // Licensed to the .NET Foundation under one or more agreements. 2 | // The .NET Foundation licenses this file to you under the MIT license. 3 | // See the LICENSE file in the project root for more information. 4 | 5 | namespace Microsoft.Toolkit.Uwp.Notifications 6 | { 7 | /// 8 | /// An interface for a notification XML element with a name. 9 | /// 10 | internal interface IHaveXmlName 11 | { 12 | /// 13 | /// Gets the name of the current element. 14 | /// 15 | string Name { get; } 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.Notifications/Microsoft.Toolkit.Uwp.Notifications.targets: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | $(MSBuildThisFileDirectory)..\..\lib\native\Microsoft.Toolkit.Uwp.Notifications.winmd 6 | true 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.Notifications/Tiles/Elements/TileElementsCommon.cs: -------------------------------------------------------------------------------- 1 | // Licensed to the .NET Foundation under one or more agreements. 2 | // The .NET Foundation licenses this file to you under the MIT license. 3 | // See the LICENSE file in the project root for more information. 4 | 5 | namespace Microsoft.Toolkit.Uwp.Notifications 6 | { 7 | internal enum TilePresentation 8 | { 9 | People, 10 | Photos, 11 | Contact 12 | } 13 | 14 | internal enum TileImagePlacement 15 | { 16 | Inline, 17 | Background, 18 | Peek 19 | } 20 | } -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.Notifications/Toasts/Compat/Desktop/Native/CAppResolver.cs: -------------------------------------------------------------------------------- 1 | // Licensed to the .NET Foundation under one or more agreements. 2 | // The .NET Foundation licenses this file to you under the MIT license. 3 | // See the LICENSE file in the project root for more information. 4 | 5 | #if WIN32 6 | 7 | using System; 8 | using System.Runtime.InteropServices; 9 | 10 | namespace Microsoft.Toolkit.Uwp.Notifications 11 | { 12 | [ComImport] 13 | [Guid("660b90c8-73a9-4b58-8cae-355b7f55341b")] 14 | [ClassInterface(ClassInterfaceType.None)] 15 | internal class CAppResolver 16 | { 17 | } 18 | } 19 | 20 | #endif -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.Notifications/Toasts/Compat/Desktop/OnActivated.cs: -------------------------------------------------------------------------------- 1 | // Licensed to the .NET Foundation under one or more agreements. 2 | // The .NET Foundation licenses this file to you under the MIT license. 3 | // See the LICENSE file in the project root for more information. 4 | 5 | #if WIN32 6 | 7 | namespace Microsoft.Toolkit.Uwp.Notifications 8 | { 9 | /// 10 | /// Event triggered when a notification is clicked. 11 | /// 12 | /// Arguments that specify what action was taken and the user inputs. 13 | public delegate void OnActivated(ToastNotificationActivatedEventArgsCompat e); 14 | } 15 | 16 | #endif -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.Notifications/Toasts/Elements/IElement_ToastActivatable.cs: -------------------------------------------------------------------------------- 1 | // Licensed to the .NET Foundation under one or more agreements. 2 | // The .NET Foundation licenses this file to you under the MIT license. 3 | // See the LICENSE file in the project root for more information. 4 | 5 | namespace Microsoft.Toolkit.Uwp.Notifications 6 | { 7 | internal interface IElement_ToastActivatable 8 | { 9 | Element_ToastActivationType ActivationType { get; set; } 10 | 11 | string ProtocolActivationTargetApplicationPfn { get; set; } 12 | 13 | ToastAfterActivationBehavior AfterActivationBehavior { get; set; } 14 | } 15 | } -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.Notifications/Toasts/IToastInput.cs: -------------------------------------------------------------------------------- 1 | // Licensed to the .NET Foundation under one or more agreements. 2 | // The .NET Foundation licenses this file to you under the MIT license. 3 | // See the LICENSE file in the project root for more information. 4 | 5 | namespace Microsoft.Toolkit.Uwp.Notifications 6 | { 7 | /// 8 | /// An input element on a Toast notification. One of or . 9 | /// 10 | public interface IToastInput 11 | { 12 | } 13 | } -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/.editorconfig: -------------------------------------------------------------------------------- 1 | [*.{cs,vb}] 2 | 3 | # SA1601: Partial elements should be documented 4 | dotnet_diagnostic.SA1601.severity = none 5 | dotnet_diagnostic.CS1573.severity = none 6 | dotnet_diagnostic.CS1591.severity = none 7 | dotnet_diagnostic.CS1712.severity = none -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/Assets/BrushAssets/NoiseTexture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/Assets/BrushAssets/NoiseTexture.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/Assets/BrushAssets/TileTexture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/Assets/BrushAssets/TileTexture.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/Assets/Helpers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/Assets/Helpers.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/Assets/Llama.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/Assets/Llama.mp3 -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/Assets/NotificationAssets/Cloudy-Square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/Assets/NotificationAssets/Cloudy-Square.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/Assets/NotificationAssets/Cloudy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/Assets/NotificationAssets/Cloudy.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/Assets/NotificationAssets/Drizzle-Square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/Assets/NotificationAssets/Drizzle-Square.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/Assets/NotificationAssets/Drizzle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/Assets/NotificationAssets/Drizzle.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/Assets/NotificationAssets/Haze-Square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/Assets/NotificationAssets/Haze-Square.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/Assets/NotificationAssets/Haze.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/Assets/NotificationAssets/Haze.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/Assets/NotificationAssets/Mostly Cloudy-Background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/Assets/NotificationAssets/Mostly Cloudy-Background.jpg -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/Assets/NotificationAssets/Mostly Cloudy-Square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/Assets/NotificationAssets/Mostly Cloudy-Square.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/Assets/NotificationAssets/Mostly Cloudy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/Assets/NotificationAssets/Mostly Cloudy.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/Assets/NotificationAssets/SampleLiveTiles.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/Assets/NotificationAssets/SampleLiveTiles.gif -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/Assets/NotificationAssets/SampleToast.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/Assets/NotificationAssets/SampleToast.gif -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/Assets/NotificationAssets/Slight Drizzle-Square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/Assets/NotificationAssets/Slight Drizzle-Square.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/Assets/NotificationAssets/Slight Drizzle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/Assets/NotificationAssets/Slight Drizzle.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/Assets/NotificationAssets/Snow-Square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/Assets/NotificationAssets/Snow-Square.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/Assets/NotificationAssets/Snow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/Assets/NotificationAssets/Snow.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/Assets/NotificationAssets/Sunny-Square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/Assets/NotificationAssets/Sunny-Square.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/Assets/NotificationAssets/Sunny.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/Assets/NotificationAssets/Sunny.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/Assets/NotificationAssets/Thunderstorms-Square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/Assets/NotificationAssets/Thunderstorms-Square.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/Assets/NotificationAssets/Thunderstorms.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/Assets/NotificationAssets/Thunderstorms.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/Assets/NotificationAssets/WeatherTileLarge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/Assets/NotificationAssets/WeatherTileLarge.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/Assets/NotificationAssets/WeatherTileMedium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/Assets/NotificationAssets/WeatherTileMedium.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/Assets/NotificationAssets/WeatherTileSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/Assets/NotificationAssets/WeatherTileSmall.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/Assets/NotificationAssets/WeatherTileWide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/Assets/NotificationAssets/WeatherTileWide.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/Assets/NotificationAssets/WeatherToast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/Assets/NotificationAssets/WeatherToast.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/Assets/People/dave.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/Assets/People/dave.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/Assets/People/david.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/Assets/People/david.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/Assets/People/giorgio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/Assets/People/giorgio.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/Assets/People/jeff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/Assets/People/jeff.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/Assets/People/nikola.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/Assets/People/nikola.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/Assets/People/pete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/Assets/People/pete.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/Assets/People/petri.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/Assets/People/petri.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/Assets/People/shen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/Assets/People/shen.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/Assets/People/vlad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/Assets/People/vlad.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/Assets/Photos/Backgrounds/HERO.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/Assets/Photos/Backgrounds/HERO.jpg -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/Assets/Photos/BigFourSummerHeat.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/Assets/Photos/BigFourSummerHeat.jpg -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/Assets/Photos/BisonBadlandsChillin.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/Assets/Photos/BisonBadlandsChillin.jpg -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/Assets/Photos/ColumbiaRiverGorge.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/Assets/Photos/ColumbiaRiverGorge.jpg -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/Assets/Photos/GiantSlabInOregon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/Assets/Photos/GiantSlabInOregon.jpg -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/Assets/Photos/GrandTetons.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/Assets/Photos/GrandTetons.jpg -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/Assets/Photos/ImageExPlaceholder.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/Assets/Photos/ImageExPlaceholder.jpg -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/Assets/Photos/LakeAnnMushroom.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/Assets/Photos/LakeAnnMushroom.jpg -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/Assets/Photos/LunchBreak.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/Assets/Photos/LunchBreak.jpg -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/Assets/Photos/MilkyWayStHelensHikePurple.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/Assets/Photos/MilkyWayStHelensHikePurple.jpg -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/Assets/Photos/MitchellButtes.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/Assets/Photos/MitchellButtes.jpg -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/Assets/Photos/MultnomahFalls.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/Assets/Photos/MultnomahFalls.jpg -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/Assets/Photos/NorthernCascadesReflection.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/Assets/Photos/NorthernCascadesReflection.jpg -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/Assets/Photos/NovemberHikeWaterfall.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/Assets/Photos/NovemberHikeWaterfall.jpg -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/Assets/Photos/OregonWineryNamaste.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/Assets/Photos/OregonWineryNamaste.jpg -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/Assets/Photos/Owl.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/Assets/Photos/Owl.jpg -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/Assets/Photos/PaintedHillsPathway.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/Assets/Photos/PaintedHillsPathway.jpg -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/Assets/Photos/RunningDogPacificCity.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/Assets/Photos/RunningDogPacificCity.jpg -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/Assets/Photos/ShootingOnAutoOnTheDrone.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/Assets/Photos/ShootingOnAutoOnTheDrone.jpg -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/Assets/Photos/SmithnRockDownTheRiverView.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/Assets/Photos/SmithnRockDownTheRiverView.jpg -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/Assets/Photos/SnowyInterbayt.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/Assets/Photos/SnowyInterbayt.jpg -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/Assets/Photos/SpeedTripleAtristsPoint.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/Assets/Photos/SpeedTripleAtristsPoint.jpg -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/Assets/Photos/Van.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/Assets/Photos/Van.jpg -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/Assets/Photos/WestSeattleView.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/Assets/Photos/WestSeattleView.jpg -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/Assets/ToolkitLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/Assets/ToolkitLogo.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/Assets/ToolkitLogoTransparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/Assets/ToolkitLogoTransparent.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/Assets/UWPCommunityToolkitSampleAppAppList.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/Assets/UWPCommunityToolkitSampleAppAppList.scale-100.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/Assets/UWPCommunityToolkitSampleAppAppList.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/Assets/UWPCommunityToolkitSampleAppAppList.scale-125.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/Assets/UWPCommunityToolkitSampleAppAppList.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/Assets/UWPCommunityToolkitSampleAppAppList.scale-150.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/Assets/UWPCommunityToolkitSampleAppAppList.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/Assets/UWPCommunityToolkitSampleAppAppList.scale-200.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/Assets/UWPCommunityToolkitSampleAppAppList.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/Assets/UWPCommunityToolkitSampleAppAppList.scale-400.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/Assets/UWPCommunityToolkitSampleAppAppList.targetsize-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/Assets/UWPCommunityToolkitSampleAppAppList.targetsize-16.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/Assets/UWPCommunityToolkitSampleAppAppList.targetsize-16_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/Assets/UWPCommunityToolkitSampleAppAppList.targetsize-16_altform-unplated.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/Assets/UWPCommunityToolkitSampleAppAppList.targetsize-20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/Assets/UWPCommunityToolkitSampleAppAppList.targetsize-20.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/Assets/UWPCommunityToolkitSampleAppAppList.targetsize-20_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/Assets/UWPCommunityToolkitSampleAppAppList.targetsize-20_altform-unplated.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/Assets/UWPCommunityToolkitSampleAppAppList.targetsize-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/Assets/UWPCommunityToolkitSampleAppAppList.targetsize-24.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/Assets/UWPCommunityToolkitSampleAppAppList.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/Assets/UWPCommunityToolkitSampleAppAppList.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/Assets/UWPCommunityToolkitSampleAppAppList.targetsize-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/Assets/UWPCommunityToolkitSampleAppAppList.targetsize-256.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/Assets/UWPCommunityToolkitSampleAppAppList.targetsize-256_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/Assets/UWPCommunityToolkitSampleAppAppList.targetsize-256_altform-unplated.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/Assets/UWPCommunityToolkitSampleAppAppList.targetsize-30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/Assets/UWPCommunityToolkitSampleAppAppList.targetsize-30.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/Assets/UWPCommunityToolkitSampleAppAppList.targetsize-30_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/Assets/UWPCommunityToolkitSampleAppAppList.targetsize-30_altform-unplated.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/Assets/UWPCommunityToolkitSampleAppAppList.targetsize-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/Assets/UWPCommunityToolkitSampleAppAppList.targetsize-32.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/Assets/UWPCommunityToolkitSampleAppAppList.targetsize-32_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/Assets/UWPCommunityToolkitSampleAppAppList.targetsize-32_altform-unplated.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/Assets/UWPCommunityToolkitSampleAppAppList.targetsize-36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/Assets/UWPCommunityToolkitSampleAppAppList.targetsize-36.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/Assets/UWPCommunityToolkitSampleAppAppList.targetsize-36_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/Assets/UWPCommunityToolkitSampleAppAppList.targetsize-36_altform-unplated.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/Assets/UWPCommunityToolkitSampleAppAppList.targetsize-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/Assets/UWPCommunityToolkitSampleAppAppList.targetsize-40.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/Assets/UWPCommunityToolkitSampleAppAppList.targetsize-40_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/Assets/UWPCommunityToolkitSampleAppAppList.targetsize-40_altform-unplated.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/Assets/UWPCommunityToolkitSampleAppAppList.targetsize-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/Assets/UWPCommunityToolkitSampleAppAppList.targetsize-48.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/Assets/UWPCommunityToolkitSampleAppAppList.targetsize-48_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/Assets/UWPCommunityToolkitSampleAppAppList.targetsize-48_altform-unplated.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/Assets/UWPCommunityToolkitSampleAppAppList.targetsize-60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/Assets/UWPCommunityToolkitSampleAppAppList.targetsize-60.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/Assets/UWPCommunityToolkitSampleAppAppList.targetsize-60_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/Assets/UWPCommunityToolkitSampleAppAppList.targetsize-60_altform-unplated.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/Assets/UWPCommunityToolkitSampleAppAppList.targetsize-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/Assets/UWPCommunityToolkitSampleAppAppList.targetsize-64.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/Assets/UWPCommunityToolkitSampleAppAppList.targetsize-64_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/Assets/UWPCommunityToolkitSampleAppAppList.targetsize-64_altform-unplated.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/Assets/UWPCommunityToolkitSampleAppAppList.targetsize-72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/Assets/UWPCommunityToolkitSampleAppAppList.targetsize-72.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/Assets/UWPCommunityToolkitSampleAppAppList.targetsize-72_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/Assets/UWPCommunityToolkitSampleAppAppList.targetsize-72_altform-unplated.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/Assets/UWPCommunityToolkitSampleAppAppList.targetsize-80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/Assets/UWPCommunityToolkitSampleAppAppList.targetsize-80.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/Assets/UWPCommunityToolkitSampleAppAppList.targetsize-80_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/Assets/UWPCommunityToolkitSampleAppAppList.targetsize-80_altform-unplated.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/Assets/UWPCommunityToolkitSampleAppAppList.targetsize-96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/Assets/UWPCommunityToolkitSampleAppAppList.targetsize-96.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/Assets/UWPCommunityToolkitSampleAppAppList.targetsize-96_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/Assets/UWPCommunityToolkitSampleAppAppList.targetsize-96_altform-unplated.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/Assets/UWPCommunityToolkitSampleAppBadgeLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/Assets/UWPCommunityToolkitSampleAppBadgeLogo.scale-100.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/Assets/UWPCommunityToolkitSampleAppBadgeLogo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/Assets/UWPCommunityToolkitSampleAppBadgeLogo.scale-125.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/Assets/UWPCommunityToolkitSampleAppBadgeLogo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/Assets/UWPCommunityToolkitSampleAppBadgeLogo.scale-150.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/Assets/UWPCommunityToolkitSampleAppBadgeLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/Assets/UWPCommunityToolkitSampleAppBadgeLogo.scale-200.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/Assets/UWPCommunityToolkitSampleAppBadgeLogo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/Assets/UWPCommunityToolkitSampleAppBadgeLogo.scale-400.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/Assets/UWPCommunityToolkitSampleAppLargeTile.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/Assets/UWPCommunityToolkitSampleAppLargeTile.scale-100.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/Assets/UWPCommunityToolkitSampleAppLargeTile.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/Assets/UWPCommunityToolkitSampleAppLargeTile.scale-125.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/Assets/UWPCommunityToolkitSampleAppLargeTile.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/Assets/UWPCommunityToolkitSampleAppLargeTile.scale-150.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/Assets/UWPCommunityToolkitSampleAppLargeTile.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/Assets/UWPCommunityToolkitSampleAppLargeTile.scale-200.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/Assets/UWPCommunityToolkitSampleAppLargeTile.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/Assets/UWPCommunityToolkitSampleAppLargeTile.scale-400.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/Assets/UWPCommunityToolkitSampleAppMedTile.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/Assets/UWPCommunityToolkitSampleAppMedTile.scale-100.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/Assets/UWPCommunityToolkitSampleAppMedTile.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/Assets/UWPCommunityToolkitSampleAppMedTile.scale-125.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/Assets/UWPCommunityToolkitSampleAppMedTile.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/Assets/UWPCommunityToolkitSampleAppMedTile.scale-150.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/Assets/UWPCommunityToolkitSampleAppMedTile.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/Assets/UWPCommunityToolkitSampleAppMedTile.scale-200.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/Assets/UWPCommunityToolkitSampleAppMedTile.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/Assets/UWPCommunityToolkitSampleAppMedTile.scale-400.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/Assets/UWPCommunityToolkitSampleAppSmallTile.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/Assets/UWPCommunityToolkitSampleAppSmallTile.scale-100.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/Assets/UWPCommunityToolkitSampleAppSmallTile.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/Assets/UWPCommunityToolkitSampleAppSmallTile.scale-125.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/Assets/UWPCommunityToolkitSampleAppSmallTile.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/Assets/UWPCommunityToolkitSampleAppSmallTile.scale-150.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/Assets/UWPCommunityToolkitSampleAppSmallTile.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/Assets/UWPCommunityToolkitSampleAppSmallTile.scale-200.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/Assets/UWPCommunityToolkitSampleAppSmallTile.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/Assets/UWPCommunityToolkitSampleAppSmallTile.scale-400.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/Assets/UWPCommunityToolkitSampleAppSplashScreen.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/Assets/UWPCommunityToolkitSampleAppSplashScreen.scale-100.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/Assets/UWPCommunityToolkitSampleAppSplashScreen.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/Assets/UWPCommunityToolkitSampleAppSplashScreen.scale-125.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/Assets/UWPCommunityToolkitSampleAppSplashScreen.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/Assets/UWPCommunityToolkitSampleAppSplashScreen.scale-150.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/Assets/UWPCommunityToolkitSampleAppSplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/Assets/UWPCommunityToolkitSampleAppSplashScreen.scale-200.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/Assets/UWPCommunityToolkitSampleAppSplashScreen.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/Assets/UWPCommunityToolkitSampleAppSplashScreen.scale-400.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/Assets/UWPCommunityToolkitSampleAppStoreLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/Assets/UWPCommunityToolkitSampleAppStoreLogo.scale-100.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/Assets/UWPCommunityToolkitSampleAppStoreLogo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/Assets/UWPCommunityToolkitSampleAppStoreLogo.scale-125.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/Assets/UWPCommunityToolkitSampleAppStoreLogo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/Assets/UWPCommunityToolkitSampleAppStoreLogo.scale-150.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/Assets/UWPCommunityToolkitSampleAppStoreLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/Assets/UWPCommunityToolkitSampleAppStoreLogo.scale-200.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/Assets/UWPCommunityToolkitSampleAppStoreLogo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/Assets/UWPCommunityToolkitSampleAppStoreLogo.scale-400.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/Assets/UWPCommunityToolkitSampleAppWideTile.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/Assets/UWPCommunityToolkitSampleAppWideTile.scale-100.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/Assets/UWPCommunityToolkitSampleAppWideTile.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/Assets/UWPCommunityToolkitSampleAppWideTile.scale-125.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/Assets/UWPCommunityToolkitSampleAppWideTile.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/Assets/UWPCommunityToolkitSampleAppWideTile.scale-150.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/Assets/UWPCommunityToolkitSampleAppWideTile.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/Assets/UWPCommunityToolkitSampleAppWideTile.scale-200.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/Assets/UWPCommunityToolkitSampleAppWideTile.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/Assets/UWPCommunityToolkitSampleAppWideTile.scale-400.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/Assets/Wide310x150Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/Assets/Wide310x150Logo.scale-400.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/Assets/checker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/Assets/checker.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/Assets/mslogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/Assets/mslogo.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/Common/IXamlRenderListener.cs: -------------------------------------------------------------------------------- 1 | // Licensed to the .NET Foundation under one or more agreements. 2 | // The .NET Foundation licenses this file to you under the MIT license. 3 | // See the LICENSE file in the project root for more information. 4 | 5 | using Windows.UI.Xaml; 6 | 7 | namespace Microsoft.Toolkit.Uwp.SampleApp 8 | { 9 | public interface IXamlRenderListener 10 | { 11 | void OnXamlRendered(FrameworkElement control); 12 | } 13 | } -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/Data/PhotoDataItem.cs: -------------------------------------------------------------------------------- 1 | // Licensed to the .NET Foundation under one or more agreements. 2 | // The .NET Foundation licenses this file to you under the MIT license. 3 | // See the LICENSE file in the project root for more information. 4 | 5 | namespace Microsoft.Toolkit.Uwp.SampleApp.Data 6 | { 7 | public class PhotoDataItem 8 | { 9 | public string Title { get; set; } 10 | 11 | public string Category { get; set; } 12 | 13 | public string Thumbnail { get; set; } 14 | 15 | public override string ToString() 16 | { 17 | return Title; 18 | } 19 | } 20 | } -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/Data/PhotoDataItemWithDimension.cs: -------------------------------------------------------------------------------- 1 | // Licensed to the .NET Foundation under one or more agreements. 2 | // The .NET Foundation licenses this file to you under the MIT license. 3 | // See the LICENSE file in the project root for more information. 4 | 5 | namespace Microsoft.Toolkit.Uwp.SampleApp.Data 6 | { 7 | public class PhotoDataItemWithDimension : PhotoDataItem 8 | { 9 | public double Width { get; set; } 10 | 11 | public double Height { get; set; } 12 | } 13 | } -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/Icons/About.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/Icons/About.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/Icons/Animations.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/Icons/Animations.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/Icons/Brushes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/Icons/Brushes.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/Icons/DeveloperTools.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/Icons/DeveloperTools.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/Icons/Error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/Icons/Error.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/Icons/Extensions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/Icons/Extensions.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/Icons/Foundation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/Icons/Foundation.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/Icons/Helpers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/Icons/Helpers.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/Icons/Layouts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/Icons/Layouts.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/Icons/More.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/Icons/More.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/Icons/Notifications.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/Icons/Notifications.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/Icons/Services.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/Icons/Services.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/Microsoft.Toolkit.Uwp.SampleApp_TemporaryKey.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/Microsoft.Toolkit.Uwp.SampleApp_TemporaryKey.pfx -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/MiddleClickScrolling-CursorType.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/MiddleClickScrolling-CursorType.res -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/Models/Email.cs: -------------------------------------------------------------------------------- 1 | // Licensed to the .NET Foundation under one or more agreements. 2 | // The .NET Foundation licenses this file to you under the MIT license. 3 | // See the LICENSE file in the project root for more information. 4 | 5 | using System; 6 | 7 | namespace Microsoft.Toolkit.Uwp.SampleApp.Models 8 | { 9 | public class Email 10 | { 11 | public string From { get; set; } 12 | 13 | public string Subject { get; set; } 14 | 15 | public string Body { get; set; } 16 | 17 | public Uri Thumbnail { get; set; } 18 | } 19 | } -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/Models/LandingPageLink.cs: -------------------------------------------------------------------------------- 1 | // Licensed to the .NET Foundation under one or more agreements. 2 | // The .NET Foundation licenses this file to you under the MIT license. 3 | // See the LICENSE file in the project root for more information. 4 | 5 | using System.Text.Json.Serialization; 6 | 7 | namespace Microsoft.Toolkit.Uwp.SampleApp 8 | { 9 | public class LandingPageLink 10 | { 11 | [JsonPropertyName("title")] 12 | public string Title { get; set; } 13 | 14 | [JsonPropertyName("url")] 15 | public string Url { get; set; } 16 | } 17 | } -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/Models/Option.cs: -------------------------------------------------------------------------------- 1 | // Licensed to the .NET Foundation under one or more agreements. 2 | // The .NET Foundation licenses this file to you under the MIT license. 3 | // See the LICENSE file in the project root for more information. 4 | 5 | using System; 6 | 7 | namespace Microsoft.Toolkit.Uwp.SampleApp 8 | { 9 | public class Option 10 | { 11 | public string Glyph { get; set; } 12 | 13 | public string Name { get; set; } 14 | 15 | public Type PageType { get; set; } 16 | 17 | public SampleCategory Tag { get; set; } 18 | } 19 | } -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/Models/PaneState.cs: -------------------------------------------------------------------------------- 1 | // Licensed to the .NET Foundation under one or more agreements. 2 | // The .NET Foundation licenses this file to you under the MIT license. 3 | // See the LICENSE file in the project root for more information. 4 | 5 | namespace Microsoft.Toolkit.Uwp.SampleApp.Models 6 | { 7 | public enum PaneState 8 | { 9 | None, 10 | Closed, 11 | Normal, 12 | Full 13 | } 14 | } -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/Models/PropertyDescriptor/PropertyKind.cs: -------------------------------------------------------------------------------- 1 | // Licensed to the .NET Foundation under one or more agreements. 2 | // The .NET Foundation licenses this file to you under the MIT license. 3 | // See the LICENSE file in the project root for more information. 4 | 5 | namespace Microsoft.Toolkit.Uwp.SampleApp.Models 6 | { 7 | public enum PropertyKind 8 | { 9 | Slider, 10 | DoubleSlider, 11 | String, 12 | Enum, 13 | Bool, 14 | Brush, 15 | TimeSpan, 16 | Thickness, 17 | Vector3, 18 | } 19 | } -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/Models/PropertyDescriptor/SliderPropertyOptions.cs: -------------------------------------------------------------------------------- 1 | // Licensed to the .NET Foundation under one or more agreements. 2 | // The .NET Foundation licenses this file to you under the MIT license. 3 | // See the LICENSE file in the project root for more information. 4 | 5 | namespace Microsoft.Toolkit.Uwp.SampleApp.Models 6 | { 7 | public class SliderPropertyOptions : PropertyOptions 8 | { 9 | public double MinValue { get; set; } 10 | 11 | public double MaxValue { get; set; } 12 | 13 | public double Step { get; set; } = 1; 14 | } 15 | } -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/Models/SampleCategory.cs: -------------------------------------------------------------------------------- 1 | // Licensed to the .NET Foundation under one or more agreements. 2 | // The .NET Foundation licenses this file to you under the MIT license. 3 | // See the LICENSE file in the project root for more information. 4 | 5 | namespace Microsoft.Toolkit.Uwp.SampleApp 6 | { 7 | public class SampleCategory 8 | { 9 | public string Name { get; set; } 10 | 11 | public Sample[] Samples { get; set; } 12 | 13 | public string Icon { get; set; } 14 | } 15 | } -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/SamplePages/AcrylicBrush/AcrylicBrush.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/SamplePages/AcrylicBrush/AcrylicBrush.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/SamplePages/AdaptiveGridView/AdaptiveGridView.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/SamplePages/AdaptiveGridView/AdaptiveGridView.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/SamplePages/AdvancedCollectionView/AdvancedCollectionView.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/SamplePages/AdvancedCollectionView/AdvancedCollectionView.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/SamplePages/AlignmentGrid/AlignmentGrid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/SamplePages/AlignmentGrid/AlignmentGrid.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/SamplePages/AlignmentGrid/AlignmentGridPage.xaml: -------------------------------------------------------------------------------- 1 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/SamplePages/AlignmentGrid/AlignmentGridPage.xaml.cs: -------------------------------------------------------------------------------- 1 | // Licensed to the .NET Foundation under one or more agreements. 2 | // The .NET Foundation licenses this file to you under the MIT license. 3 | // See the LICENSE file in the project root for more information. 4 | 5 | using Microsoft.Toolkit.Uwp.SampleApp.Models; 6 | 7 | using Windows.UI.Xaml.Navigation; 8 | 9 | namespace Microsoft.Toolkit.Uwp.SampleApp.SamplePages 10 | { 11 | public sealed partial class AlignmentGridPage 12 | { 13 | public AlignmentGridPage() 14 | { 15 | InitializeComponent(); 16 | } 17 | } 18 | } -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/SamplePages/Animations/Activities/InvokeActionsActivityCode.bind: -------------------------------------------------------------------------------- 1 | using Microsoft.Toolkit.Uwp.UI.Animations; 2 | 3 | // Fade out the TextBlock 4 | await AnimationBuilder 5 | .Create() 6 | .Opacity(from: 1, to: 0, duration: TimeSpan.FromSeconds(1), easingType: EasingType.Linear) 7 | .StartAsync(MyText); 8 | 9 | // Change the text and the sound here... 10 | 11 | // Fade the TextBlock back in 12 | await AnimationBuilder 13 | .Create() 14 | .Opacity(to: 1, duration: TimeSpan.FromSeconds(1), easingType: EasingType.Linear) 15 | .StartAsync(MyText); -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/SamplePages/Animations/Behaviors/BlurBehavior.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/SamplePages/Animations/Behaviors/BlurBehavior.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/SamplePages/Animations/Behaviors/OffsetBehavior.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/SamplePages/Animations/Behaviors/OffsetBehavior.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/SamplePages/Animations/Behaviors/RotateBehavior.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/SamplePages/Animations/Behaviors/RotateBehavior.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/SamplePages/Animations/Behaviors/RotateBehaviorCode.bind: -------------------------------------------------------------------------------- 1 | // XAML UIElement 2 | 3 | 4 | // C# - Rotate can be applied to any UIElement. In this case it is an image called ToolkitLogo. 5 | using Microsoft.Toolkit.Uwp.UI.Animations; 6 | 7 | await AnimationBuilder.Create().RotationInDegrees(to: 90, duration: TimeSpan.FromSeconds(3)).StartAsync(ToolkitLogo); 8 | -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/SamplePages/Animations/Behaviors/SaturationBehavior.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/SamplePages/Animations/Behaviors/SaturationBehavior.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/SamplePages/Animations/Behaviors/ScaleBehavior.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/SamplePages/Animations/Behaviors/ScaleBehavior.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/SamplePages/Animations/Behaviors/ScaleBehaviorCode.bind: -------------------------------------------------------------------------------- 1 | // XAML UIElement 2 | 3 | 4 | // C# - Scale can be applied to any UIElement. In this case it is an image called ToolkitLogo. 5 | using Microsoft.Toolkit.Uwp.UI.Animations; 6 | 7 | await AnimationBuilder.Create().Scale(to: new Vector2(1.4f), duration: TimeSpan.FromSeconds(3)).StartAsync(ToolkitLogo); 8 | -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/SamplePages/Animations/Effects/EffectAnimations.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/SamplePages/Animations/Effects/EffectAnimations.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/SamplePages/Animations/Effects/FadeBehavior.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/SamplePages/Animations/Effects/FadeBehavior.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/SamplePages/Animations/Effects/FadeBehaviorCode.bind: -------------------------------------------------------------------------------- 1 | // XAML UIElement 2 | 3 | 4 | // C# - Fade can be applied to any UIElement. In this case it is an image called ToolkitLogo. 5 | using Microsoft.Toolkit.Uwp.UI.Animations; 6 | 7 | // Create and start the animation 8 | await AnimationBuilder.Create().Opacity(to: 0.5, duration: TimeSpan.FromSeconds(3)).StartAsync(ToolkitLogo); 9 | -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/SamplePages/AutoFocusBehavior/AutoFocusBehaviorPage.xaml.cs: -------------------------------------------------------------------------------- 1 | // Licensed to the .NET Foundation under one or more agreements. 2 | // The .NET Foundation licenses this file to you under the MIT license. 3 | // See the LICENSE file in the project root for more information. 4 | 5 | using Windows.UI.Xaml.Controls; 6 | 7 | namespace Microsoft.Toolkit.Uwp.SampleApp.SamplePages 8 | { 9 | /// 10 | /// A page that shows how to use the AutoFocusBehavior 11 | /// 12 | public sealed partial class AutoFocusBehaviorPage : Page 13 | { 14 | public AutoFocusBehaviorPage() => InitializeComponent(); 15 | } 16 | } -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/SamplePages/BackdropBlurBrush/BackdropBlurBrush.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/SamplePages/BackdropBlurBrush/BackdropBlurBrush.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/SamplePages/BackdropGammaTransferBrush/BackdropGammaTransferBrush.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/SamplePages/BackdropGammaTransferBrush/BackdropGammaTransferBrush.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/SamplePages/BackdropInvertBrush/BackdropInvertBrush.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/SamplePages/BackdropInvertBrush/BackdropInvertBrush.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/SamplePages/BackdropSaturationBrush/BackdropSaturationBrush.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/SamplePages/BackdropSaturationBrush/BackdropSaturationBrush.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/SamplePages/BackdropSepiaBrush/BackdropSepiaBrush.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/SamplePages/BackdropSepiaBrush/BackdropSepiaBrush.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/SamplePages/BackgroundTaskHelper/BackgroundTaskHelper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/SamplePages/BackgroundTaskHelper/BackgroundTaskHelper.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/SamplePages/BladeView/BladeView.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/SamplePages/BladeView/BladeView.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/SamplePages/BluetoothLEHelper/BluetoothLEHelper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/SamplePages/BluetoothLEHelper/BluetoothLEHelper.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/SamplePages/CameraHelper/CameraHelper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/SamplePages/CameraHelper/CameraHelper.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/SamplePages/CameraPreview/CameraPreview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/SamplePages/CameraPreview/CameraPreview.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/SamplePages/CameraPreview/CameraPreviewPage.xaml: -------------------------------------------------------------------------------- 1 | 10 | -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/SamplePages/CanvasPathGeometry/CanvasPathGeometry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/SamplePages/CanvasPathGeometry/CanvasPathGeometry.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/SamplePages/Carousel/Carousel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/SamplePages/Carousel/Carousel.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/SamplePages/Carousel/CarouselPage.xaml: -------------------------------------------------------------------------------- 1 | 8 | 9 | -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/SamplePages/ClipToBounds/ClipToBoundsPage.xaml: -------------------------------------------------------------------------------- 1 | 9 | 10 | 12 | 13 | -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/SamplePages/ClipToBounds/ClipToBoundsPage.xaml.cs: -------------------------------------------------------------------------------- 1 | // Licensed to the .NET Foundation under one or more agreements. 2 | // The .NET Foundation licenses this file to you under the MIT license. 3 | // See the LICENSE file in the project root for more information. 4 | 5 | using Windows.UI.Xaml.Controls; 6 | 7 | namespace Microsoft.Toolkit.Uwp.SampleApp.SamplePages 8 | { 9 | /// 10 | /// A page that shows how to use the ClipToBounds extension. 11 | /// 12 | public sealed partial class ClipToBoundsPage : Page 13 | { 14 | public ClipToBoundsPage() => InitializeComponent(); 15 | } 16 | } -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/SamplePages/ColorPicker/ColorPicker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/SamplePages/ColorPicker/ColorPicker.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/SamplePages/Connected Animations/ConnectedAnimations.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/SamplePages/Connected Animations/ConnectedAnimations.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/SamplePages/DataGrid/DataGrid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/SamplePages/DataGrid/DataGrid.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/SamplePages/DataGrid/DataGridPage.xaml: -------------------------------------------------------------------------------- 1 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/SamplePages/DispatcherQueueHelper/DispatchQueueHelper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/SamplePages/DispatcherQueueHelper/DispatchQueueHelper.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/SamplePages/DockPanel/DockPanel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/SamplePages/DockPanel/DockPanel.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/SamplePages/EnumValuesExtension/Animal.cs: -------------------------------------------------------------------------------- 1 | // Licensed to the .NET Foundation under one or more agreements. 2 | // The .NET Foundation licenses this file to you under the MIT license. 3 | // See the LICENSE file in the project root for more information. 4 | 5 | namespace Microsoft.Toolkit.Uwp.SampleApp.Enums 6 | { 7 | public enum Animal 8 | { 9 | Cat, 10 | Dog, 11 | Bunny, 12 | Llama, 13 | Parrot, 14 | Squirrel 15 | } 16 | } -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/SamplePages/Expander/Expander.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/SamplePages/Expander/Expander.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/SamplePages/Expander/ExpanderPage.xaml: -------------------------------------------------------------------------------- 1 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/SamplePages/Eyedropper/Eyedropper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/SamplePages/Eyedropper/Eyedropper.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/SamplePages/Eyedropper/EyedropperPage.xaml: -------------------------------------------------------------------------------- 1 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/SamplePages/FadeHeader/FadeHeaderBehavior.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/SamplePages/FadeHeader/FadeHeaderBehavior.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/SamplePages/FadeHeader/FadeHeaderBehaviorCode.bind: -------------------------------------------------------------------------------- 1 | // Implicit Implementation 2 | Interaction.GetBehaviors(MyListView).Add(new FadeHeaderBehavior()); 3 | 4 | // Explicit Implementation 5 | Interaction.GetBehaviors(MyListView).Add(new FadeHeaderBehavior { HeaderElement = MyHeaderGrid }); -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/SamplePages/FocusBehavior/FocusBehaviorPage.xaml.cs: -------------------------------------------------------------------------------- 1 | // Licensed to the .NET Foundation under one or more agreements. 2 | // The .NET Foundation licenses this file to you under the MIT license. 3 | // See the LICENSE file in the project root for more information. 4 | 5 | using Windows.UI.Xaml.Controls; 6 | 7 | namespace Microsoft.Toolkit.Uwp.SampleApp.SamplePages 8 | { 9 | /// 10 | /// A page that shows how to use the FocusBehavior 11 | /// 12 | public sealed partial class FocusBehaviorPage : Page 13 | { 14 | public FocusBehaviorPage() => InitializeComponent(); 15 | } 16 | } -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/SamplePages/FocusTracker/FocusTracker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/SamplePages/FocusTracker/FocusTracker.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/SamplePages/FocusTracker/FocusTrackerPage.xaml: -------------------------------------------------------------------------------- 1 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/SamplePages/FocusTracker/FocusTrackerPage.xaml.cs: -------------------------------------------------------------------------------- 1 | // Licensed to the .NET Foundation under one or more agreements. 2 | // The .NET Foundation licenses this file to you under the MIT license. 3 | // See the LICENSE file in the project root for more information. 4 | 5 | using Microsoft.Toolkit.Uwp.SampleApp.Models; 6 | 7 | using Windows.UI.Xaml.Navigation; 8 | 9 | namespace Microsoft.Toolkit.Uwp.SampleApp.SamplePages 10 | { 11 | public sealed partial class FocusTrackerPage 12 | { 13 | public FocusTrackerPage() 14 | { 15 | InitializeComponent(); 16 | } 17 | } 18 | } -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/SamplePages/GazeInteraction/GazeInteraction.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/SamplePages/GazeInteraction/GazeInteraction.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/SamplePages/GazeTracing/GazeTracing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/SamplePages/GazeTracing/GazeTracing.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/SamplePages/GazeTracing/GazeTracingPage.xaml: -------------------------------------------------------------------------------- 1 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/SamplePages/Graph/LoginButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/SamplePages/Graph/LoginButton.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/SamplePages/Graph/PeoplePicker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/SamplePages/Graph/PeoplePicker.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/SamplePages/Graph/PersonView.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/SamplePages/Graph/PersonView.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/SamplePages/GridSplitter/GridSplitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/SamplePages/GridSplitter/GridSplitter.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/SamplePages/GridSplitter/GridSplitterPage.xaml: -------------------------------------------------------------------------------- 1 | 8 | 9 | -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/SamplePages/GridSplitter/GridSplitterPage.xaml.cs: -------------------------------------------------------------------------------- 1 | // Licensed to the .NET Foundation under one or more agreements. 2 | // The .NET Foundation licenses this file to you under the MIT license. 3 | // See the LICENSE file in the project root for more information. 4 | 5 | using Microsoft.Toolkit.Uwp.SampleApp.Models; 6 | using Windows.UI.Xaml.Controls; 7 | using Windows.UI.Xaml.Navigation; 8 | 9 | namespace Microsoft.Toolkit.Uwp.SampleApp.SamplePages 10 | { 11 | public sealed partial class GridSplitterPage : Page 12 | { 13 | public GridSplitterPage() 14 | { 15 | InitializeComponent(); 16 | } 17 | } 18 | } -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/SamplePages/HeaderedContentControl/HeaderedContentControl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/SamplePages/HeaderedContentControl/HeaderedContentControl.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/SamplePages/HeaderedItemsControl/HeaderedItemsControl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/SamplePages/HeaderedItemsControl/HeaderedItemsControl.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/SamplePages/HeaderedItemsControl/HeaderedItemsControlPage.xaml: -------------------------------------------------------------------------------- 1 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/SamplePages/ImageBlendBrush/ImageBlendBrush.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/SamplePages/ImageBlendBrush/ImageBlendBrush.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/SamplePages/ImageCache/ImageCache.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/SamplePages/ImageCache/ImageCache.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/SamplePages/ImageCache/ImageCacheCode.bind: -------------------------------------------------------------------------------- 1 | // Define max memory cache size 2 | ImageCache.Instance.MaxMemoryCacheCount = 200; 3 | 4 | // Precache data and save it in memory 5 | await ImageCache.Instance.PreCacheAsync(new Uri(item.Thumbnail), Path.GetFileName(item.Thumbnail), true); 6 | 7 | // Precache data and save it in on local hard drive 8 | await ImageCache.Instance.PreCacheAsync(new Uri(item.Thumbnail), Path.GetFileName(item.Thumbnail), false); 9 | 10 | // Clear cache 11 | await ImageCache.Instance.ClearAsync(); -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/SamplePages/ImageCropper/AspectRatioConfig.cs: -------------------------------------------------------------------------------- 1 | // Licensed to the .NET Foundation under one or more agreements. 2 | // The .NET Foundation licenses this file to you under the MIT license. 3 | // See the LICENSE file in the project root for more information. 4 | 5 | namespace Microsoft.Toolkit.Uwp.SampleApp.SamplePages 6 | { 7 | public class AspectRatioConfig 8 | { 9 | public string Name { get; set; } 10 | 11 | public double? AspectRatio { get; set; } 12 | } 13 | } -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/SamplePages/ImageCropper/ImageCropper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/SamplePages/ImageCropper/ImageCropper.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/SamplePages/ImageEx/ImageEx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/SamplePages/ImageEx/ImageEx.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/SamplePages/ImageEx/ImageExPage.xaml: -------------------------------------------------------------------------------- 1 | 8 | 9 | -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/SamplePages/Implicit Animations/ImplicitAnimations.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/SamplePages/Implicit Animations/ImplicitAnimations.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/SamplePages/InAppNotification/InAppNotification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/SamplePages/InAppNotification/InAppNotification.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/SamplePages/Incremental Loading Collection/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/SamplePages/Incremental Loading Collection/icon.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/SamplePages/InfiniteCanvas/InfiniteCanvas.bind: -------------------------------------------------------------------------------- 1 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/SamplePages/InfiniteCanvas/InfiniteCanvas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/SamplePages/InfiniteCanvas/InfiniteCanvas.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/SamplePages/InfiniteCanvas/InfiniteCanvasPage.xaml: -------------------------------------------------------------------------------- 1 | 9 | -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/SamplePages/ItemsReorderAnimation/ItemsReorderAnimation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/SamplePages/ItemsReorderAnimation/ItemsReorderAnimation.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/SamplePages/LayoutTransformControl/LayoutTransformControl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/SamplePages/LayoutTransformControl/LayoutTransformControl.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/SamplePages/ListDetailsView/ListDetailsView.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/SamplePages/ListDetailsView/ListDetailsView.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/SamplePages/ListDetailsView/OneDriveLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/SamplePages/ListDetailsView/OneDriveLogo.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/SamplePages/ListViewExtensions/ListViewExtensionsCode.bind: -------------------------------------------------------------------------------- 1 | 2 | 3 | using Microsoft.Toolkit.Uwp.UI; 4 | 5 | // Scrolling with index 6 | await MyGridView.SmoothScrollIntoViewWithIndexAsync(index: int, itemPlacement: ScrollItemPlacement, disableAnimation: bool, scrollIfVisibile: bool, additionalHorizontalOffset: int, additionalVerticalOffset: int); 7 | 8 | // Scrolling with item 9 | await MyGridView.SmoothScrollIntoViewWithItemAsync(item: object, itemPlacement: ScrollItemPlacement, disableAnimation: bool, scrollIfVisibile: bool, additionalHorizontalOffset: int, additionalVerticalOffset: int); 10 | -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/SamplePages/LiveTile/LiveTile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/SamplePages/LiveTile/LiveTile.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/SamplePages/Loading/Loading.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/SamplePages/Loading/Loading.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/SamplePages/MarkdownTextBlock/MarkdownTextBlock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/SamplePages/MarkdownTextBlock/MarkdownTextBlock.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/SamplePages/MarkdownTextBlock/MarkdownTextBlockCode.bind: -------------------------------------------------------------------------------- 1 | // How to download .md content from the web and display it 2 | using (var client = new HttpClient()) 3 | { 4 | try 5 | { 6 | MarkdownTextBlockTextblock.Text = await client.GetStringAsync(feed); 7 | } 8 | catch { } 9 | } 10 | 11 | // Custom Code Block Renderer 12 | private void MarkdownText_CodeBlockResolving(object sender, CodeBlockResolvingEventArgs e) 13 | { 14 | if (e.CodeLanguage == "CUSTOM") 15 | { 16 | e.Handled = true; 17 | e.InlineCollection.Add(new Run { Foreground = new SolidColorBrush(Colors.Red), Text = e.Text, FontWeight = FontWeights.Bold }); 18 | } 19 | } -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/SamplePages/MarkdownTextBlock/MarkdownTextBlockPage.xaml: -------------------------------------------------------------------------------- 1 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/SamplePages/Menu/Menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/SamplePages/Menu/Menu.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/SamplePages/MetadataControl/MetadataControl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/SamplePages/MetadataControl/MetadataControl.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/SamplePages/Mouse/MouseCursor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/SamplePages/Mouse/MouseCursor.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/SamplePages/NetworkHelper/NetworkHelper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/SamplePages/NetworkHelper/NetworkHelper.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/SamplePages/Object Storage/ObjectStorage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/SamplePages/Object Storage/ObjectStorage.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/SamplePages/OnDevice/OnDevice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/SamplePages/OnDevice/OnDevice.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/SamplePages/OnDevice/OnDevicePage.xaml: -------------------------------------------------------------------------------- 1 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/SamplePages/OrbitView/OrbitView.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/SamplePages/OrbitView/OrbitView.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/SamplePages/PipelineBrush/PipelineBrush.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/SamplePages/PipelineBrush/PipelineBrush.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/SamplePages/Primitives/ConstrainedBox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/SamplePages/Primitives/ConstrainedBox.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/SamplePages/Primitives/SwitchPresenter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/SamplePages/Primitives/SwitchPresenter.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/SamplePages/PrintHelper/PrintHelper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/SamplePages/PrintHelper/PrintHelper.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/SamplePages/RadialGauge/RadialGauge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/SamplePages/RadialGauge/RadialGauge.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/SamplePages/RadialGauge/RadialGaugePage.xaml: -------------------------------------------------------------------------------- 1 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/SamplePages/RadialGauge/RadialGaugePage.xaml.cs: -------------------------------------------------------------------------------- 1 | // Licensed to the .NET Foundation under one or more agreements. 2 | // The .NET Foundation licenses this file to you under the MIT license. 3 | // See the LICENSE file in the project root for more information. 4 | 5 | using Windows.UI.Xaml.Controls; 6 | 7 | namespace Microsoft.Toolkit.Uwp.SampleApp.SamplePages 8 | { 9 | public sealed partial class RadialGaugePage : Page 10 | { 11 | public RadialGaugePage() 12 | { 13 | InitializeComponent(); 14 | } 15 | } 16 | } -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/SamplePages/RadialGradientBrush/RadialGradientBrush.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/SamplePages/RadialGradientBrush/RadialGradientBrush.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/SamplePages/RadialProgressBar/RadialProgressBar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/SamplePages/RadialProgressBar/RadialProgressBar.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/SamplePages/RadialProgressBar/RadialProgressBarPage.xaml: -------------------------------------------------------------------------------- 1 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/SamplePages/RadialProgressBar/RadialProgressBarPage.xaml.cs: -------------------------------------------------------------------------------- 1 | // Licensed to the .NET Foundation under one or more agreements. 2 | // The .NET Foundation licenses this file to you under the MIT license. 3 | // See the LICENSE file in the project root for more information. 4 | 5 | using Windows.UI.Xaml.Controls; 6 | 7 | namespace Microsoft.Toolkit.Uwp.SampleApp.SamplePages 8 | { 9 | public sealed partial class RadialProgressBarPage : Page 10 | { 11 | public RadialProgressBarPage() 12 | { 13 | InitializeComponent(); 14 | } 15 | } 16 | } -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/SamplePages/RangeSelector/RangeSelector.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/SamplePages/RangeSelector/RangeSelector.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/SamplePages/RemoteDeviceHelper/RemoteDeviceHelper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/SamplePages/RemoteDeviceHelper/RemoteDeviceHelper.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/SamplePages/RemoteDevicePicker/RemoteDevicePicker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/SamplePages/RemoteDevicePicker/RemoteDevicePicker.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/SamplePages/RichSuggestBox/RichSuggestBox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/SamplePages/RichSuggestBox/RichSuggestBox.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/SamplePages/RotatorTile/RotatorTile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/SamplePages/RotatorTile/RotatorTile.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/SamplePages/RotatorTile/RotatorTilePage.xaml: -------------------------------------------------------------------------------- 1 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/SamplePages/ScrollHeader/ScrollHeader.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/SamplePages/ScrollHeader/ScrollHeader.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/SamplePages/Shadows/AttachedDropShadowPage.xaml: -------------------------------------------------------------------------------- 1 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/SamplePages/Shadows/DropShadowPanel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/SamplePages/Shadows/DropShadowPanel.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/SamplePages/Shadows/Trex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/SamplePages/Shadows/Trex.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/SamplePages/Shadows/Unicorn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/SamplePages/Shadows/Unicorn.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/SamplePages/StaggeredLayout/StaggeredLayout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/SamplePages/StaggeredLayout/StaggeredLayout.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/SamplePages/StaggeredPanel/StaggeredPanel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/SamplePages/StaggeredPanel/StaggeredPanel.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/SamplePages/SurfaceDialTextbox/SurfaceDialTextbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/SamplePages/SurfaceDialTextbox/SurfaceDialTextbox.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/SamplePages/SystemInformation/SystemInformation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/SamplePages/SystemInformation/SystemInformation.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/SamplePages/TabbedCommandBar/TabbedCommandBar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/SamplePages/TabbedCommandBar/TabbedCommandBar.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/SamplePages/TextBoxMask/TextBoxMask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/SamplePages/TextBoxMask/TextBoxMask.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/SamplePages/TextBoxRegex/TextBoxRegex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/SamplePages/TextBoxRegex/TextBoxRegex.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/SamplePages/TextBoxRegex/TextBoxRegexPage.xaml.cs: -------------------------------------------------------------------------------- 1 | // Licensed to the .NET Foundation under one or more agreements. 2 | // The .NET Foundation licenses this file to you under the MIT license. 3 | // See the LICENSE file in the project root for more information. 4 | 5 | using Windows.UI.Xaml.Controls; 6 | 7 | namespace Microsoft.Toolkit.Uwp.SampleApp.SamplePages 8 | { 9 | /// 10 | /// TextBoxRegex sample page 11 | /// 12 | public sealed partial class TextBoxRegexPage : Page 13 | { 14 | public TextBoxRegexPage() 15 | { 16 | InitializeComponent(); 17 | } 18 | } 19 | } -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/SamplePages/TextToolbar/TextToolbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/SamplePages/TextToolbar/TextToolbar.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/SamplePages/TileControl/Animations.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/SamplePages/TileControl/Animations.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/SamplePages/TileControl/TileControl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/SamplePages/TileControl/TileControl.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/SamplePages/TileControl/TileControlPage.xaml.cs: -------------------------------------------------------------------------------- 1 | // Licensed to the .NET Foundation under one or more agreements. 2 | // The .NET Foundation licenses this file to you under the MIT license. 3 | // See the LICENSE file in the project root for more information. 4 | 5 | using Microsoft.Toolkit.Uwp.SampleApp.Models; 6 | using Windows.UI.Xaml.Navigation; 7 | 8 | namespace Microsoft.Toolkit.Uwp.SampleApp.SamplePages 9 | { 10 | public sealed partial class TileControlPage 11 | { 12 | public TileControlPage() 13 | { 14 | InitializeComponent(); 15 | } 16 | } 17 | } -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/SamplePages/TilesBrush/TilesBrush.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/SamplePages/TilesBrush/TilesBrush.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/SamplePages/Toast/Toast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/SamplePages/Toast/Toast.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/SamplePages/TokenizingTextBox/TokenizingTextBox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/SamplePages/TokenizingTextBox/TokenizingTextBox.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/SamplePages/UniformGrid/UniformGrid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/SamplePages/UniformGrid/UniformGrid.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/SamplePages/UniformGrid/UniformGridPage.xaml: -------------------------------------------------------------------------------- 1 | 9 | 10 | -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/SamplePages/UniformGrid/UniformGridPage.xaml.cs: -------------------------------------------------------------------------------- 1 | // Licensed to the .NET Foundation under one or more agreements. 2 | // The .NET Foundation licenses this file to you under the MIT license. 3 | // See the LICENSE file in the project root for more information. 4 | 5 | namespace Microsoft.Toolkit.Uwp.SampleApp.SamplePages 6 | { 7 | public sealed partial class UniformGridPage 8 | { 9 | public UniformGridPage() 10 | { 11 | InitializeComponent(); 12 | } 13 | } 14 | } -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/SamplePages/ViewExtensions/ViewExtensions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/SamplePages/ViewExtensions/ViewExtensions.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/SamplePages/ViewportBehavior/ViewportBehavior.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/SamplePages/ViewportBehavior/ViewportBehavior.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/SamplePages/Visual Extensions/VisualExtensions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/SamplePages/Visual Extensions/VisualExtensions.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/SamplePages/Visual Extensions/VisualExtensionsPage.xaml.cs: -------------------------------------------------------------------------------- 1 | // Licensed to the .NET Foundation under one or more agreements. 2 | // The .NET Foundation licenses this file to you under the MIT license. 3 | // See the LICENSE file in the project root for more information. 4 | 5 | using Windows.UI.Xaml.Controls; 6 | 7 | namespace Microsoft.Toolkit.Uwp.SampleApp.SamplePages 8 | { 9 | public sealed partial class VisualExtensionsPage : Page 10 | { 11 | public VisualExtensionsPage() 12 | { 13 | this.InitializeComponent(); 14 | } 15 | } 16 | } -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/SamplePages/WeatherLiveTileAndToast/WeatherLiveTileAndToast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/SamplePages/WeatherLiveTileAndToast/WeatherLiveTileAndToast.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/SamplePages/WrapLayout/WrapLayout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/SamplePages/WrapLayout/WrapLayout.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.SampleApp/SamplePages/WrapPanel/WrapPanel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.SampleApp/SamplePages/WrapPanel/WrapPanel.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.UI.Animations/ConnectedAnimations/ConnectedAnimationListProperty.cs: -------------------------------------------------------------------------------- 1 | // Licensed to the .NET Foundation under one or more agreements. 2 | // The .NET Foundation licenses this file to you under the MIT license. 3 | // See the LICENSE file in the project root for more information. 4 | 5 | namespace Microsoft.Toolkit.Uwp.UI.Animations 6 | { 7 | internal class ConnectedAnimationListProperty 8 | { 9 | public string ElementName { get; set; } 10 | 11 | public Windows.UI.Xaml.Controls.ListViewBase ListViewBase { get; set; } 12 | } 13 | } -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.UI.Animations/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | // Licensed to the .NET Foundation under one or more agreements. 2 | // The .NET Foundation licenses this file to you under the MIT license. 3 | // See the LICENSE file in the project root for more information. 4 | 5 | using System.Runtime.CompilerServices; 6 | 7 | [assembly: InternalsVisibleTo("Microsoft.Toolkit.Uwp.UI.Behaviors")] 8 | [assembly: InternalsVisibleTo("Microsoft.Toolkit.Uwp.UI.Media")] 9 | -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.UI.Animations/Properties/IsExternalInit.cs: -------------------------------------------------------------------------------- 1 | // Licensed to the .NET Foundation under one or more agreements. 2 | // The .NET Foundation licenses this file to you under the MIT license. 3 | // See the LICENSE file in the project root for more information. 4 | 5 | using System.ComponentModel; 6 | 7 | namespace System.Runtime.CompilerServices 8 | { 9 | /// 10 | /// Reserved to be used by the compiler for tracking metadata. 11 | /// This class should not be used by developers in source code. 12 | /// 13 | [EditorBrowsable(EditorBrowsableState.Never)] 14 | internal static class IsExternalInit 15 | { 16 | } 17 | } -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.UI.Animations/Properties/Microsoft.Toolkit.Uwp.UI.Animations.rd.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.UI.Behaviors/ApiInformationHelper.cs: -------------------------------------------------------------------------------- 1 | // Licensed to the .NET Foundation under one or more agreements. 2 | // The .NET Foundation licenses this file to you under the MIT license. 3 | // See the LICENSE file in the project root for more information. 4 | 5 | using Windows.Foundation.Metadata; 6 | 7 | namespace Microsoft.Toolkit.Uwp.UI.Behaviors 8 | { 9 | internal class ApiInformationHelper 10 | { 11 | // 1903 - 18362 12 | public static bool IsXamlRootAvailable { get; } = ApiInformation.IsPropertyPresent("Windows.UI.Xaml.UIElement", "XamlRoot"); 13 | } 14 | } -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.UI.Behaviors/Properties/Microsoft.Toolkit.Uwp.UI.Behaviors.rd.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.UI.Controls.Core.Design/Controls/ImageEx.Typedata.cs: -------------------------------------------------------------------------------- 1 | // Licensed to the .NET Foundation under one or more agreements. 2 | // The .NET Foundation licenses this file to you under the MIT license. 3 | // See the LICENSE file in the project root for more information. 4 | 5 | using System; 6 | 7 | namespace Microsoft.Toolkit.Uwp.UI.Controls.Design 8 | { 9 | internal static partial class ControlTypes 10 | { 11 | internal const string ImageEx = RootNamespace + "." + nameof(ImageEx); 12 | } 13 | 14 | internal static class ImageEx 15 | { 16 | internal const string NineGrid = nameof(NineGrid); 17 | } 18 | } -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.UI.Controls.Core.Design/Controls/Loading.Typedata.cs: -------------------------------------------------------------------------------- 1 | // Licensed to the .NET Foundation under one or more agreements. 2 | // The .NET Foundation licenses this file to you under the MIT license. 3 | // See the LICENSE file in the project root for more information. 4 | 5 | using System; 6 | 7 | namespace Microsoft.Toolkit.Uwp.UI.Controls.Design 8 | { 9 | internal static partial class ControlTypes 10 | { 11 | internal const string Loading = RootNamespace + "." + nameof(Loading); 12 | } 13 | 14 | internal static class Loading 15 | { 16 | internal const string IsLoading = nameof(IsLoading); 17 | } 18 | } -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.UI.Controls.Core.Design/Controls/Menu.Typedata.cs: -------------------------------------------------------------------------------- 1 | // Licensed to the .NET Foundation under one or more agreements. 2 | // The .NET Foundation licenses this file to you under the MIT license. 3 | // See the LICENSE file in the project root for more information. 4 | 5 | using System; 6 | 7 | namespace Microsoft.Toolkit.Uwp.UI.Controls.Design 8 | { 9 | internal static partial class ControlTypes 10 | { 11 | internal const string Menu = RootNamespace + "." + nameof(Menu); 12 | } 13 | 14 | internal static class Menu 15 | { 16 | internal const string Items = nameof(Items); 17 | } 18 | } -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.UI.Controls.Core.Design/Controls/ScrollHeader.Typedata.cs: -------------------------------------------------------------------------------- 1 | // Licensed to the .NET Foundation under one or more agreements. 2 | // The .NET Foundation licenses this file to you under the MIT license. 3 | // See the LICENSE file in the project root for more information. 4 | 5 | using System; 6 | 7 | namespace Microsoft.Toolkit.Uwp.UI.Controls.Design 8 | { 9 | internal static partial class ControlTypes 10 | { 11 | internal const string ScrollHeader = RootNamespace + "." + nameof(ScrollHeader); 12 | } 13 | 14 | internal static class ScrollHeader 15 | { 16 | internal const string Mode = nameof(Mode); 17 | } 18 | } -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.UI.Controls.Core.Design/Icons/Menu.icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.UI.Controls.Core.Design/Icons/Menu.icon.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.UI.Controls.Core.Design/Icons/RotatorTile.icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.UI.Controls.Core.Design/Icons/RotatorTile.icon.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.UI.Controls.Core/ControlHelpers.XamlHost.cs: -------------------------------------------------------------------------------- 1 | // Licensed to the .NET Foundation under one or more agreements. 2 | // The .NET Foundation licenses this file to you under the MIT license. 3 | // See the LICENSE file in the project root for more information. 4 | 5 | namespace Microsoft.Toolkit.Uwp.UI.Controls 6 | { 7 | /// 8 | /// Internal class used to provide helpers for controls 9 | /// 10 | internal static partial class ControlHelpers 11 | { 12 | internal static bool IsXamlRootAvailable { get; } = Windows.Foundation.Metadata.ApiInformation.IsPropertyPresent("Windows.UI.Xaml.UIElement", "XamlRoot"); 13 | } 14 | } -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.UI.Controls.Core/TextToolbar/ToolbarItems/ButtonMap.cs: -------------------------------------------------------------------------------- 1 | // Licensed to the .NET Foundation under one or more agreements. 2 | // The .NET Foundation licenses this file to you under the MIT license. 3 | // See the LICENSE file in the project root for more information. 4 | 5 | using System.Collections.ObjectModel; 6 | 7 | namespace Microsoft.Toolkit.Uwp.UI.Controls.TextToolbarButtons 8 | { 9 | /// 10 | /// ObservableCollection of 11 | /// 12 | public class ButtonMap : ObservableCollection 13 | { 14 | } 15 | } -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.UI.Controls.Core/TextToolbar/ToolbarItems/DefaultButtonModificationList.cs: -------------------------------------------------------------------------------- 1 | // Licensed to the .NET Foundation under one or more agreements. 2 | // The .NET Foundation licenses this file to you under the MIT license. 3 | // See the LICENSE file in the project root for more information. 4 | 5 | using System.Collections.ObjectModel; 6 | 7 | namespace Microsoft.Toolkit.Uwp.UI.Controls.TextToolbarButtons 8 | { 9 | /// 10 | /// ObservableCollection of 11 | /// 12 | public class DefaultButtonModificationList : ObservableCollection 13 | { 14 | } 15 | } -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.UI.Controls.DataGrid/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | // Licensed to the .NET Foundation under one or more agreements. 2 | // The .NET Foundation licenses this file to you under the MIT license. 3 | // See the LICENSE file in the project root for more information. 4 | 5 | using System.Resources; 6 | using System.Runtime.CompilerServices; 7 | 8 | // General Information about an assembly is controlled through the following 9 | // set of attributes. Change these attribute values to modify the information 10 | // associated with an assembly. 11 | [assembly: InternalsVisibleTo("UnitTests.UWP")] 12 | [assembly: NeutralResourcesLanguage("en-US")] -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.UI.Controls.DataGrid/Properties/Microsoft.Toolkit.Uwp.UI.Controls.DataGrid.rd.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.UI.Controls.Layout/OrbitView/OrbitViewDataItemCollection.cs: -------------------------------------------------------------------------------- 1 | // Licensed to the .NET Foundation under one or more agreements. 2 | // The .NET Foundation licenses this file to you under the MIT license. 3 | // See the LICENSE file in the project root for more information. 4 | 5 | using System.Collections.Generic; 6 | 7 | namespace Microsoft.Toolkit.Uwp.UI.Controls 8 | { 9 | /// 10 | /// The OrbitViewDataItemCollection provides typed collection of . 11 | /// 12 | public class OrbitViewDataItemCollection : List 13 | { 14 | } 15 | } -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.UI.Controls.Layout/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | // Licensed to the .NET Foundation under one or more agreements. 2 | // The .NET Foundation licenses this file to you under the MIT license. 3 | // See the LICENSE file in the project root for more information. 4 | 5 | using System.Resources; 6 | using System.Runtime.CompilerServices; 7 | 8 | // General Information about an assembly is controlled through the following 9 | // set of attributes. Change these attribute values to modify the information 10 | // associated with an assembly. 11 | [assembly: NeutralResourcesLanguage("en-US")] -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.UI.Controls.Markdown/Parsers/Constants.cs: -------------------------------------------------------------------------------- 1 | // Licensed to the .NET Foundation under one or more agreements. 2 | // The .NET Foundation licenses this file to you under the MIT license. 3 | // See the LICENSE file in the project root for more information. 4 | 5 | namespace Microsoft.Toolkit.Parsers 6 | { 7 | internal static class Constants 8 | { 9 | internal const string ParserObsoleteMsg = "Parsing code has been deprecated, we suggest using Markdig. See https://github.com/CommunityToolkit/WindowsCommunityToolkit/issues/3200 for more info."; 10 | } 11 | } -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.UI.Controls.Markdown/Parsers/Markdown/Blocks/List/ListItemPreamble.cs: -------------------------------------------------------------------------------- 1 | // Licensed to the .NET Foundation under one or more agreements. 2 | // The .NET Foundation licenses this file to you under the MIT license. 3 | // See the LICENSE file in the project root for more information. 4 | 5 | using System; 6 | 7 | namespace Microsoft.Toolkit.Parsers.Markdown.Blocks 8 | { 9 | [Obsolete(Constants.ParserObsoleteMsg)] 10 | internal class ListItemPreamble 11 | { 12 | public ListStyle Style { get; set; } 13 | 14 | public int ContentStartPos { get; set; } 15 | } 16 | } -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.UI.Controls.Markdown/Parsers/Markdown/MarkdownElement.cs: -------------------------------------------------------------------------------- 1 | // Licensed to the .NET Foundation under one or more agreements. 2 | // The .NET Foundation licenses this file to you under the MIT license. 3 | // See the LICENSE file in the project root for more information. 4 | 5 | using System; 6 | 7 | namespace Microsoft.Toolkit.Parsers.Markdown 8 | { 9 | /// 10 | /// This is a class used as the base class of all markdown elements. 11 | /// 12 | [Obsolete(Constants.ParserObsoleteMsg)] 13 | public abstract class MarkdownElement 14 | { 15 | } 16 | } -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.UI.Controls.Markdown/Themes/Generic.xaml: -------------------------------------------------------------------------------- 1 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.UI.Controls.Markdown/VisualStudioToolsManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.UI.Controls.Media/ImageCropper/ThumbPosition.cs: -------------------------------------------------------------------------------- 1 | // Licensed to the .NET Foundation under one or more agreements. 2 | // The .NET Foundation licenses this file to you under the MIT license. 3 | // See the LICENSE file in the project root for more information. 4 | 5 | namespace Microsoft.Toolkit.Uwp.UI.Controls 6 | { 7 | /// 8 | /// Thumb position enumeration. 9 | /// 10 | internal enum ThumbPosition 11 | { 12 | Top, 13 | Bottom, 14 | Left, 15 | Right, 16 | UpperLeft, 17 | UpperRight, 18 | LowerLeft, 19 | LowerRight 20 | } 21 | } -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.UI.Controls.Media/InfiniteCanvas/Commands/IInfiniteCanvasCommand.cs: -------------------------------------------------------------------------------- 1 | // Licensed to the .NET Foundation under one or more agreements. 2 | // The .NET Foundation licenses this file to you under the MIT license. 3 | // See the LICENSE file in the project root for more information. 4 | 5 | namespace Microsoft.Toolkit.Uwp.UI.Controls 6 | { 7 | internal interface IInfiniteCanvasCommand 8 | { 9 | void Execute(); 10 | 11 | void Undo(); 12 | } 13 | } -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.UI.Controls.Media/Properties/Microsoft.Toolkit.Uwp.UI.Controls.Media.rd.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.UI.Controls.Primitives/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | // Licensed to the .NET Foundation under one or more agreements. 2 | // The .NET Foundation licenses this file to you under the MIT license. 3 | // See the LICENSE file in the project root for more information. 4 | 5 | using System.Runtime.CompilerServices; 6 | 7 | // General Information about an assembly is controlled through the following 8 | // set of attributes. Change these attribute values to modify the information 9 | // associated with an assembly. 10 | [assembly: InternalsVisibleTo("UnitTests.UWP")] -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.UI.Controls.Primitives/Properties/Microsoft.Toolkit.Uwp.UI.Controls.Primitives.rd.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.UI.Media/Properties/Microsoft.Toolkit.Uwp.UI.Media.rd.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.UI/Extensions/ScrollViewer/MiddleClickScrolling-CursorType.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Uwp.UI/Extensions/ScrollViewer/MiddleClickScrolling-CursorType.res -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.UI/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | // Licensed to the .NET Foundation under one or more agreements. 2 | // The .NET Foundation licenses this file to you under the MIT license. 3 | // See the LICENSE file in the project root for more information. 4 | 5 | using System.Runtime.CompilerServices; 6 | 7 | [assembly: InternalsVisibleTo("Microsoft.Toolkit.Uwp.UI.Media")] 8 | -------------------------------------------------------------------------------- /Microsoft.Toolkit.Uwp.UI/Properties/Microsoft.Toolkit.Uwp.UI.rd.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /Microsoft.Toolkit.Win32.WpfCore.SampleApp.PackagingProject/Images/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Win32.WpfCore.SampleApp.PackagingProject/Images/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Win32.WpfCore.SampleApp.PackagingProject/Images/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Win32.WpfCore.SampleApp.PackagingProject/Images/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Win32.WpfCore.SampleApp.PackagingProject/Images/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Win32.WpfCore.SampleApp.PackagingProject/Images/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Win32.WpfCore.SampleApp.PackagingProject/Images/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Win32.WpfCore.SampleApp.PackagingProject/Images/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Win32.WpfCore.SampleApp.PackagingProject/Images/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Win32.WpfCore.SampleApp.PackagingProject/Images/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Win32.WpfCore.SampleApp.PackagingProject/Images/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Win32.WpfCore.SampleApp.PackagingProject/Images/StoreLogo.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Win32.WpfCore.SampleApp.PackagingProject/Images/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Win32.WpfCore.SampleApp.PackagingProject/Images/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /Microsoft.Toolkit.Win32.WpfCore.SampleApp/App.xaml: -------------------------------------------------------------------------------- 1 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Microsoft.Toolkit.Win32.WpfCore.SampleApp/ToolkitIcon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/Microsoft.Toolkit.Win32.WpfCore.SampleApp/ToolkitIcon.ico -------------------------------------------------------------------------------- /Microsoft.Toolkit.Win32/ReadMe.md: -------------------------------------------------------------------------------- 1 | # Windows Community Toolkit — WPF and Windows Forms 2 | 3 | The source has moved to a new repository: 4 | -------------------------------------------------------------------------------- /SmokeTests/App.xaml: -------------------------------------------------------------------------------- 1 | 6 | 7 | -------------------------------------------------------------------------------- /SmokeTests/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/SmokeTests/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /SmokeTests/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/SmokeTests/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /SmokeTests/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/SmokeTests/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /SmokeTests/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/SmokeTests/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /SmokeTests/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/SmokeTests/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /SmokeTests/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/SmokeTests/Assets/StoreLogo.png -------------------------------------------------------------------------------- /SmokeTests/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/c8f76d072df53d3622fb5440d63afb06cb9e7a10/SmokeTests/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /SmokeTests/Microsoft.Toolkit.Uwp.DeveloperTools/MainPage.xaml.cs: -------------------------------------------------------------------------------- 1 | // Licensed to the .NET Foundation under one or more agreements. 2 | // The .NET Foundation licenses this file to you under the MIT license. 3 | // See the LICENSE file in the project root for more information. 4 | 5 | namespace SmokeTest 6 | { 7 | public sealed partial class MainPage 8 | { 9 | public MainPage() 10 | { 11 | InitializeComponent(); 12 | } 13 | } 14 | } -------------------------------------------------------------------------------- /SmokeTests/Microsoft.Toolkit.Uwp.Notifications/MainPage.xaml: -------------------------------------------------------------------------------- 1 | 10 | 11 | 12 |