├── .github ├── copilot-instructions.md ├── prompts │ ├── dotnet │ │ ├── async.prompt.md │ │ ├── codestyle.prompt.md │ │ ├── maui │ │ │ ├── hybrid.prompt.md │ │ │ ├── maui-layouts.prompt.md │ │ │ ├── maui-memory-leaks.prompt.md │ │ │ ├── maui-upgrade.prompt.md │ │ │ └── maui.prompt.md │ │ └── testing.xunit.prompt.md │ └── prompts.prompt.md └── workflows │ └── copilot-setup-steps.yml ├── .gitignore ├── LICENSE ├── README.md ├── media ├── catalyst-01.png ├── catalyst-02.png ├── catalyst-03.png ├── catalyst-04.png ├── catalyst-05.png ├── control-gallery-net8.png ├── ios.png ├── maui-gallery-catalyst.mp4 └── maui-p2-gallery.mp4 └── src ├── ControlGallery ├── .vscode │ └── settings.json ├── App.xaml ├── App.xaml.cs ├── AppShell.xaml ├── AppShell.xaml.cs ├── AppWindow.xaml ├── AppWindow.xaml.cs ├── Common │ ├── AbsoluteLayoutExtensions.cs │ ├── CursorBehavior.cs │ ├── Effects │ │ └── ContentInsetAdjustmentBehaviorEffect.cs │ ├── Fonts │ │ └── IconFont.cs │ ├── FormattedStringFormatter.cs │ ├── MauiExceptions.cs │ ├── Messages │ │ └── ToggleFlyoutHeaderMsg.cs │ ├── MyExtensions.cs │ ├── NameOfExtension.cs │ └── Views │ │ ├── ControlExample.xaml │ │ ├── ControlExample.xaml.cs │ │ ├── CustomFlyoutItem.xaml │ │ ├── CustomFlyoutItem.xaml.cs │ │ ├── ExampleView.xaml │ │ ├── ExampleView.xaml.cs │ │ ├── FlyoutHeader.xaml │ │ ├── FlyoutHeader.xaml.cs │ │ ├── SampleCodePresenter.xaml │ │ └── SampleCodePresenter.xaml.cs ├── ControlGallery.csproj ├── ControlGallery.sln ├── Converters │ ├── BooleanInverseConverter.cs │ ├── ColorSyntaxConverter.cs │ └── DoubleToIntConverter.cs ├── Info.plist ├── MauiProgram.cs ├── Models │ ├── BaseViewModel.cs │ ├── ColorBrush.cs │ ├── GithubRelease.cs │ ├── GroupedNavItems.cs │ ├── NavItem.cs │ └── QuickLink.cs ├── Pages │ ├── BaseContentPage.cs │ ├── Controls │ │ ├── ActivityIndicatorPage.cs │ │ ├── AlertPage.cs │ │ ├── BorderPage.cs │ │ ├── BoxViewPage.cs │ │ ├── ButtonPage.xaml │ │ ├── ButtonPage.xaml.cs │ │ ├── CarouselView │ │ │ ├── BasicCarouselPage.cs │ │ │ ├── CarouselViewPage.xaml │ │ │ ├── CarouselViewPage.xaml.cs │ │ │ ├── Components │ │ │ │ ├── MarriottView01.xaml │ │ │ │ ├── MarriottView01.xaml.cs │ │ │ │ ├── MarriottView02.xaml │ │ │ │ ├── MarriottView02.xaml.cs │ │ │ │ ├── MintView01.xaml │ │ │ │ ├── MintView01.xaml.cs │ │ │ │ ├── MintView02.xaml │ │ │ │ └── MintView02.xaml.cs │ │ │ ├── InstagramPage.xaml │ │ │ ├── InstagramPage.xaml.cs │ │ │ ├── LufthansaPage.xaml │ │ │ ├── LufthansaPage.xaml.cs │ │ │ ├── MarriottPage.xaml │ │ │ ├── MarriottPage.xaml.cs │ │ │ ├── MintPage.xaml │ │ │ ├── MintPage.xaml.cs │ │ │ ├── Models │ │ │ │ └── InstaPic.cs │ │ │ ├── REIPage.xaml │ │ │ ├── REIPage.xaml.cs │ │ │ └── ViewModels │ │ │ │ └── DisneyItemViewModel.cs │ │ ├── CheckboxPage.cs │ │ ├── CollectionView │ │ │ ├── Controls │ │ │ │ ├── EnumPicker.cs │ │ │ │ ├── FilterData.cs │ │ │ │ ├── MonkeyDataTemplateSelector.cs │ │ │ │ ├── SearchTermDataTemplateSelector.cs │ │ │ │ ├── SpacingModifier.xaml │ │ │ │ └── SpacingModifier.xaml.cs │ │ │ ├── Helpers │ │ │ │ └── IndexParser.cs │ │ │ ├── Models │ │ │ │ ├── Animal.cs │ │ │ │ ├── AnimalGroup.cs │ │ │ │ └── Monkey.cs │ │ │ ├── ViewModels │ │ │ │ ├── AnimalsViewModel.cs │ │ │ │ ├── CollectionViewPageViewModel.cs │ │ │ │ ├── GroupedAnimalsViewModel.cs │ │ │ │ ├── MonkeysViewModel.cs │ │ │ │ └── MonkeysViewModelWithDelay.cs │ │ │ └── Views │ │ │ │ ├── CollectionViewPage.xaml │ │ │ │ ├── CollectionViewPage.xaml.cs │ │ │ │ ├── EmptyView │ │ │ │ ├── EmptyViewDataTemplateSelectorPage.xaml │ │ │ │ ├── EmptyViewDataTemplateSelectorPage.xaml.cs │ │ │ │ ├── EmptyViewFilteredPage.xaml │ │ │ │ ├── EmptyViewFilteredPage.xaml.cs │ │ │ │ ├── EmptyViewLoadSimulationPage.xaml │ │ │ │ ├── EmptyViewLoadSimulationPage.xaml.cs │ │ │ │ ├── EmptyViewNullPage.xaml │ │ │ │ ├── EmptyViewNullPage.xaml.cs │ │ │ │ ├── EmptyViewSwapPage.xaml │ │ │ │ ├── EmptyViewSwapPage.xaml.cs │ │ │ │ ├── EmptyViewTemplatePage.xaml │ │ │ │ ├── EmptyViewTemplatePage.xaml.cs │ │ │ │ ├── EmptyViewWithViewsFilteredPage.xaml │ │ │ │ └── EmptyViewWithViewsFilteredPage.xaml.cs │ │ │ │ ├── Grouping │ │ │ │ ├── VerticalListEmptyGroupsPage.xaml │ │ │ │ ├── VerticalListEmptyGroupsPage.xaml.cs │ │ │ │ ├── VerticalListGroupingPage.xaml │ │ │ │ ├── VerticalListGroupingPage.xaml.cs │ │ │ │ ├── VerticalListGroupingVariableSizeItemsPage.xaml │ │ │ │ ├── VerticalListGroupingVariableSizeItemsPage.xaml.cs │ │ │ │ ├── VerticalListTextGroupingPage.xaml │ │ │ │ └── VerticalListTextGroupingPage.xaml.cs │ │ │ │ ├── HeadersAndFooters │ │ │ │ ├── HorizontalGridHeaderFooterViewPage.xaml │ │ │ │ ├── HorizontalGridHeaderFooterViewPage.xaml.cs │ │ │ │ ├── VerticalGridHeaderFooterViewPage.xaml │ │ │ │ ├── VerticalListHeaderFooterDataTemplatePage.xaml │ │ │ │ ├── VerticalListHeaderFooterDataTemplatePage.xaml.cs │ │ │ │ ├── VerticalListHeaderFooterStringPage.xaml │ │ │ │ ├── VerticalListHeaderFooterStringPage.xaml.cs │ │ │ │ ├── VerticalListHeaderFooterViewPage.xaml │ │ │ │ └── VerticalListHeaderFooterViewPage.xaml.cs │ │ │ │ ├── Layout │ │ │ │ ├── HorizontalGridPage.xaml │ │ │ │ ├── HorizontalGridPage.xaml.cs │ │ │ │ ├── HorizontalGridTextPage.xaml │ │ │ │ ├── HorizontalGridTextPage.xaml.cs │ │ │ │ ├── HorizontalListPage.xaml │ │ │ │ ├── HorizontalListPage.xaml.cs │ │ │ │ ├── HorizontalListTextPage.xaml │ │ │ │ ├── HorizontalListTextPage.xaml.cs │ │ │ │ ├── VerticalGridPage.xaml │ │ │ │ ├── VerticalGridPage.xaml.cs │ │ │ │ ├── VerticalGridTextPage.xaml │ │ │ │ ├── VerticalGridTextPage.xaml.cs │ │ │ │ ├── VerticalListDataTemplateSelectorPage.xaml │ │ │ │ ├── VerticalListDataTemplateSelectorPage.xaml.cs │ │ │ │ ├── VerticalListPage.xaml │ │ │ │ ├── VerticalListPage.xaml.cs │ │ │ │ ├── VerticalListRTLPage.xaml │ │ │ │ ├── VerticalListRTLPage.xaml.cs │ │ │ │ ├── VerticalListTextPage.xaml │ │ │ │ └── VerticalListTextPage.xaml.cs │ │ │ │ ├── PullToRefresh │ │ │ │ ├── HorizontalGridPullToRefreshPage.xaml │ │ │ │ ├── HorizontalGridPullToRefreshPage.xaml.cs │ │ │ │ ├── VerticalListPullToRefreshPage.xaml │ │ │ │ └── VerticalListPullToRefreshPage.xaml.cs │ │ │ │ ├── Scrolling │ │ │ │ ├── IncrementalLoadingPage.xaml │ │ │ │ ├── IncrementalLoadingPage.xaml.cs │ │ │ │ ├── ItemsUpdatingScrollModePage.xaml │ │ │ │ ├── ItemsUpdatingScrollModePage.xaml.cs │ │ │ │ ├── ScrollToByIndexPage.xaml │ │ │ │ ├── ScrollToByIndexPage.xaml.cs │ │ │ │ ├── ScrollToByIndexWithGroupingPage.xaml │ │ │ │ ├── ScrollToByIndexWithGroupingPage.xaml.cs │ │ │ │ ├── ScrollToByObjectPage.xaml │ │ │ │ ├── ScrollToByObjectPage.xaml.cs │ │ │ │ ├── ScrollToByObjectWithGroupingPage.xaml │ │ │ │ └── ScrollToByObjectWithGroupingPage.xaml.cs │ │ │ │ ├── Selection │ │ │ │ ├── VerticalListMultiplePreSelectionPage.xaml │ │ │ │ ├── VerticalListMultiplePreSelectionPage.xaml.cs │ │ │ │ ├── VerticalListMultipleSelectionPage.xaml │ │ │ │ ├── VerticalListMultipleSelectionPage.xaml.cs │ │ │ │ ├── VerticalListSelectionColorPage.xaml │ │ │ │ ├── VerticalListSelectionColorPage.xaml.cs │ │ │ │ ├── VerticalListSinglePreSelectionPage.xaml │ │ │ │ ├── VerticalListSinglePreSelectionPage.xaml.cs │ │ │ │ ├── VerticalListSingleSelectionPage.xaml │ │ │ │ └── VerticalListSingleSelectionPage.xaml.cs │ │ │ │ ├── Sizing │ │ │ │ ├── VerticalListDynamicSizeItemsPage.xaml │ │ │ │ ├── VerticalListDynamicSizeItemsPage.xaml.cs │ │ │ │ ├── VerticalListVariableSizeItemsPage.xaml │ │ │ │ └── VerticalListVariableSizeItemsPage.xaml.cs │ │ │ │ ├── SnapPoints │ │ │ │ ├── VerticalListSnapPointsPage.xaml │ │ │ │ └── VerticalListSnapPointsPage.xaml.cs │ │ │ │ ├── Spacing │ │ │ │ ├── HorizontalGridSpacingPage.xaml │ │ │ │ ├── HorizontalGridSpacingPage.xaml.cs │ │ │ │ ├── HorizontalListSpacingPage.xaml │ │ │ │ ├── HorizontalListSpacingPage.xaml.cs │ │ │ │ ├── VerticalGridSpacingPage.xaml │ │ │ │ ├── VerticalGridSpacingPage.xaml.cs │ │ │ │ ├── VerticalListSpacingPage.xaml │ │ │ │ └── VerticalListSpacingPage.xaml.cs │ │ │ │ └── Swipe │ │ │ │ ├── VerticalListSwipeContextItemsPage.xaml │ │ │ │ └── VerticalListSwipeContextItemsPage.xaml.cs │ │ ├── ControlPageTemplate.xaml │ │ ├── ControlPageTemplate.xaml.cs │ │ ├── DatePickerPage.cs │ │ ├── EditorPage.cs │ │ ├── EntryPage.xaml │ │ ├── EntryPage.xaml.cs │ │ ├── FramePage.xaml │ │ ├── ImagePage.xaml │ │ ├── ImagePage.xaml.cs │ │ ├── LabelPage.xaml │ │ ├── LabelPage.xaml.cs │ │ ├── MapPage.xaml │ │ ├── MapPage.xaml.cs │ │ ├── PickerPage.xaml │ │ ├── PickerPage.xaml.cs │ │ ├── ProgressBarPage.xaml │ │ ├── ProgressBarPage.xaml.cs │ │ ├── RadioButtonPage.xaml │ │ ├── RadioButtonPage.xaml.cs │ │ ├── RefreshViewPage.xaml │ │ ├── RefreshViewPage.xaml.cs │ │ ├── SearchBarPage.xaml │ │ ├── SearchBarPage.xaml.cs │ │ ├── ShapesPage.xaml │ │ ├── ShapesPage.xaml.cs │ │ ├── SliderPage.xaml │ │ ├── SliderPage.xaml.cs │ │ ├── StepperPage.xaml │ │ ├── StepperPage.xaml.cs │ │ ├── SwitchPage.xaml │ │ ├── SwitchPage.xaml.cs │ │ ├── TimePickerPage.xaml │ │ ├── TimePickerPage.xaml.cs │ │ ├── WebViewPage.xaml │ │ └── WebViewPage.xaml.cs │ ├── ControlsPage.xaml │ ├── ControlsPage.xaml.cs │ ├── Features │ │ ├── Animation │ │ │ ├── AnimationsPage.xaml │ │ │ ├── AnimationsPage.xaml.cs │ │ │ ├── AnimationsPageViewModel.cs │ │ │ ├── Controls │ │ │ │ ├── EasingCard.cs │ │ │ │ └── PickerCell.cs │ │ │ ├── CustomAnimationPage.xaml │ │ │ ├── CustomAnimationPage.xaml.cs │ │ │ ├── EasingEditorPage.xaml │ │ │ ├── EasingEditorPage.xaml.cs │ │ │ ├── EasingsPage.xaml │ │ │ ├── EasingsPage.xaml.cs │ │ │ ├── Extensions │ │ │ │ ├── AnimationExtensions.cs │ │ │ │ └── ExtensionMethods.cs │ │ │ ├── FadePage.xaml │ │ │ ├── FadePage.xaml.cs │ │ │ ├── LayoutToPage.xaml │ │ │ ├── LayoutToPage.xaml.cs │ │ │ ├── RotatePage.xaml │ │ │ ├── RotatePage.xaml.cs │ │ │ ├── ScalePage.xaml │ │ │ ├── ScalePage.xaml.cs │ │ │ ├── TranslatePage.xaml │ │ │ └── TranslatePage.xaml.cs │ │ ├── AppThemePage.xaml │ │ ├── AppThemePage.xaml.cs │ │ ├── AppThemeViewModel.cs │ │ ├── BehaviorsPage.xaml │ │ ├── BehaviorsPage.xaml.cs │ │ ├── ClippingPage.xaml │ │ ├── ClippingPage.xaml.cs │ │ ├── ColorsPage.xaml │ │ ├── ColorsPage.xaml.cs │ │ ├── ContextMenuPage.xaml │ │ ├── ContextMenuPage.xaml.cs │ │ ├── FontImagePage.xaml │ │ ├── FontImagePage.xaml.cs │ │ ├── Gestures │ │ │ ├── PointerGesturePage.xaml │ │ │ ├── PointerGesturePage.xaml.cs │ │ │ ├── TapGesturePage.xaml │ │ │ └── TapGesturePage.xaml.cs │ │ ├── GesturesPage.xaml │ │ ├── GesturesPage.xaml.cs │ │ ├── HybridWebViewPage.xaml │ │ ├── HybridWebViewPage.xaml.cs │ │ ├── IconBox.xaml │ │ ├── IconBox.xaml.cs │ │ ├── MenuBarPage.xaml │ │ ├── MenuBarPage.xaml.cs │ │ ├── NativeViewsPage.xaml │ │ ├── NativeViewsPage.xaml.cs │ │ ├── ShadowPage.xaml │ │ ├── ShadowPage.xaml.cs │ │ ├── TodoDataStore.cs │ │ ├── TodoTask.cs │ │ ├── TooltipPage.xaml │ │ ├── TooltipPage.xaml.cs │ │ ├── TriggersPage.xaml │ │ └── TriggersPage.xaml.cs │ ├── FeaturesPage.xaml │ ├── FeaturesPage.xaml.cs │ ├── HomePage.xaml │ ├── HomePage.xaml.cs │ ├── HomeViewModel.cs │ ├── Layouts │ │ ├── AbsoluteLayouts │ │ │ ├── BouncingTextDemoPage.xaml │ │ │ ├── BouncingTextDemoPage.xaml.cs │ │ │ ├── ChessboardDemoPage.xaml │ │ │ ├── ChessboardDemoPage.xaml.cs │ │ │ ├── ProportionalCoordinateCalcDemoPage.xaml │ │ │ ├── ProportionalCoordinateCalcDemoPage.xaml.cs │ │ │ ├── ProportionalDemoPage.xaml │ │ │ ├── ProportionalDemoPage.xaml.cs │ │ │ ├── SimpleOverlayDemoPage.xaml │ │ │ ├── SimpleOverlayDemoPage.xaml.cs │ │ │ ├── StylishHeaderDemoPage.xaml │ │ │ └── StylishHeaderDemoPage.xaml.cs │ │ ├── Custom │ │ │ ├── CacadeLayoutPage.xaml │ │ │ ├── CacadeLayoutPage.xaml.cs │ │ │ ├── ColumnLayoutPage.xaml │ │ │ ├── ColumnLayoutPage.xaml.cs │ │ │ ├── HorizontalWrapLayoutPage.xaml │ │ │ ├── HorizontalWrapLayoutPage.xaml.cs │ │ │ └── Layouts │ │ │ │ ├── CascadeLayout.cs │ │ │ │ ├── CascadeLayoutManager.cs │ │ │ │ ├── ColumnLayout.cs │ │ │ │ ├── ColumnLayoutManager.cs │ │ │ │ ├── ContentColumnLayout.cs │ │ │ │ ├── HorizontalWrapLayout.cs │ │ │ │ └── HorizontalWrapLayoutManager.cs │ │ ├── Flex │ │ │ ├── AchievementView.xaml │ │ │ ├── AchievementView.xaml.cs │ │ │ ├── AchievementsPage.xaml │ │ │ ├── AchievementsPage.xaml.cs │ │ │ ├── AlignmentPage.css │ │ │ ├── AlignmentPage.xaml │ │ │ ├── AlignmentPage.xaml.cs │ │ │ ├── BasisExperimentPage.xaml │ │ │ ├── BasisExperimentPage.xaml.cs │ │ │ ├── CatalogItemsPage.xaml │ │ │ ├── CatalogItemsPage.xaml.cs │ │ │ ├── CatalogItemsStyles.css │ │ │ ├── CssCatalogItemsPage.xaml │ │ │ ├── CssCatalogItemsPage.xaml.cs │ │ │ ├── EnumPicker.cs │ │ │ ├── GridPage.xaml │ │ │ ├── GridPage.xaml.cs │ │ │ ├── GrowExperimentPage.xaml │ │ │ ├── GrowExperimentPage.xaml.cs │ │ │ ├── LoginPage.css │ │ │ ├── LoginPage.xaml │ │ │ ├── LoginPage.xaml.cs │ │ │ ├── PhotoWrappingPage.xaml │ │ │ ├── PhotoWrappingPage.xaml.cs │ │ │ ├── PhotosPage.css │ │ │ ├── PhotosPage.xaml │ │ │ ├── PhotosPage.xaml.cs │ │ │ ├── ReadingColumnsPage.xaml │ │ │ ├── ReadingColumnsPage.xaml.cs │ │ │ ├── ShowPage.css │ │ │ ├── ShowPage.xaml │ │ │ ├── ShowPage.xaml.cs │ │ │ ├── ShrinkExperimentPage.xaml │ │ │ ├── ShrinkExperimentPage.xaml.cs │ │ │ ├── SimpleStackPage.xaml │ │ │ └── SimpleStackPage.xaml.cs │ │ ├── Grid │ │ │ ├── AlignmentGridPage.cs │ │ │ ├── BasicGridPage.cs │ │ │ ├── CalculatorPage.cs │ │ │ ├── KeypadPage.xaml │ │ │ ├── KeypadPage.xaml.cs │ │ │ ├── SliderGridPage.cs │ │ │ └── SpacingGridPage.cs │ │ ├── MarginPaddingPage.xaml │ │ ├── MarginPaddingPage.xaml.cs │ │ └── Stack │ │ │ ├── AlignmentStackPage.cs │ │ │ ├── AndExpandPage.xaml │ │ │ ├── AndExpandPage.xaml.cs │ │ │ ├── CombinedStackPage.cs │ │ │ ├── ExpansionStackPage.cs │ │ │ ├── HorizontalStackPage.cs │ │ │ ├── SpacingStackPage.cs │ │ │ └── VerticalStackPage.cs │ ├── LayoutsPage.xaml │ ├── LayoutsPage.xaml.cs │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── ProfileReportPage.cs │ ├── TipsPage.xaml │ └── TipsPage.xaml.cs ├── Platforms │ ├── Android │ │ ├── AndroidManifest.xml │ │ ├── MainActivity.cs │ │ ├── MainApplication.cs │ │ └── Resources │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── dimens.xml │ │ │ ├── ic_launcher_background.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ ├── MacCatalyst │ │ ├── AppDelegate.cs │ │ ├── CursorBehavior.cs │ │ ├── Info.plist │ │ ├── LaunchScreen.storyboard │ │ └── Program.cs │ ├── Windows │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── Package.appxmanifest │ │ └── app.manifest │ └── iOS │ │ ├── AppDelegate.cs │ │ ├── Entitlements.plist │ │ ├── Info.plist │ │ ├── LaunchScreen.storyboard │ │ ├── Program.cs │ │ └── Resources │ │ └── LaunchScreen.xib ├── Properties │ └── launchSettings.json ├── Resources │ ├── Fonts │ │ ├── FluentSystemIcons-Regular.ttf │ │ ├── FluentUI.cs │ │ ├── fa_solid.ttf │ │ ├── fabmdl2.ttf │ │ ├── opensans_regular.ttf │ │ └── opensans_semibold.ttf │ ├── Images │ │ ├── IMG_0191.JPG │ │ ├── IMG_0192.JPG │ │ ├── IMG_0193.JPG │ │ ├── IMG_0194.JPG │ │ ├── IMG_0195.JPG │ │ ├── animated_heart.gif │ │ ├── cat_1.jpg │ │ ├── cat_10.jpg │ │ ├── cat_11.jpg │ │ ├── cat_12.jpg │ │ ├── cat_13.jpg │ │ ├── cat_14.jpg │ │ ├── cat_15.jpg │ │ ├── cat_16.jpg │ │ ├── cat_17.jpg │ │ ├── cat_18.jpg │ │ ├── cat_19.jpg │ │ ├── cat_2.jpg │ │ ├── cat_3.jpg │ │ ├── cat_4.jpg │ │ ├── cat_5.jpg │ │ ├── cat_6.jpg │ │ ├── cat_7.jpg │ │ ├── cat_8.jpg │ │ ├── cat_9.jpg │ │ ├── dotnet_bot.svg │ │ ├── gallery_bar_chart.png │ │ ├── h01.png │ │ ├── h02.png │ │ ├── h03.png │ │ ├── h04.png │ │ ├── h05.png │ │ ├── icon_plane.jpg │ │ ├── insta_00.jpg │ │ ├── insta_01.jpg │ │ ├── insta_02.jpg │ │ ├── insta_03.jpg │ │ ├── insta_04.jpg │ │ ├── logo_lufthansa.jpg │ │ ├── m_01.jpg │ │ ├── m_02.jpg │ │ ├── m_03.png │ │ ├── m_04.png │ │ ├── m_05.jpg │ │ ├── m_06.jpg │ │ ├── m_07.jpg │ │ ├── m_08.jpg │ │ ├── m_09.jpg │ │ ├── m_10.jpg │ │ ├── m_11.jpeg │ │ ├── m_12.jpg │ │ ├── m_13.jpg │ │ ├── m_14.jpg │ │ ├── m_15.jpg │ │ ├── qr_code.png │ │ ├── ragnarok.jpg │ │ ├── seattle.jpg │ │ └── toolbox │ │ │ ├── cell_entrycell.png │ │ │ ├── cell_imagecell.png │ │ │ ├── cell_switchcell.png │ │ │ ├── cell_textcell.png │ │ │ ├── cell_viewcell.png │ │ │ ├── layout_absolutelayout.png │ │ │ ├── layout_contentview.png │ │ │ ├── layout_flexlayout.png │ │ │ ├── layout_frame.png │ │ │ ├── layout_grid.png │ │ │ ├── layout_relativelayout.png │ │ │ ├── layout_scrollview.png │ │ │ ├── layout_stacklayout.png │ │ │ ├── view_activityindicator.png │ │ │ ├── view_boxview.png │ │ │ ├── view_button.png │ │ │ ├── view_datepicker.png │ │ │ ├── view_editor.png │ │ │ ├── view_entry.png │ │ │ ├── view_image.png │ │ │ ├── view_label.png │ │ │ ├── view_listview.png │ │ │ ├── view_map.png │ │ │ ├── view_picker.png │ │ │ ├── view_progressbar.png │ │ │ ├── view_searchbar.png │ │ │ ├── view_slider.png │ │ │ ├── view_stepper.png │ │ │ ├── view_switch.png │ │ │ ├── view_tableview.png │ │ │ ├── view_timepicker.png │ │ │ └── view_webview.png │ ├── Raw │ │ └── ReactTodoApp │ │ │ ├── asset-manifest.json │ │ │ ├── favicon.ico │ │ │ ├── index.html │ │ │ ├── logo192.png │ │ │ ├── logo512.png │ │ │ ├── manifest.json │ │ │ ├── precache-manifest.b5c8ebd82f6bf2f965737bfea11f80df.js │ │ │ ├── robots.txt │ │ │ ├── service-worker.js │ │ │ └── static │ │ │ ├── css │ │ │ ├── main.2a9b38db.chunk.css │ │ │ └── main.2a9b38db.chunk.css.map │ │ │ └── js │ │ │ ├── 2.74552d9c.chunk.js │ │ │ ├── 2.74552d9c.chunk.js.LICENSE.txt │ │ │ ├── 2.74552d9c.chunk.js.map │ │ │ ├── main.95b9a31a.chunk.js │ │ │ ├── main.95b9a31a.chunk.js.map │ │ │ ├── runtime-main.271f8bd8.js │ │ │ └── runtime-main.271f8bd8.js.map │ ├── Styles │ │ ├── AppColors.cs │ │ ├── AppStyles.xaml │ │ ├── Colors.xaml │ │ ├── Converters.xaml │ │ ├── DefaultStyles.xaml │ │ ├── Icons.xaml │ │ ├── SemanticControls.cs │ │ ├── Sizes.xaml │ │ └── Text.xaml │ ├── appicon.svg │ ├── appiconfg.svg │ └── food_01.png ├── Services │ ├── HotReloadService.cs │ └── IMediaFolder.cs ├── _usings.cs └── _xmlns.cs ├── _global.json └── nuget.config /.github/copilot-instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/.github/copilot-instructions.md -------------------------------------------------------------------------------- /.github/prompts/dotnet/async.prompt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/.github/prompts/dotnet/async.prompt.md -------------------------------------------------------------------------------- /.github/prompts/dotnet/codestyle.prompt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/.github/prompts/dotnet/codestyle.prompt.md -------------------------------------------------------------------------------- /.github/prompts/dotnet/maui/hybrid.prompt.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.github/prompts/dotnet/maui/maui-layouts.prompt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/.github/prompts/dotnet/maui/maui-layouts.prompt.md -------------------------------------------------------------------------------- /.github/prompts/dotnet/maui/maui-memory-leaks.prompt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/.github/prompts/dotnet/maui/maui-memory-leaks.prompt.md -------------------------------------------------------------------------------- /.github/prompts/dotnet/maui/maui-upgrade.prompt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/.github/prompts/dotnet/maui/maui-upgrade.prompt.md -------------------------------------------------------------------------------- /.github/prompts/dotnet/maui/maui.prompt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/.github/prompts/dotnet/maui/maui.prompt.md -------------------------------------------------------------------------------- /.github/prompts/dotnet/testing.xunit.prompt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/.github/prompts/dotnet/testing.xunit.prompt.md -------------------------------------------------------------------------------- /.github/prompts/prompts.prompt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/.github/prompts/prompts.prompt.md -------------------------------------------------------------------------------- /.github/workflows/copilot-setup-steps.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/.github/workflows/copilot-setup-steps.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/README.md -------------------------------------------------------------------------------- /media/catalyst-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/media/catalyst-01.png -------------------------------------------------------------------------------- /media/catalyst-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/media/catalyst-02.png -------------------------------------------------------------------------------- /media/catalyst-03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/media/catalyst-03.png -------------------------------------------------------------------------------- /media/catalyst-04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/media/catalyst-04.png -------------------------------------------------------------------------------- /media/catalyst-05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/media/catalyst-05.png -------------------------------------------------------------------------------- /media/control-gallery-net8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/media/control-gallery-net8.png -------------------------------------------------------------------------------- /media/ios.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/media/ios.png -------------------------------------------------------------------------------- /media/maui-gallery-catalyst.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/media/maui-gallery-catalyst.mp4 -------------------------------------------------------------------------------- /media/maui-p2-gallery.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/media/maui-p2-gallery.mp4 -------------------------------------------------------------------------------- /src/ControlGallery/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "dotnet.defaultSolution": "ControlGallery.sln" 3 | } -------------------------------------------------------------------------------- /src/ControlGallery/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/App.xaml -------------------------------------------------------------------------------- /src/ControlGallery/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/App.xaml.cs -------------------------------------------------------------------------------- /src/ControlGallery/AppShell.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/AppShell.xaml -------------------------------------------------------------------------------- /src/ControlGallery/AppShell.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/AppShell.xaml.cs -------------------------------------------------------------------------------- /src/ControlGallery/AppWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/AppWindow.xaml -------------------------------------------------------------------------------- /src/ControlGallery/AppWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/AppWindow.xaml.cs -------------------------------------------------------------------------------- /src/ControlGallery/Common/AbsoluteLayoutExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Common/AbsoluteLayoutExtensions.cs -------------------------------------------------------------------------------- /src/ControlGallery/Common/CursorBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Common/CursorBehavior.cs -------------------------------------------------------------------------------- /src/ControlGallery/Common/Effects/ContentInsetAdjustmentBehaviorEffect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Common/Effects/ContentInsetAdjustmentBehaviorEffect.cs -------------------------------------------------------------------------------- /src/ControlGallery/Common/Fonts/IconFont.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Common/Fonts/IconFont.cs -------------------------------------------------------------------------------- /src/ControlGallery/Common/FormattedStringFormatter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Common/FormattedStringFormatter.cs -------------------------------------------------------------------------------- /src/ControlGallery/Common/MauiExceptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Common/MauiExceptions.cs -------------------------------------------------------------------------------- /src/ControlGallery/Common/Messages/ToggleFlyoutHeaderMsg.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Common/Messages/ToggleFlyoutHeaderMsg.cs -------------------------------------------------------------------------------- /src/ControlGallery/Common/MyExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Common/MyExtensions.cs -------------------------------------------------------------------------------- /src/ControlGallery/Common/NameOfExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Common/NameOfExtension.cs -------------------------------------------------------------------------------- /src/ControlGallery/Common/Views/ControlExample.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Common/Views/ControlExample.xaml -------------------------------------------------------------------------------- /src/ControlGallery/Common/Views/ControlExample.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Common/Views/ControlExample.xaml.cs -------------------------------------------------------------------------------- /src/ControlGallery/Common/Views/CustomFlyoutItem.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Common/Views/CustomFlyoutItem.xaml -------------------------------------------------------------------------------- /src/ControlGallery/Common/Views/CustomFlyoutItem.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Common/Views/CustomFlyoutItem.xaml.cs -------------------------------------------------------------------------------- /src/ControlGallery/Common/Views/ExampleView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Common/Views/ExampleView.xaml -------------------------------------------------------------------------------- /src/ControlGallery/Common/Views/ExampleView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Common/Views/ExampleView.xaml.cs -------------------------------------------------------------------------------- /src/ControlGallery/Common/Views/FlyoutHeader.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Common/Views/FlyoutHeader.xaml -------------------------------------------------------------------------------- /src/ControlGallery/Common/Views/FlyoutHeader.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Common/Views/FlyoutHeader.xaml.cs -------------------------------------------------------------------------------- /src/ControlGallery/Common/Views/SampleCodePresenter.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Common/Views/SampleCodePresenter.xaml -------------------------------------------------------------------------------- /src/ControlGallery/Common/Views/SampleCodePresenter.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Common/Views/SampleCodePresenter.xaml.cs -------------------------------------------------------------------------------- /src/ControlGallery/ControlGallery.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/ControlGallery.csproj -------------------------------------------------------------------------------- /src/ControlGallery/ControlGallery.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/ControlGallery.sln -------------------------------------------------------------------------------- /src/ControlGallery/Converters/BooleanInverseConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Converters/BooleanInverseConverter.cs -------------------------------------------------------------------------------- /src/ControlGallery/Converters/ColorSyntaxConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Converters/ColorSyntaxConverter.cs -------------------------------------------------------------------------------- /src/ControlGallery/Converters/DoubleToIntConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Converters/DoubleToIntConverter.cs -------------------------------------------------------------------------------- /src/ControlGallery/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Info.plist -------------------------------------------------------------------------------- /src/ControlGallery/MauiProgram.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/MauiProgram.cs -------------------------------------------------------------------------------- /src/ControlGallery/Models/BaseViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Models/BaseViewModel.cs -------------------------------------------------------------------------------- /src/ControlGallery/Models/ColorBrush.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Models/ColorBrush.cs -------------------------------------------------------------------------------- /src/ControlGallery/Models/GithubRelease.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Models/GithubRelease.cs -------------------------------------------------------------------------------- /src/ControlGallery/Models/GroupedNavItems.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Models/GroupedNavItems.cs -------------------------------------------------------------------------------- /src/ControlGallery/Models/NavItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Models/NavItem.cs -------------------------------------------------------------------------------- /src/ControlGallery/Models/QuickLink.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Models/QuickLink.cs -------------------------------------------------------------------------------- /src/ControlGallery/Pages/BaseContentPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/BaseContentPage.cs -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Controls/ActivityIndicatorPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Controls/ActivityIndicatorPage.cs -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Controls/AlertPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Controls/AlertPage.cs -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Controls/BorderPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Controls/BorderPage.cs -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Controls/BoxViewPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Controls/BoxViewPage.cs -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Controls/ButtonPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Controls/ButtonPage.xaml -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Controls/ButtonPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Controls/ButtonPage.xaml.cs -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Controls/CarouselView/BasicCarouselPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Controls/CarouselView/BasicCarouselPage.cs -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Controls/CarouselView/CarouselViewPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Controls/CarouselView/CarouselViewPage.xaml -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Controls/CarouselView/CarouselViewPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Controls/CarouselView/CarouselViewPage.xaml.cs -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Controls/CarouselView/Components/MarriottView01.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Controls/CarouselView/Components/MarriottView01.xaml -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Controls/CarouselView/Components/MarriottView01.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Controls/CarouselView/Components/MarriottView01.xaml.cs -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Controls/CarouselView/Components/MarriottView02.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Controls/CarouselView/Components/MarriottView02.xaml -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Controls/CarouselView/Components/MarriottView02.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Controls/CarouselView/Components/MarriottView02.xaml.cs -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Controls/CarouselView/Components/MintView01.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Controls/CarouselView/Components/MintView01.xaml -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Controls/CarouselView/Components/MintView01.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Controls/CarouselView/Components/MintView01.xaml.cs -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Controls/CarouselView/Components/MintView02.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Controls/CarouselView/Components/MintView02.xaml -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Controls/CarouselView/Components/MintView02.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Controls/CarouselView/Components/MintView02.xaml.cs -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Controls/CarouselView/InstagramPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Controls/CarouselView/InstagramPage.xaml -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Controls/CarouselView/InstagramPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Controls/CarouselView/InstagramPage.xaml.cs -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Controls/CarouselView/LufthansaPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Controls/CarouselView/LufthansaPage.xaml -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Controls/CarouselView/LufthansaPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Controls/CarouselView/LufthansaPage.xaml.cs -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Controls/CarouselView/MarriottPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Controls/CarouselView/MarriottPage.xaml -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Controls/CarouselView/MarriottPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Controls/CarouselView/MarriottPage.xaml.cs -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Controls/CarouselView/MintPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Controls/CarouselView/MintPage.xaml -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Controls/CarouselView/MintPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Controls/CarouselView/MintPage.xaml.cs -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Controls/CarouselView/Models/InstaPic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Controls/CarouselView/Models/InstaPic.cs -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Controls/CarouselView/REIPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Controls/CarouselView/REIPage.xaml -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Controls/CarouselView/REIPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Controls/CarouselView/REIPage.xaml.cs -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Controls/CarouselView/ViewModels/DisneyItemViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Controls/CarouselView/ViewModels/DisneyItemViewModel.cs -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Controls/CheckboxPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Controls/CheckboxPage.cs -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Controls/CollectionView/Controls/EnumPicker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Controls/CollectionView/Controls/EnumPicker.cs -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Controls/CollectionView/Controls/FilterData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Controls/CollectionView/Controls/FilterData.cs -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Controls/CollectionView/Controls/MonkeyDataTemplateSelector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Controls/CollectionView/Controls/MonkeyDataTemplateSelector.cs -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Controls/CollectionView/Controls/SearchTermDataTemplateSelector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Controls/CollectionView/Controls/SearchTermDataTemplateSelector.cs -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Controls/CollectionView/Controls/SpacingModifier.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Controls/CollectionView/Controls/SpacingModifier.xaml -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Controls/CollectionView/Controls/SpacingModifier.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Controls/CollectionView/Controls/SpacingModifier.xaml.cs -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Controls/CollectionView/Helpers/IndexParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Controls/CollectionView/Helpers/IndexParser.cs -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Controls/CollectionView/Models/Animal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Controls/CollectionView/Models/Animal.cs -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Controls/CollectionView/Models/AnimalGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Controls/CollectionView/Models/AnimalGroup.cs -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Controls/CollectionView/Models/Monkey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Controls/CollectionView/Models/Monkey.cs -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Controls/CollectionView/ViewModels/AnimalsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Controls/CollectionView/ViewModels/AnimalsViewModel.cs -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Controls/CollectionView/ViewModels/CollectionViewPageViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Controls/CollectionView/ViewModels/CollectionViewPageViewModel.cs -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Controls/CollectionView/ViewModels/GroupedAnimalsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Controls/CollectionView/ViewModels/GroupedAnimalsViewModel.cs -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Controls/CollectionView/ViewModels/MonkeysViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Controls/CollectionView/ViewModels/MonkeysViewModel.cs -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Controls/CollectionView/ViewModels/MonkeysViewModelWithDelay.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Controls/CollectionView/ViewModels/MonkeysViewModelWithDelay.cs -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Controls/CollectionView/Views/CollectionViewPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Controls/CollectionView/Views/CollectionViewPage.xaml -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Controls/CollectionView/Views/CollectionViewPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Controls/CollectionView/Views/CollectionViewPage.xaml.cs -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Controls/CollectionView/Views/EmptyView/EmptyViewDataTemplateSelectorPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Controls/CollectionView/Views/EmptyView/EmptyViewDataTemplateSelectorPage.xaml -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Controls/CollectionView/Views/EmptyView/EmptyViewDataTemplateSelectorPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Controls/CollectionView/Views/EmptyView/EmptyViewDataTemplateSelectorPage.xaml.cs -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Controls/CollectionView/Views/EmptyView/EmptyViewFilteredPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Controls/CollectionView/Views/EmptyView/EmptyViewFilteredPage.xaml -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Controls/CollectionView/Views/EmptyView/EmptyViewFilteredPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Controls/CollectionView/Views/EmptyView/EmptyViewFilteredPage.xaml.cs -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Controls/CollectionView/Views/EmptyView/EmptyViewLoadSimulationPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Controls/CollectionView/Views/EmptyView/EmptyViewLoadSimulationPage.xaml -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Controls/CollectionView/Views/EmptyView/EmptyViewLoadSimulationPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Controls/CollectionView/Views/EmptyView/EmptyViewLoadSimulationPage.xaml.cs -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Controls/CollectionView/Views/EmptyView/EmptyViewNullPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Controls/CollectionView/Views/EmptyView/EmptyViewNullPage.xaml -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Controls/CollectionView/Views/EmptyView/EmptyViewNullPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Controls/CollectionView/Views/EmptyView/EmptyViewNullPage.xaml.cs -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Controls/CollectionView/Views/EmptyView/EmptyViewSwapPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Controls/CollectionView/Views/EmptyView/EmptyViewSwapPage.xaml -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Controls/CollectionView/Views/EmptyView/EmptyViewSwapPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Controls/CollectionView/Views/EmptyView/EmptyViewSwapPage.xaml.cs -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Controls/CollectionView/Views/EmptyView/EmptyViewTemplatePage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Controls/CollectionView/Views/EmptyView/EmptyViewTemplatePage.xaml -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Controls/CollectionView/Views/EmptyView/EmptyViewTemplatePage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Controls/CollectionView/Views/EmptyView/EmptyViewTemplatePage.xaml.cs -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Controls/CollectionView/Views/EmptyView/EmptyViewWithViewsFilteredPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Controls/CollectionView/Views/EmptyView/EmptyViewWithViewsFilteredPage.xaml -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Controls/CollectionView/Views/EmptyView/EmptyViewWithViewsFilteredPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Controls/CollectionView/Views/EmptyView/EmptyViewWithViewsFilteredPage.xaml.cs -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Controls/CollectionView/Views/Grouping/VerticalListEmptyGroupsPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Controls/CollectionView/Views/Grouping/VerticalListEmptyGroupsPage.xaml -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Controls/CollectionView/Views/Grouping/VerticalListEmptyGroupsPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Controls/CollectionView/Views/Grouping/VerticalListEmptyGroupsPage.xaml.cs -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Controls/CollectionView/Views/Grouping/VerticalListGroupingPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Controls/CollectionView/Views/Grouping/VerticalListGroupingPage.xaml -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Controls/CollectionView/Views/Grouping/VerticalListGroupingPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Controls/CollectionView/Views/Grouping/VerticalListGroupingPage.xaml.cs -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Controls/CollectionView/Views/Grouping/VerticalListGroupingVariableSizeItemsPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Controls/CollectionView/Views/Grouping/VerticalListGroupingVariableSizeItemsPage.xaml -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Controls/CollectionView/Views/Grouping/VerticalListGroupingVariableSizeItemsPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Controls/CollectionView/Views/Grouping/VerticalListGroupingVariableSizeItemsPage.xaml.cs -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Controls/CollectionView/Views/Grouping/VerticalListTextGroupingPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Controls/CollectionView/Views/Grouping/VerticalListTextGroupingPage.xaml -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Controls/CollectionView/Views/Grouping/VerticalListTextGroupingPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Controls/CollectionView/Views/Grouping/VerticalListTextGroupingPage.xaml.cs -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Controls/CollectionView/Views/HeadersAndFooters/HorizontalGridHeaderFooterViewPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Controls/CollectionView/Views/HeadersAndFooters/HorizontalGridHeaderFooterViewPage.xaml -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Controls/CollectionView/Views/HeadersAndFooters/HorizontalGridHeaderFooterViewPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Controls/CollectionView/Views/HeadersAndFooters/HorizontalGridHeaderFooterViewPage.xaml.cs -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Controls/CollectionView/Views/HeadersAndFooters/VerticalGridHeaderFooterViewPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Controls/CollectionView/Views/HeadersAndFooters/VerticalGridHeaderFooterViewPage.xaml -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Controls/CollectionView/Views/HeadersAndFooters/VerticalListHeaderFooterDataTemplatePage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Controls/CollectionView/Views/HeadersAndFooters/VerticalListHeaderFooterDataTemplatePage.xaml -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Controls/CollectionView/Views/HeadersAndFooters/VerticalListHeaderFooterDataTemplatePage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Controls/CollectionView/Views/HeadersAndFooters/VerticalListHeaderFooterDataTemplatePage.xaml.cs -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Controls/CollectionView/Views/HeadersAndFooters/VerticalListHeaderFooterStringPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Controls/CollectionView/Views/HeadersAndFooters/VerticalListHeaderFooterStringPage.xaml -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Controls/CollectionView/Views/HeadersAndFooters/VerticalListHeaderFooterStringPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Controls/CollectionView/Views/HeadersAndFooters/VerticalListHeaderFooterStringPage.xaml.cs -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Controls/CollectionView/Views/HeadersAndFooters/VerticalListHeaderFooterViewPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Controls/CollectionView/Views/HeadersAndFooters/VerticalListHeaderFooterViewPage.xaml -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Controls/CollectionView/Views/HeadersAndFooters/VerticalListHeaderFooterViewPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Controls/CollectionView/Views/HeadersAndFooters/VerticalListHeaderFooterViewPage.xaml.cs -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Controls/CollectionView/Views/Layout/HorizontalGridPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Controls/CollectionView/Views/Layout/HorizontalGridPage.xaml -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Controls/CollectionView/Views/Layout/HorizontalGridPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Controls/CollectionView/Views/Layout/HorizontalGridPage.xaml.cs -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Controls/CollectionView/Views/Layout/HorizontalGridTextPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Controls/CollectionView/Views/Layout/HorizontalGridTextPage.xaml -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Controls/CollectionView/Views/Layout/HorizontalGridTextPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Controls/CollectionView/Views/Layout/HorizontalGridTextPage.xaml.cs -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Controls/CollectionView/Views/Layout/HorizontalListPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Controls/CollectionView/Views/Layout/HorizontalListPage.xaml -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Controls/CollectionView/Views/Layout/HorizontalListPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Controls/CollectionView/Views/Layout/HorizontalListPage.xaml.cs -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Controls/CollectionView/Views/Layout/HorizontalListTextPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Controls/CollectionView/Views/Layout/HorizontalListTextPage.xaml -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Controls/CollectionView/Views/Layout/HorizontalListTextPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Controls/CollectionView/Views/Layout/HorizontalListTextPage.xaml.cs -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Controls/CollectionView/Views/Layout/VerticalGridPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Controls/CollectionView/Views/Layout/VerticalGridPage.xaml -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Controls/CollectionView/Views/Layout/VerticalGridPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Controls/CollectionView/Views/Layout/VerticalGridPage.xaml.cs -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Controls/CollectionView/Views/Layout/VerticalGridTextPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Controls/CollectionView/Views/Layout/VerticalGridTextPage.xaml -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Controls/CollectionView/Views/Layout/VerticalGridTextPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Controls/CollectionView/Views/Layout/VerticalGridTextPage.xaml.cs -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Controls/CollectionView/Views/Layout/VerticalListDataTemplateSelectorPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Controls/CollectionView/Views/Layout/VerticalListDataTemplateSelectorPage.xaml -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Controls/CollectionView/Views/Layout/VerticalListDataTemplateSelectorPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Controls/CollectionView/Views/Layout/VerticalListDataTemplateSelectorPage.xaml.cs -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Controls/CollectionView/Views/Layout/VerticalListPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Controls/CollectionView/Views/Layout/VerticalListPage.xaml -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Controls/CollectionView/Views/Layout/VerticalListPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Controls/CollectionView/Views/Layout/VerticalListPage.xaml.cs -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Controls/CollectionView/Views/Layout/VerticalListRTLPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Controls/CollectionView/Views/Layout/VerticalListRTLPage.xaml -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Controls/CollectionView/Views/Layout/VerticalListRTLPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Controls/CollectionView/Views/Layout/VerticalListRTLPage.xaml.cs -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Controls/CollectionView/Views/Layout/VerticalListTextPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Controls/CollectionView/Views/Layout/VerticalListTextPage.xaml -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Controls/CollectionView/Views/Layout/VerticalListTextPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Controls/CollectionView/Views/Layout/VerticalListTextPage.xaml.cs -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Controls/CollectionView/Views/PullToRefresh/HorizontalGridPullToRefreshPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Controls/CollectionView/Views/PullToRefresh/HorizontalGridPullToRefreshPage.xaml -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Controls/CollectionView/Views/PullToRefresh/HorizontalGridPullToRefreshPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Controls/CollectionView/Views/PullToRefresh/HorizontalGridPullToRefreshPage.xaml.cs -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Controls/CollectionView/Views/PullToRefresh/VerticalListPullToRefreshPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Controls/CollectionView/Views/PullToRefresh/VerticalListPullToRefreshPage.xaml -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Controls/CollectionView/Views/PullToRefresh/VerticalListPullToRefreshPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Controls/CollectionView/Views/PullToRefresh/VerticalListPullToRefreshPage.xaml.cs -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Controls/CollectionView/Views/Scrolling/IncrementalLoadingPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Controls/CollectionView/Views/Scrolling/IncrementalLoadingPage.xaml -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Controls/CollectionView/Views/Scrolling/IncrementalLoadingPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Controls/CollectionView/Views/Scrolling/IncrementalLoadingPage.xaml.cs -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Controls/CollectionView/Views/Scrolling/ItemsUpdatingScrollModePage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Controls/CollectionView/Views/Scrolling/ItemsUpdatingScrollModePage.xaml -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Controls/CollectionView/Views/Scrolling/ItemsUpdatingScrollModePage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Controls/CollectionView/Views/Scrolling/ItemsUpdatingScrollModePage.xaml.cs -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Controls/CollectionView/Views/Scrolling/ScrollToByIndexPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Controls/CollectionView/Views/Scrolling/ScrollToByIndexPage.xaml -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Controls/CollectionView/Views/Scrolling/ScrollToByIndexPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Controls/CollectionView/Views/Scrolling/ScrollToByIndexPage.xaml.cs -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Controls/CollectionView/Views/Scrolling/ScrollToByIndexWithGroupingPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Controls/CollectionView/Views/Scrolling/ScrollToByIndexWithGroupingPage.xaml -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Controls/CollectionView/Views/Scrolling/ScrollToByIndexWithGroupingPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Controls/CollectionView/Views/Scrolling/ScrollToByIndexWithGroupingPage.xaml.cs -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Controls/CollectionView/Views/Scrolling/ScrollToByObjectPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Controls/CollectionView/Views/Scrolling/ScrollToByObjectPage.xaml -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Controls/CollectionView/Views/Scrolling/ScrollToByObjectPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Controls/CollectionView/Views/Scrolling/ScrollToByObjectPage.xaml.cs -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Controls/CollectionView/Views/Scrolling/ScrollToByObjectWithGroupingPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Controls/CollectionView/Views/Scrolling/ScrollToByObjectWithGroupingPage.xaml -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Controls/CollectionView/Views/Scrolling/ScrollToByObjectWithGroupingPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Controls/CollectionView/Views/Scrolling/ScrollToByObjectWithGroupingPage.xaml.cs -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Controls/CollectionView/Views/Selection/VerticalListMultiplePreSelectionPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Controls/CollectionView/Views/Selection/VerticalListMultiplePreSelectionPage.xaml -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Controls/CollectionView/Views/Selection/VerticalListMultiplePreSelectionPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Controls/CollectionView/Views/Selection/VerticalListMultiplePreSelectionPage.xaml.cs -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Controls/CollectionView/Views/Selection/VerticalListMultipleSelectionPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Controls/CollectionView/Views/Selection/VerticalListMultipleSelectionPage.xaml -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Controls/CollectionView/Views/Selection/VerticalListMultipleSelectionPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Controls/CollectionView/Views/Selection/VerticalListMultipleSelectionPage.xaml.cs -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Controls/CollectionView/Views/Selection/VerticalListSelectionColorPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Controls/CollectionView/Views/Selection/VerticalListSelectionColorPage.xaml -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Controls/CollectionView/Views/Selection/VerticalListSelectionColorPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Controls/CollectionView/Views/Selection/VerticalListSelectionColorPage.xaml.cs -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Controls/CollectionView/Views/Selection/VerticalListSinglePreSelectionPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Controls/CollectionView/Views/Selection/VerticalListSinglePreSelectionPage.xaml -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Controls/CollectionView/Views/Selection/VerticalListSinglePreSelectionPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Controls/CollectionView/Views/Selection/VerticalListSinglePreSelectionPage.xaml.cs -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Controls/CollectionView/Views/Selection/VerticalListSingleSelectionPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Controls/CollectionView/Views/Selection/VerticalListSingleSelectionPage.xaml -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Controls/CollectionView/Views/Selection/VerticalListSingleSelectionPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Controls/CollectionView/Views/Selection/VerticalListSingleSelectionPage.xaml.cs -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Controls/CollectionView/Views/Sizing/VerticalListDynamicSizeItemsPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Controls/CollectionView/Views/Sizing/VerticalListDynamicSizeItemsPage.xaml -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Controls/CollectionView/Views/Sizing/VerticalListDynamicSizeItemsPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Controls/CollectionView/Views/Sizing/VerticalListDynamicSizeItemsPage.xaml.cs -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Controls/CollectionView/Views/Sizing/VerticalListVariableSizeItemsPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Controls/CollectionView/Views/Sizing/VerticalListVariableSizeItemsPage.xaml -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Controls/CollectionView/Views/Sizing/VerticalListVariableSizeItemsPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Controls/CollectionView/Views/Sizing/VerticalListVariableSizeItemsPage.xaml.cs -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Controls/CollectionView/Views/SnapPoints/VerticalListSnapPointsPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Controls/CollectionView/Views/SnapPoints/VerticalListSnapPointsPage.xaml -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Controls/CollectionView/Views/SnapPoints/VerticalListSnapPointsPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Controls/CollectionView/Views/SnapPoints/VerticalListSnapPointsPage.xaml.cs -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Controls/CollectionView/Views/Spacing/HorizontalGridSpacingPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Controls/CollectionView/Views/Spacing/HorizontalGridSpacingPage.xaml -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Controls/CollectionView/Views/Spacing/HorizontalGridSpacingPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Controls/CollectionView/Views/Spacing/HorizontalGridSpacingPage.xaml.cs -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Controls/CollectionView/Views/Spacing/HorizontalListSpacingPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Controls/CollectionView/Views/Spacing/HorizontalListSpacingPage.xaml -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Controls/CollectionView/Views/Spacing/HorizontalListSpacingPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Controls/CollectionView/Views/Spacing/HorizontalListSpacingPage.xaml.cs -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Controls/CollectionView/Views/Spacing/VerticalGridSpacingPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Controls/CollectionView/Views/Spacing/VerticalGridSpacingPage.xaml -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Controls/CollectionView/Views/Spacing/VerticalGridSpacingPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Controls/CollectionView/Views/Spacing/VerticalGridSpacingPage.xaml.cs -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Controls/CollectionView/Views/Spacing/VerticalListSpacingPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Controls/CollectionView/Views/Spacing/VerticalListSpacingPage.xaml -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Controls/CollectionView/Views/Spacing/VerticalListSpacingPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Controls/CollectionView/Views/Spacing/VerticalListSpacingPage.xaml.cs -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Controls/CollectionView/Views/Swipe/VerticalListSwipeContextItemsPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Controls/CollectionView/Views/Swipe/VerticalListSwipeContextItemsPage.xaml -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Controls/CollectionView/Views/Swipe/VerticalListSwipeContextItemsPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Controls/CollectionView/Views/Swipe/VerticalListSwipeContextItemsPage.xaml.cs -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Controls/ControlPageTemplate.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Controls/ControlPageTemplate.xaml -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Controls/ControlPageTemplate.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Controls/ControlPageTemplate.xaml.cs -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Controls/DatePickerPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Controls/DatePickerPage.cs -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Controls/EditorPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Controls/EditorPage.cs -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Controls/EntryPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Controls/EntryPage.xaml -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Controls/EntryPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Controls/EntryPage.xaml.cs -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Controls/FramePage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Controls/FramePage.xaml -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Controls/ImagePage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Controls/ImagePage.xaml -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Controls/ImagePage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Controls/ImagePage.xaml.cs -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Controls/LabelPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Controls/LabelPage.xaml -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Controls/LabelPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Controls/LabelPage.xaml.cs -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Controls/MapPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Controls/MapPage.xaml -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Controls/MapPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Controls/MapPage.xaml.cs -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Controls/PickerPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Controls/PickerPage.xaml -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Controls/PickerPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Controls/PickerPage.xaml.cs -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Controls/ProgressBarPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Controls/ProgressBarPage.xaml -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Controls/ProgressBarPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Controls/ProgressBarPage.xaml.cs -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Controls/RadioButtonPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Controls/RadioButtonPage.xaml -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Controls/RadioButtonPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Controls/RadioButtonPage.xaml.cs -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Controls/RefreshViewPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Controls/RefreshViewPage.xaml -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Controls/RefreshViewPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Controls/RefreshViewPage.xaml.cs -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Controls/SearchBarPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Controls/SearchBarPage.xaml -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Controls/SearchBarPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Controls/SearchBarPage.xaml.cs -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Controls/ShapesPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Controls/ShapesPage.xaml -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Controls/ShapesPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Controls/ShapesPage.xaml.cs -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Controls/SliderPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Controls/SliderPage.xaml -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Controls/SliderPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Controls/SliderPage.xaml.cs -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Controls/StepperPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Controls/StepperPage.xaml -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Controls/StepperPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Controls/StepperPage.xaml.cs -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Controls/SwitchPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Controls/SwitchPage.xaml -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Controls/SwitchPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Controls/SwitchPage.xaml.cs -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Controls/TimePickerPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Controls/TimePickerPage.xaml -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Controls/TimePickerPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Controls/TimePickerPage.xaml.cs -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Controls/WebViewPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Controls/WebViewPage.xaml -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Controls/WebViewPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Controls/WebViewPage.xaml.cs -------------------------------------------------------------------------------- /src/ControlGallery/Pages/ControlsPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/ControlsPage.xaml -------------------------------------------------------------------------------- /src/ControlGallery/Pages/ControlsPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/ControlsPage.xaml.cs -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Features/Animation/AnimationsPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Features/Animation/AnimationsPage.xaml -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Features/Animation/AnimationsPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Features/Animation/AnimationsPage.xaml.cs -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Features/Animation/AnimationsPageViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Features/Animation/AnimationsPageViewModel.cs -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Features/Animation/Controls/EasingCard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Features/Animation/Controls/EasingCard.cs -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Features/Animation/Controls/PickerCell.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Features/Animation/Controls/PickerCell.cs -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Features/Animation/CustomAnimationPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Features/Animation/CustomAnimationPage.xaml -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Features/Animation/CustomAnimationPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Features/Animation/CustomAnimationPage.xaml.cs -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Features/Animation/EasingEditorPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Features/Animation/EasingEditorPage.xaml -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Features/Animation/EasingEditorPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Features/Animation/EasingEditorPage.xaml.cs -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Features/Animation/EasingsPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Features/Animation/EasingsPage.xaml -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Features/Animation/EasingsPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Features/Animation/EasingsPage.xaml.cs -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Features/Animation/Extensions/AnimationExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Features/Animation/Extensions/AnimationExtensions.cs -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Features/Animation/Extensions/ExtensionMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Features/Animation/Extensions/ExtensionMethods.cs -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Features/Animation/FadePage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Features/Animation/FadePage.xaml -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Features/Animation/FadePage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Features/Animation/FadePage.xaml.cs -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Features/Animation/LayoutToPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Features/Animation/LayoutToPage.xaml -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Features/Animation/LayoutToPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Features/Animation/LayoutToPage.xaml.cs -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Features/Animation/RotatePage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Features/Animation/RotatePage.xaml -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Features/Animation/RotatePage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Features/Animation/RotatePage.xaml.cs -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Features/Animation/ScalePage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Features/Animation/ScalePage.xaml -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Features/Animation/ScalePage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Features/Animation/ScalePage.xaml.cs -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Features/Animation/TranslatePage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Features/Animation/TranslatePage.xaml -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Features/Animation/TranslatePage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Features/Animation/TranslatePage.xaml.cs -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Features/AppThemePage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Features/AppThemePage.xaml -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Features/AppThemePage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Features/AppThemePage.xaml.cs -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Features/AppThemeViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Features/AppThemeViewModel.cs -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Features/BehaviorsPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Features/BehaviorsPage.xaml -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Features/BehaviorsPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Features/BehaviorsPage.xaml.cs -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Features/ClippingPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Features/ClippingPage.xaml -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Features/ClippingPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Features/ClippingPage.xaml.cs -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Features/ColorsPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Features/ColorsPage.xaml -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Features/ColorsPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Features/ColorsPage.xaml.cs -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Features/ContextMenuPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Features/ContextMenuPage.xaml -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Features/ContextMenuPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Features/ContextMenuPage.xaml.cs -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Features/FontImagePage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Features/FontImagePage.xaml -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Features/FontImagePage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Features/FontImagePage.xaml.cs -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Features/Gestures/PointerGesturePage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Features/Gestures/PointerGesturePage.xaml -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Features/Gestures/PointerGesturePage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Features/Gestures/PointerGesturePage.xaml.cs -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Features/Gestures/TapGesturePage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Features/Gestures/TapGesturePage.xaml -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Features/Gestures/TapGesturePage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Features/Gestures/TapGesturePage.xaml.cs -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Features/GesturesPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Features/GesturesPage.xaml -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Features/GesturesPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Features/GesturesPage.xaml.cs -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Features/HybridWebViewPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Features/HybridWebViewPage.xaml -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Features/HybridWebViewPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Features/HybridWebViewPage.xaml.cs -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Features/IconBox.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Features/IconBox.xaml -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Features/IconBox.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Features/IconBox.xaml.cs -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Features/MenuBarPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Features/MenuBarPage.xaml -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Features/MenuBarPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Features/MenuBarPage.xaml.cs -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Features/NativeViewsPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Features/NativeViewsPage.xaml -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Features/NativeViewsPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Features/NativeViewsPage.xaml.cs -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Features/ShadowPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Features/ShadowPage.xaml -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Features/ShadowPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Features/ShadowPage.xaml.cs -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Features/TodoDataStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Features/TodoDataStore.cs -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Features/TodoTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Features/TodoTask.cs -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Features/TooltipPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Features/TooltipPage.xaml -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Features/TooltipPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Features/TooltipPage.xaml.cs -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Features/TriggersPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Features/TriggersPage.xaml -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Features/TriggersPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Features/TriggersPage.xaml.cs -------------------------------------------------------------------------------- /src/ControlGallery/Pages/FeaturesPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/FeaturesPage.xaml -------------------------------------------------------------------------------- /src/ControlGallery/Pages/FeaturesPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/FeaturesPage.xaml.cs -------------------------------------------------------------------------------- /src/ControlGallery/Pages/HomePage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/HomePage.xaml -------------------------------------------------------------------------------- /src/ControlGallery/Pages/HomePage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/HomePage.xaml.cs -------------------------------------------------------------------------------- /src/ControlGallery/Pages/HomeViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/HomeViewModel.cs -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Layouts/AbsoluteLayouts/BouncingTextDemoPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Layouts/AbsoluteLayouts/BouncingTextDemoPage.xaml -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Layouts/AbsoluteLayouts/BouncingTextDemoPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Layouts/AbsoluteLayouts/BouncingTextDemoPage.xaml.cs -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Layouts/AbsoluteLayouts/ChessboardDemoPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Layouts/AbsoluteLayouts/ChessboardDemoPage.xaml -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Layouts/AbsoluteLayouts/ChessboardDemoPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Layouts/AbsoluteLayouts/ChessboardDemoPage.xaml.cs -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Layouts/AbsoluteLayouts/ProportionalCoordinateCalcDemoPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Layouts/AbsoluteLayouts/ProportionalCoordinateCalcDemoPage.xaml -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Layouts/AbsoluteLayouts/ProportionalCoordinateCalcDemoPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Layouts/AbsoluteLayouts/ProportionalCoordinateCalcDemoPage.xaml.cs -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Layouts/AbsoluteLayouts/ProportionalDemoPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Layouts/AbsoluteLayouts/ProportionalDemoPage.xaml -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Layouts/AbsoluteLayouts/ProportionalDemoPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Layouts/AbsoluteLayouts/ProportionalDemoPage.xaml.cs -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Layouts/AbsoluteLayouts/SimpleOverlayDemoPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Layouts/AbsoluteLayouts/SimpleOverlayDemoPage.xaml -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Layouts/AbsoluteLayouts/SimpleOverlayDemoPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Layouts/AbsoluteLayouts/SimpleOverlayDemoPage.xaml.cs -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Layouts/AbsoluteLayouts/StylishHeaderDemoPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Layouts/AbsoluteLayouts/StylishHeaderDemoPage.xaml -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Layouts/AbsoluteLayouts/StylishHeaderDemoPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Layouts/AbsoluteLayouts/StylishHeaderDemoPage.xaml.cs -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Layouts/Custom/CacadeLayoutPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Layouts/Custom/CacadeLayoutPage.xaml -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Layouts/Custom/CacadeLayoutPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Layouts/Custom/CacadeLayoutPage.xaml.cs -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Layouts/Custom/ColumnLayoutPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Layouts/Custom/ColumnLayoutPage.xaml -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Layouts/Custom/ColumnLayoutPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Layouts/Custom/ColumnLayoutPage.xaml.cs -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Layouts/Custom/HorizontalWrapLayoutPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Layouts/Custom/HorizontalWrapLayoutPage.xaml -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Layouts/Custom/HorizontalWrapLayoutPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Layouts/Custom/HorizontalWrapLayoutPage.xaml.cs -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Layouts/Custom/Layouts/CascadeLayout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Layouts/Custom/Layouts/CascadeLayout.cs -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Layouts/Custom/Layouts/CascadeLayoutManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Layouts/Custom/Layouts/CascadeLayoutManager.cs -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Layouts/Custom/Layouts/ColumnLayout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Layouts/Custom/Layouts/ColumnLayout.cs -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Layouts/Custom/Layouts/ColumnLayoutManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Layouts/Custom/Layouts/ColumnLayoutManager.cs -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Layouts/Custom/Layouts/ContentColumnLayout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Layouts/Custom/Layouts/ContentColumnLayout.cs -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Layouts/Custom/Layouts/HorizontalWrapLayout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Layouts/Custom/Layouts/HorizontalWrapLayout.cs -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Layouts/Custom/Layouts/HorizontalWrapLayoutManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Layouts/Custom/Layouts/HorizontalWrapLayoutManager.cs -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Layouts/Flex/AchievementView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Layouts/Flex/AchievementView.xaml -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Layouts/Flex/AchievementView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Layouts/Flex/AchievementView.xaml.cs -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Layouts/Flex/AchievementsPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Layouts/Flex/AchievementsPage.xaml -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Layouts/Flex/AchievementsPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Layouts/Flex/AchievementsPage.xaml.cs -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Layouts/Flex/AlignmentPage.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Layouts/Flex/AlignmentPage.css -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Layouts/Flex/AlignmentPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Layouts/Flex/AlignmentPage.xaml -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Layouts/Flex/AlignmentPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Layouts/Flex/AlignmentPage.xaml.cs -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Layouts/Flex/BasisExperimentPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Layouts/Flex/BasisExperimentPage.xaml -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Layouts/Flex/BasisExperimentPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Layouts/Flex/BasisExperimentPage.xaml.cs -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Layouts/Flex/CatalogItemsPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Layouts/Flex/CatalogItemsPage.xaml -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Layouts/Flex/CatalogItemsPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Layouts/Flex/CatalogItemsPage.xaml.cs -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Layouts/Flex/CatalogItemsStyles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Layouts/Flex/CatalogItemsStyles.css -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Layouts/Flex/CssCatalogItemsPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Layouts/Flex/CssCatalogItemsPage.xaml -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Layouts/Flex/CssCatalogItemsPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Layouts/Flex/CssCatalogItemsPage.xaml.cs -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Layouts/Flex/EnumPicker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Layouts/Flex/EnumPicker.cs -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Layouts/Flex/GridPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Layouts/Flex/GridPage.xaml -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Layouts/Flex/GridPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Layouts/Flex/GridPage.xaml.cs -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Layouts/Flex/GrowExperimentPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Layouts/Flex/GrowExperimentPage.xaml -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Layouts/Flex/GrowExperimentPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Layouts/Flex/GrowExperimentPage.xaml.cs -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Layouts/Flex/LoginPage.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Layouts/Flex/LoginPage.css -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Layouts/Flex/LoginPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Layouts/Flex/LoginPage.xaml -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Layouts/Flex/LoginPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Layouts/Flex/LoginPage.xaml.cs -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Layouts/Flex/PhotoWrappingPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Layouts/Flex/PhotoWrappingPage.xaml -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Layouts/Flex/PhotoWrappingPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Layouts/Flex/PhotoWrappingPage.xaml.cs -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Layouts/Flex/PhotosPage.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Layouts/Flex/PhotosPage.css -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Layouts/Flex/PhotosPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Layouts/Flex/PhotosPage.xaml -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Layouts/Flex/PhotosPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Layouts/Flex/PhotosPage.xaml.cs -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Layouts/Flex/ReadingColumnsPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Layouts/Flex/ReadingColumnsPage.xaml -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Layouts/Flex/ReadingColumnsPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Layouts/Flex/ReadingColumnsPage.xaml.cs -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Layouts/Flex/ShowPage.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Layouts/Flex/ShowPage.css -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Layouts/Flex/ShowPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Layouts/Flex/ShowPage.xaml -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Layouts/Flex/ShowPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Layouts/Flex/ShowPage.xaml.cs -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Layouts/Flex/ShrinkExperimentPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Layouts/Flex/ShrinkExperimentPage.xaml -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Layouts/Flex/ShrinkExperimentPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Layouts/Flex/ShrinkExperimentPage.xaml.cs -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Layouts/Flex/SimpleStackPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Layouts/Flex/SimpleStackPage.xaml -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Layouts/Flex/SimpleStackPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Layouts/Flex/SimpleStackPage.xaml.cs -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Layouts/Grid/AlignmentGridPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Layouts/Grid/AlignmentGridPage.cs -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Layouts/Grid/BasicGridPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Layouts/Grid/BasicGridPage.cs -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Layouts/Grid/CalculatorPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Layouts/Grid/CalculatorPage.cs -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Layouts/Grid/KeypadPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Layouts/Grid/KeypadPage.xaml -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Layouts/Grid/KeypadPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Layouts/Grid/KeypadPage.xaml.cs -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Layouts/Grid/SliderGridPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Layouts/Grid/SliderGridPage.cs -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Layouts/Grid/SpacingGridPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Layouts/Grid/SpacingGridPage.cs -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Layouts/MarginPaddingPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Layouts/MarginPaddingPage.xaml -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Layouts/MarginPaddingPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Layouts/MarginPaddingPage.xaml.cs -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Layouts/Stack/AlignmentStackPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Layouts/Stack/AlignmentStackPage.cs -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Layouts/Stack/AndExpandPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Layouts/Stack/AndExpandPage.xaml -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Layouts/Stack/AndExpandPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Layouts/Stack/AndExpandPage.xaml.cs -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Layouts/Stack/CombinedStackPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Layouts/Stack/CombinedStackPage.cs -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Layouts/Stack/ExpansionStackPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Layouts/Stack/ExpansionStackPage.cs -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Layouts/Stack/HorizontalStackPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Layouts/Stack/HorizontalStackPage.cs -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Layouts/Stack/SpacingStackPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Layouts/Stack/SpacingStackPage.cs -------------------------------------------------------------------------------- /src/ControlGallery/Pages/Layouts/Stack/VerticalStackPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/Layouts/Stack/VerticalStackPage.cs -------------------------------------------------------------------------------- /src/ControlGallery/Pages/LayoutsPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/LayoutsPage.xaml -------------------------------------------------------------------------------- /src/ControlGallery/Pages/LayoutsPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/LayoutsPage.xaml.cs -------------------------------------------------------------------------------- /src/ControlGallery/Pages/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/MainPage.xaml -------------------------------------------------------------------------------- /src/ControlGallery/Pages/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/MainPage.xaml.cs -------------------------------------------------------------------------------- /src/ControlGallery/Pages/ProfileReportPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/ProfileReportPage.cs -------------------------------------------------------------------------------- /src/ControlGallery/Pages/TipsPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/TipsPage.xaml -------------------------------------------------------------------------------- /src/ControlGallery/Pages/TipsPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Pages/TipsPage.xaml.cs -------------------------------------------------------------------------------- /src/ControlGallery/Platforms/Android/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Platforms/Android/AndroidManifest.xml -------------------------------------------------------------------------------- /src/ControlGallery/Platforms/Android/MainActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Platforms/Android/MainActivity.cs -------------------------------------------------------------------------------- /src/ControlGallery/Platforms/Android/MainApplication.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Platforms/Android/MainApplication.cs -------------------------------------------------------------------------------- /src/ControlGallery/Platforms/Android/Resources/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Platforms/Android/Resources/values/colors.xml -------------------------------------------------------------------------------- /src/ControlGallery/Platforms/Android/Resources/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Platforms/Android/Resources/values/dimens.xml -------------------------------------------------------------------------------- /src/ControlGallery/Platforms/Android/Resources/values/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Platforms/Android/Resources/values/ic_launcher_background.xml -------------------------------------------------------------------------------- /src/ControlGallery/Platforms/Android/Resources/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Platforms/Android/Resources/values/strings.xml -------------------------------------------------------------------------------- /src/ControlGallery/Platforms/Android/Resources/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Platforms/Android/Resources/values/styles.xml -------------------------------------------------------------------------------- /src/ControlGallery/Platforms/MacCatalyst/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Platforms/MacCatalyst/AppDelegate.cs -------------------------------------------------------------------------------- /src/ControlGallery/Platforms/MacCatalyst/CursorBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Platforms/MacCatalyst/CursorBehavior.cs -------------------------------------------------------------------------------- /src/ControlGallery/Platforms/MacCatalyst/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Platforms/MacCatalyst/Info.plist -------------------------------------------------------------------------------- /src/ControlGallery/Platforms/MacCatalyst/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Platforms/MacCatalyst/LaunchScreen.storyboard -------------------------------------------------------------------------------- /src/ControlGallery/Platforms/MacCatalyst/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Platforms/MacCatalyst/Program.cs -------------------------------------------------------------------------------- /src/ControlGallery/Platforms/Windows/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Platforms/Windows/App.xaml -------------------------------------------------------------------------------- /src/ControlGallery/Platforms/Windows/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Platforms/Windows/App.xaml.cs -------------------------------------------------------------------------------- /src/ControlGallery/Platforms/Windows/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Platforms/Windows/Package.appxmanifest -------------------------------------------------------------------------------- /src/ControlGallery/Platforms/Windows/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Platforms/Windows/app.manifest -------------------------------------------------------------------------------- /src/ControlGallery/Platforms/iOS/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Platforms/iOS/AppDelegate.cs -------------------------------------------------------------------------------- /src/ControlGallery/Platforms/iOS/Entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Platforms/iOS/Entitlements.plist -------------------------------------------------------------------------------- /src/ControlGallery/Platforms/iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Platforms/iOS/Info.plist -------------------------------------------------------------------------------- /src/ControlGallery/Platforms/iOS/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Platforms/iOS/LaunchScreen.storyboard -------------------------------------------------------------------------------- /src/ControlGallery/Platforms/iOS/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Platforms/iOS/Program.cs -------------------------------------------------------------------------------- /src/ControlGallery/Platforms/iOS/Resources/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Platforms/iOS/Resources/LaunchScreen.xib -------------------------------------------------------------------------------- /src/ControlGallery/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/ControlGallery/Resources/Fonts/FluentSystemIcons-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Resources/Fonts/FluentSystemIcons-Regular.ttf -------------------------------------------------------------------------------- /src/ControlGallery/Resources/Fonts/FluentUI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Resources/Fonts/FluentUI.cs -------------------------------------------------------------------------------- /src/ControlGallery/Resources/Fonts/fa_solid.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Resources/Fonts/fa_solid.ttf -------------------------------------------------------------------------------- /src/ControlGallery/Resources/Fonts/fabmdl2.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Resources/Fonts/fabmdl2.ttf -------------------------------------------------------------------------------- /src/ControlGallery/Resources/Fonts/opensans_regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Resources/Fonts/opensans_regular.ttf -------------------------------------------------------------------------------- /src/ControlGallery/Resources/Fonts/opensans_semibold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Resources/Fonts/opensans_semibold.ttf -------------------------------------------------------------------------------- /src/ControlGallery/Resources/Images/IMG_0191.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Resources/Images/IMG_0191.JPG -------------------------------------------------------------------------------- /src/ControlGallery/Resources/Images/IMG_0192.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Resources/Images/IMG_0192.JPG -------------------------------------------------------------------------------- /src/ControlGallery/Resources/Images/IMG_0193.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Resources/Images/IMG_0193.JPG -------------------------------------------------------------------------------- /src/ControlGallery/Resources/Images/IMG_0194.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Resources/Images/IMG_0194.JPG -------------------------------------------------------------------------------- /src/ControlGallery/Resources/Images/IMG_0195.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Resources/Images/IMG_0195.JPG -------------------------------------------------------------------------------- /src/ControlGallery/Resources/Images/animated_heart.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Resources/Images/animated_heart.gif -------------------------------------------------------------------------------- /src/ControlGallery/Resources/Images/cat_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Resources/Images/cat_1.jpg -------------------------------------------------------------------------------- /src/ControlGallery/Resources/Images/cat_10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Resources/Images/cat_10.jpg -------------------------------------------------------------------------------- /src/ControlGallery/Resources/Images/cat_11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Resources/Images/cat_11.jpg -------------------------------------------------------------------------------- /src/ControlGallery/Resources/Images/cat_12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Resources/Images/cat_12.jpg -------------------------------------------------------------------------------- /src/ControlGallery/Resources/Images/cat_13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Resources/Images/cat_13.jpg -------------------------------------------------------------------------------- /src/ControlGallery/Resources/Images/cat_14.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Resources/Images/cat_14.jpg -------------------------------------------------------------------------------- /src/ControlGallery/Resources/Images/cat_15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Resources/Images/cat_15.jpg -------------------------------------------------------------------------------- /src/ControlGallery/Resources/Images/cat_16.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Resources/Images/cat_16.jpg -------------------------------------------------------------------------------- /src/ControlGallery/Resources/Images/cat_17.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Resources/Images/cat_17.jpg -------------------------------------------------------------------------------- /src/ControlGallery/Resources/Images/cat_18.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Resources/Images/cat_18.jpg -------------------------------------------------------------------------------- /src/ControlGallery/Resources/Images/cat_19.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Resources/Images/cat_19.jpg -------------------------------------------------------------------------------- /src/ControlGallery/Resources/Images/cat_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Resources/Images/cat_2.jpg -------------------------------------------------------------------------------- /src/ControlGallery/Resources/Images/cat_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Resources/Images/cat_3.jpg -------------------------------------------------------------------------------- /src/ControlGallery/Resources/Images/cat_4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Resources/Images/cat_4.jpg -------------------------------------------------------------------------------- /src/ControlGallery/Resources/Images/cat_5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Resources/Images/cat_5.jpg -------------------------------------------------------------------------------- /src/ControlGallery/Resources/Images/cat_6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Resources/Images/cat_6.jpg -------------------------------------------------------------------------------- /src/ControlGallery/Resources/Images/cat_7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Resources/Images/cat_7.jpg -------------------------------------------------------------------------------- /src/ControlGallery/Resources/Images/cat_8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Resources/Images/cat_8.jpg -------------------------------------------------------------------------------- /src/ControlGallery/Resources/Images/cat_9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Resources/Images/cat_9.jpg -------------------------------------------------------------------------------- /src/ControlGallery/Resources/Images/dotnet_bot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Resources/Images/dotnet_bot.svg -------------------------------------------------------------------------------- /src/ControlGallery/Resources/Images/gallery_bar_chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Resources/Images/gallery_bar_chart.png -------------------------------------------------------------------------------- /src/ControlGallery/Resources/Images/h01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Resources/Images/h01.png -------------------------------------------------------------------------------- /src/ControlGallery/Resources/Images/h02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Resources/Images/h02.png -------------------------------------------------------------------------------- /src/ControlGallery/Resources/Images/h03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Resources/Images/h03.png -------------------------------------------------------------------------------- /src/ControlGallery/Resources/Images/h04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Resources/Images/h04.png -------------------------------------------------------------------------------- /src/ControlGallery/Resources/Images/h05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Resources/Images/h05.png -------------------------------------------------------------------------------- /src/ControlGallery/Resources/Images/icon_plane.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Resources/Images/icon_plane.jpg -------------------------------------------------------------------------------- /src/ControlGallery/Resources/Images/insta_00.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Resources/Images/insta_00.jpg -------------------------------------------------------------------------------- /src/ControlGallery/Resources/Images/insta_01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Resources/Images/insta_01.jpg -------------------------------------------------------------------------------- /src/ControlGallery/Resources/Images/insta_02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Resources/Images/insta_02.jpg -------------------------------------------------------------------------------- /src/ControlGallery/Resources/Images/insta_03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Resources/Images/insta_03.jpg -------------------------------------------------------------------------------- /src/ControlGallery/Resources/Images/insta_04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Resources/Images/insta_04.jpg -------------------------------------------------------------------------------- /src/ControlGallery/Resources/Images/logo_lufthansa.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Resources/Images/logo_lufthansa.jpg -------------------------------------------------------------------------------- /src/ControlGallery/Resources/Images/m_01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Resources/Images/m_01.jpg -------------------------------------------------------------------------------- /src/ControlGallery/Resources/Images/m_02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Resources/Images/m_02.jpg -------------------------------------------------------------------------------- /src/ControlGallery/Resources/Images/m_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Resources/Images/m_03.png -------------------------------------------------------------------------------- /src/ControlGallery/Resources/Images/m_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Resources/Images/m_04.png -------------------------------------------------------------------------------- /src/ControlGallery/Resources/Images/m_05.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Resources/Images/m_05.jpg -------------------------------------------------------------------------------- /src/ControlGallery/Resources/Images/m_06.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Resources/Images/m_06.jpg -------------------------------------------------------------------------------- /src/ControlGallery/Resources/Images/m_07.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Resources/Images/m_07.jpg -------------------------------------------------------------------------------- /src/ControlGallery/Resources/Images/m_08.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Resources/Images/m_08.jpg -------------------------------------------------------------------------------- /src/ControlGallery/Resources/Images/m_09.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Resources/Images/m_09.jpg -------------------------------------------------------------------------------- /src/ControlGallery/Resources/Images/m_10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Resources/Images/m_10.jpg -------------------------------------------------------------------------------- /src/ControlGallery/Resources/Images/m_11.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Resources/Images/m_11.jpeg -------------------------------------------------------------------------------- /src/ControlGallery/Resources/Images/m_12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Resources/Images/m_12.jpg -------------------------------------------------------------------------------- /src/ControlGallery/Resources/Images/m_13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Resources/Images/m_13.jpg -------------------------------------------------------------------------------- /src/ControlGallery/Resources/Images/m_14.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Resources/Images/m_14.jpg -------------------------------------------------------------------------------- /src/ControlGallery/Resources/Images/m_15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Resources/Images/m_15.jpg -------------------------------------------------------------------------------- /src/ControlGallery/Resources/Images/qr_code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Resources/Images/qr_code.png -------------------------------------------------------------------------------- /src/ControlGallery/Resources/Images/ragnarok.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Resources/Images/ragnarok.jpg -------------------------------------------------------------------------------- /src/ControlGallery/Resources/Images/seattle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Resources/Images/seattle.jpg -------------------------------------------------------------------------------- /src/ControlGallery/Resources/Images/toolbox/cell_entrycell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Resources/Images/toolbox/cell_entrycell.png -------------------------------------------------------------------------------- /src/ControlGallery/Resources/Images/toolbox/cell_imagecell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Resources/Images/toolbox/cell_imagecell.png -------------------------------------------------------------------------------- /src/ControlGallery/Resources/Images/toolbox/cell_switchcell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Resources/Images/toolbox/cell_switchcell.png -------------------------------------------------------------------------------- /src/ControlGallery/Resources/Images/toolbox/cell_textcell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Resources/Images/toolbox/cell_textcell.png -------------------------------------------------------------------------------- /src/ControlGallery/Resources/Images/toolbox/cell_viewcell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Resources/Images/toolbox/cell_viewcell.png -------------------------------------------------------------------------------- /src/ControlGallery/Resources/Images/toolbox/layout_absolutelayout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Resources/Images/toolbox/layout_absolutelayout.png -------------------------------------------------------------------------------- /src/ControlGallery/Resources/Images/toolbox/layout_contentview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Resources/Images/toolbox/layout_contentview.png -------------------------------------------------------------------------------- /src/ControlGallery/Resources/Images/toolbox/layout_flexlayout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Resources/Images/toolbox/layout_flexlayout.png -------------------------------------------------------------------------------- /src/ControlGallery/Resources/Images/toolbox/layout_frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Resources/Images/toolbox/layout_frame.png -------------------------------------------------------------------------------- /src/ControlGallery/Resources/Images/toolbox/layout_grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Resources/Images/toolbox/layout_grid.png -------------------------------------------------------------------------------- /src/ControlGallery/Resources/Images/toolbox/layout_relativelayout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Resources/Images/toolbox/layout_relativelayout.png -------------------------------------------------------------------------------- /src/ControlGallery/Resources/Images/toolbox/layout_scrollview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Resources/Images/toolbox/layout_scrollview.png -------------------------------------------------------------------------------- /src/ControlGallery/Resources/Images/toolbox/layout_stacklayout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Resources/Images/toolbox/layout_stacklayout.png -------------------------------------------------------------------------------- /src/ControlGallery/Resources/Images/toolbox/view_activityindicator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Resources/Images/toolbox/view_activityindicator.png -------------------------------------------------------------------------------- /src/ControlGallery/Resources/Images/toolbox/view_boxview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Resources/Images/toolbox/view_boxview.png -------------------------------------------------------------------------------- /src/ControlGallery/Resources/Images/toolbox/view_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Resources/Images/toolbox/view_button.png -------------------------------------------------------------------------------- /src/ControlGallery/Resources/Images/toolbox/view_datepicker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Resources/Images/toolbox/view_datepicker.png -------------------------------------------------------------------------------- /src/ControlGallery/Resources/Images/toolbox/view_editor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Resources/Images/toolbox/view_editor.png -------------------------------------------------------------------------------- /src/ControlGallery/Resources/Images/toolbox/view_entry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Resources/Images/toolbox/view_entry.png -------------------------------------------------------------------------------- /src/ControlGallery/Resources/Images/toolbox/view_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Resources/Images/toolbox/view_image.png -------------------------------------------------------------------------------- /src/ControlGallery/Resources/Images/toolbox/view_label.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Resources/Images/toolbox/view_label.png -------------------------------------------------------------------------------- /src/ControlGallery/Resources/Images/toolbox/view_listview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Resources/Images/toolbox/view_listview.png -------------------------------------------------------------------------------- /src/ControlGallery/Resources/Images/toolbox/view_map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Resources/Images/toolbox/view_map.png -------------------------------------------------------------------------------- /src/ControlGallery/Resources/Images/toolbox/view_picker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Resources/Images/toolbox/view_picker.png -------------------------------------------------------------------------------- /src/ControlGallery/Resources/Images/toolbox/view_progressbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Resources/Images/toolbox/view_progressbar.png -------------------------------------------------------------------------------- /src/ControlGallery/Resources/Images/toolbox/view_searchbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Resources/Images/toolbox/view_searchbar.png -------------------------------------------------------------------------------- /src/ControlGallery/Resources/Images/toolbox/view_slider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Resources/Images/toolbox/view_slider.png -------------------------------------------------------------------------------- /src/ControlGallery/Resources/Images/toolbox/view_stepper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Resources/Images/toolbox/view_stepper.png -------------------------------------------------------------------------------- /src/ControlGallery/Resources/Images/toolbox/view_switch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Resources/Images/toolbox/view_switch.png -------------------------------------------------------------------------------- /src/ControlGallery/Resources/Images/toolbox/view_tableview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Resources/Images/toolbox/view_tableview.png -------------------------------------------------------------------------------- /src/ControlGallery/Resources/Images/toolbox/view_timepicker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Resources/Images/toolbox/view_timepicker.png -------------------------------------------------------------------------------- /src/ControlGallery/Resources/Images/toolbox/view_webview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Resources/Images/toolbox/view_webview.png -------------------------------------------------------------------------------- /src/ControlGallery/Resources/Raw/ReactTodoApp/asset-manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Resources/Raw/ReactTodoApp/asset-manifest.json -------------------------------------------------------------------------------- /src/ControlGallery/Resources/Raw/ReactTodoApp/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Resources/Raw/ReactTodoApp/favicon.ico -------------------------------------------------------------------------------- /src/ControlGallery/Resources/Raw/ReactTodoApp/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Resources/Raw/ReactTodoApp/index.html -------------------------------------------------------------------------------- /src/ControlGallery/Resources/Raw/ReactTodoApp/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Resources/Raw/ReactTodoApp/logo192.png -------------------------------------------------------------------------------- /src/ControlGallery/Resources/Raw/ReactTodoApp/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Resources/Raw/ReactTodoApp/logo512.png -------------------------------------------------------------------------------- /src/ControlGallery/Resources/Raw/ReactTodoApp/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Resources/Raw/ReactTodoApp/manifest.json -------------------------------------------------------------------------------- /src/ControlGallery/Resources/Raw/ReactTodoApp/precache-manifest.b5c8ebd82f6bf2f965737bfea11f80df.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Resources/Raw/ReactTodoApp/precache-manifest.b5c8ebd82f6bf2f965737bfea11f80df.js -------------------------------------------------------------------------------- /src/ControlGallery/Resources/Raw/ReactTodoApp/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Resources/Raw/ReactTodoApp/robots.txt -------------------------------------------------------------------------------- /src/ControlGallery/Resources/Raw/ReactTodoApp/service-worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Resources/Raw/ReactTodoApp/service-worker.js -------------------------------------------------------------------------------- /src/ControlGallery/Resources/Raw/ReactTodoApp/static/css/main.2a9b38db.chunk.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Resources/Raw/ReactTodoApp/static/css/main.2a9b38db.chunk.css -------------------------------------------------------------------------------- /src/ControlGallery/Resources/Raw/ReactTodoApp/static/css/main.2a9b38db.chunk.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Resources/Raw/ReactTodoApp/static/css/main.2a9b38db.chunk.css.map -------------------------------------------------------------------------------- /src/ControlGallery/Resources/Raw/ReactTodoApp/static/js/2.74552d9c.chunk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Resources/Raw/ReactTodoApp/static/js/2.74552d9c.chunk.js -------------------------------------------------------------------------------- /src/ControlGallery/Resources/Raw/ReactTodoApp/static/js/2.74552d9c.chunk.js.LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Resources/Raw/ReactTodoApp/static/js/2.74552d9c.chunk.js.LICENSE.txt -------------------------------------------------------------------------------- /src/ControlGallery/Resources/Raw/ReactTodoApp/static/js/2.74552d9c.chunk.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Resources/Raw/ReactTodoApp/static/js/2.74552d9c.chunk.js.map -------------------------------------------------------------------------------- /src/ControlGallery/Resources/Raw/ReactTodoApp/static/js/main.95b9a31a.chunk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Resources/Raw/ReactTodoApp/static/js/main.95b9a31a.chunk.js -------------------------------------------------------------------------------- /src/ControlGallery/Resources/Raw/ReactTodoApp/static/js/main.95b9a31a.chunk.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Resources/Raw/ReactTodoApp/static/js/main.95b9a31a.chunk.js.map -------------------------------------------------------------------------------- /src/ControlGallery/Resources/Raw/ReactTodoApp/static/js/runtime-main.271f8bd8.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Resources/Raw/ReactTodoApp/static/js/runtime-main.271f8bd8.js -------------------------------------------------------------------------------- /src/ControlGallery/Resources/Raw/ReactTodoApp/static/js/runtime-main.271f8bd8.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Resources/Raw/ReactTodoApp/static/js/runtime-main.271f8bd8.js.map -------------------------------------------------------------------------------- /src/ControlGallery/Resources/Styles/AppColors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Resources/Styles/AppColors.cs -------------------------------------------------------------------------------- /src/ControlGallery/Resources/Styles/AppStyles.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Resources/Styles/AppStyles.xaml -------------------------------------------------------------------------------- /src/ControlGallery/Resources/Styles/Colors.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Resources/Styles/Colors.xaml -------------------------------------------------------------------------------- /src/ControlGallery/Resources/Styles/Converters.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Resources/Styles/Converters.xaml -------------------------------------------------------------------------------- /src/ControlGallery/Resources/Styles/DefaultStyles.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Resources/Styles/DefaultStyles.xaml -------------------------------------------------------------------------------- /src/ControlGallery/Resources/Styles/Icons.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Resources/Styles/Icons.xaml -------------------------------------------------------------------------------- /src/ControlGallery/Resources/Styles/SemanticControls.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Resources/Styles/SemanticControls.cs -------------------------------------------------------------------------------- /src/ControlGallery/Resources/Styles/Sizes.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Resources/Styles/Sizes.xaml -------------------------------------------------------------------------------- /src/ControlGallery/Resources/Styles/Text.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Resources/Styles/Text.xaml -------------------------------------------------------------------------------- /src/ControlGallery/Resources/appicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Resources/appicon.svg -------------------------------------------------------------------------------- /src/ControlGallery/Resources/appiconfg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Resources/appiconfg.svg -------------------------------------------------------------------------------- /src/ControlGallery/Resources/food_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Resources/food_01.png -------------------------------------------------------------------------------- /src/ControlGallery/Services/HotReloadService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Services/HotReloadService.cs -------------------------------------------------------------------------------- /src/ControlGallery/Services/IMediaFolder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/Services/IMediaFolder.cs -------------------------------------------------------------------------------- /src/ControlGallery/_usings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/_usings.cs -------------------------------------------------------------------------------- /src/ControlGallery/_xmlns.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/ControlGallery/_xmlns.cs -------------------------------------------------------------------------------- /src/_global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/_global.json -------------------------------------------------------------------------------- /src/nuget.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/ControlGallery/HEAD/src/nuget.config --------------------------------------------------------------------------------