├── .gitattributes ├── .github └── pull_request_template.md ├── .gitignore ├── .openpublishing.publish.config.json ├── CONTRIBUTING.md ├── LICENSE ├── LICENSE-CODE ├── README.md ├── SECURITY.md ├── ThirdPartyNotices.md ├── contributing-guidelines ├── images │ ├── alerts.png │ └── responsivedesign.gif ├── template.md └── voice-tone.md └── docs ├── .template.md ├── TOC.yml ├── behaviors ├── animationbehavior.md ├── animationtypes.md ├── charactersvalidationbehavior.md ├── emailvalidationbehavior.md ├── eventtocommandbehavior.md ├── impliedordergridbehavior-images │ └── ImpliedOrderGridBehavior.png ├── impliedordergridbehavior.md ├── maskedbehavior.md ├── maxlengthreachedbehavior.md ├── multivalidationbehavior.md ├── numericvalidationbehavior.md ├── requiredstringvalidationbehavior.md ├── setfocusonentrycompletedbehavior.md ├── textvalidationbehavior.md ├── urivalidationbehavior.md ├── userstoppedtypingbehavior.md └── validationbehavior.md ├── breadcrumb └── toc.yml ├── converters ├── booltoobjectconverter.md ├── bytearraytoimagesourceconverter.md ├── compareconverter.md ├── datetimeoffsetconverter.md ├── doubletointconverter.md ├── enumtoboolconverter.md ├── enumtointconverter.md ├── equalconverter.md ├── indextoarrayitemconverter.md ├── inttoboolconverter.md ├── invertedboolconverter.md ├── isinrangeconverter.md ├── isnotnulloremptyconverter.md ├── isnulloremptyconverter.md ├── itemselectedeventargsconverter.md ├── itemtappedeventargsconverter.md ├── listisnotnulloremptyconverter.md ├── listisnulloremptyconverter.md ├── listtostringconverter.md ├── mathexpressionconverter.md ├── multiconverter.md ├── notequalconverter.md ├── stringtolistconverter.md ├── textcaseconverter.md └── variablemultivalueconverter.md ├── docfx.json ├── effects ├── lifecycleeffect.md └── safeareaeffect.md ├── extensions ├── imageresourceextension.md └── translateextension.md ├── get-started.md ├── helpers ├── delegateweakeventmanager.md ├── localizationresourcemanager.md ├── localizedstring.md ├── weakeventmanagerextensions.md └── weakeventmanagert.md ├── images ├── download.png ├── managenuget.png ├── pre-release.png └── preview.png ├── index.md ├── markup.md ├── objectmodel ├── asynccommand.md ├── asyncvaluecommand.md └── commandfactory.md ├── troubleshooting.md └── views ├── avatarview.md ├── badgeview.md ├── cameraview.md ├── docklayout.md ├── expander-images ├── embedded-expander1.png ├── embedded-expander2.png ├── expander.png ├── icon-collapse.png └── icon-expand.png ├── expander.md ├── lazyview.md ├── mediaelement-images ├── custom-position-bar-large.png ├── custom-position-bar.png ├── custom-transport-paused-large.png ├── custom-transport-paused.png ├── custom-transport-playback-large.png ├── custom-transport-playback.png ├── playback-controls-large.png └── playback-controls.png ├── mediaelement.md ├── popup-images ├── custom-positioning-popup.png └── simple-popup.png ├── popup.md ├── rangeslider.md ├── shield-images └── example-shields.png ├── shield.md ├── statelayout.md ├── tabview.md ├── uniformgrid-images ├── uniformgrid-example-large.png └── uniformgrid-example.png └── uniformgrid.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/xamarin-communitytoolkit/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/xamarin-communitytoolkit/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/xamarin-communitytoolkit/HEAD/.gitignore -------------------------------------------------------------------------------- /.openpublishing.publish.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/xamarin-communitytoolkit/HEAD/.openpublishing.publish.config.json -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/xamarin-communitytoolkit/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/xamarin-communitytoolkit/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE-CODE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/xamarin-communitytoolkit/HEAD/LICENSE-CODE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/xamarin-communitytoolkit/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/xamarin-communitytoolkit/HEAD/SECURITY.md -------------------------------------------------------------------------------- /ThirdPartyNotices.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/xamarin-communitytoolkit/HEAD/ThirdPartyNotices.md -------------------------------------------------------------------------------- /contributing-guidelines/images/alerts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/xamarin-communitytoolkit/HEAD/contributing-guidelines/images/alerts.png -------------------------------------------------------------------------------- /contributing-guidelines/images/responsivedesign.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/xamarin-communitytoolkit/HEAD/contributing-guidelines/images/responsivedesign.gif -------------------------------------------------------------------------------- /contributing-guidelines/template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/xamarin-communitytoolkit/HEAD/contributing-guidelines/template.md -------------------------------------------------------------------------------- /contributing-guidelines/voice-tone.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/xamarin-communitytoolkit/HEAD/contributing-guidelines/voice-tone.md -------------------------------------------------------------------------------- /docs/.template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/xamarin-communitytoolkit/HEAD/docs/.template.md -------------------------------------------------------------------------------- /docs/TOC.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/xamarin-communitytoolkit/HEAD/docs/TOC.yml -------------------------------------------------------------------------------- /docs/behaviors/animationbehavior.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/xamarin-communitytoolkit/HEAD/docs/behaviors/animationbehavior.md -------------------------------------------------------------------------------- /docs/behaviors/animationtypes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/xamarin-communitytoolkit/HEAD/docs/behaviors/animationtypes.md -------------------------------------------------------------------------------- /docs/behaviors/charactersvalidationbehavior.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/xamarin-communitytoolkit/HEAD/docs/behaviors/charactersvalidationbehavior.md -------------------------------------------------------------------------------- /docs/behaviors/emailvalidationbehavior.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/xamarin-communitytoolkit/HEAD/docs/behaviors/emailvalidationbehavior.md -------------------------------------------------------------------------------- /docs/behaviors/eventtocommandbehavior.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/xamarin-communitytoolkit/HEAD/docs/behaviors/eventtocommandbehavior.md -------------------------------------------------------------------------------- /docs/behaviors/impliedordergridbehavior-images/ImpliedOrderGridBehavior.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/xamarin-communitytoolkit/HEAD/docs/behaviors/impliedordergridbehavior-images/ImpliedOrderGridBehavior.png -------------------------------------------------------------------------------- /docs/behaviors/impliedordergridbehavior.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/xamarin-communitytoolkit/HEAD/docs/behaviors/impliedordergridbehavior.md -------------------------------------------------------------------------------- /docs/behaviors/maskedbehavior.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/xamarin-communitytoolkit/HEAD/docs/behaviors/maskedbehavior.md -------------------------------------------------------------------------------- /docs/behaviors/maxlengthreachedbehavior.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/xamarin-communitytoolkit/HEAD/docs/behaviors/maxlengthreachedbehavior.md -------------------------------------------------------------------------------- /docs/behaviors/multivalidationbehavior.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/xamarin-communitytoolkit/HEAD/docs/behaviors/multivalidationbehavior.md -------------------------------------------------------------------------------- /docs/behaviors/numericvalidationbehavior.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/xamarin-communitytoolkit/HEAD/docs/behaviors/numericvalidationbehavior.md -------------------------------------------------------------------------------- /docs/behaviors/requiredstringvalidationbehavior.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/xamarin-communitytoolkit/HEAD/docs/behaviors/requiredstringvalidationbehavior.md -------------------------------------------------------------------------------- /docs/behaviors/setfocusonentrycompletedbehavior.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/xamarin-communitytoolkit/HEAD/docs/behaviors/setfocusonentrycompletedbehavior.md -------------------------------------------------------------------------------- /docs/behaviors/textvalidationbehavior.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/xamarin-communitytoolkit/HEAD/docs/behaviors/textvalidationbehavior.md -------------------------------------------------------------------------------- /docs/behaviors/urivalidationbehavior.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/xamarin-communitytoolkit/HEAD/docs/behaviors/urivalidationbehavior.md -------------------------------------------------------------------------------- /docs/behaviors/userstoppedtypingbehavior.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/xamarin-communitytoolkit/HEAD/docs/behaviors/userstoppedtypingbehavior.md -------------------------------------------------------------------------------- /docs/behaviors/validationbehavior.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/xamarin-communitytoolkit/HEAD/docs/behaviors/validationbehavior.md -------------------------------------------------------------------------------- /docs/breadcrumb/toc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/xamarin-communitytoolkit/HEAD/docs/breadcrumb/toc.yml -------------------------------------------------------------------------------- /docs/converters/booltoobjectconverter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/xamarin-communitytoolkit/HEAD/docs/converters/booltoobjectconverter.md -------------------------------------------------------------------------------- /docs/converters/bytearraytoimagesourceconverter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/xamarin-communitytoolkit/HEAD/docs/converters/bytearraytoimagesourceconverter.md -------------------------------------------------------------------------------- /docs/converters/compareconverter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/xamarin-communitytoolkit/HEAD/docs/converters/compareconverter.md -------------------------------------------------------------------------------- /docs/converters/datetimeoffsetconverter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/xamarin-communitytoolkit/HEAD/docs/converters/datetimeoffsetconverter.md -------------------------------------------------------------------------------- /docs/converters/doubletointconverter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/xamarin-communitytoolkit/HEAD/docs/converters/doubletointconverter.md -------------------------------------------------------------------------------- /docs/converters/enumtoboolconverter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/xamarin-communitytoolkit/HEAD/docs/converters/enumtoboolconverter.md -------------------------------------------------------------------------------- /docs/converters/enumtointconverter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/xamarin-communitytoolkit/HEAD/docs/converters/enumtointconverter.md -------------------------------------------------------------------------------- /docs/converters/equalconverter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/xamarin-communitytoolkit/HEAD/docs/converters/equalconverter.md -------------------------------------------------------------------------------- /docs/converters/indextoarrayitemconverter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/xamarin-communitytoolkit/HEAD/docs/converters/indextoarrayitemconverter.md -------------------------------------------------------------------------------- /docs/converters/inttoboolconverter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/xamarin-communitytoolkit/HEAD/docs/converters/inttoboolconverter.md -------------------------------------------------------------------------------- /docs/converters/invertedboolconverter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/xamarin-communitytoolkit/HEAD/docs/converters/invertedboolconverter.md -------------------------------------------------------------------------------- /docs/converters/isinrangeconverter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/xamarin-communitytoolkit/HEAD/docs/converters/isinrangeconverter.md -------------------------------------------------------------------------------- /docs/converters/isnotnulloremptyconverter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/xamarin-communitytoolkit/HEAD/docs/converters/isnotnulloremptyconverter.md -------------------------------------------------------------------------------- /docs/converters/isnulloremptyconverter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/xamarin-communitytoolkit/HEAD/docs/converters/isnulloremptyconverter.md -------------------------------------------------------------------------------- /docs/converters/itemselectedeventargsconverter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/xamarin-communitytoolkit/HEAD/docs/converters/itemselectedeventargsconverter.md -------------------------------------------------------------------------------- /docs/converters/itemtappedeventargsconverter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/xamarin-communitytoolkit/HEAD/docs/converters/itemtappedeventargsconverter.md -------------------------------------------------------------------------------- /docs/converters/listisnotnulloremptyconverter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/xamarin-communitytoolkit/HEAD/docs/converters/listisnotnulloremptyconverter.md -------------------------------------------------------------------------------- /docs/converters/listisnulloremptyconverter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/xamarin-communitytoolkit/HEAD/docs/converters/listisnulloremptyconverter.md -------------------------------------------------------------------------------- /docs/converters/listtostringconverter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/xamarin-communitytoolkit/HEAD/docs/converters/listtostringconverter.md -------------------------------------------------------------------------------- /docs/converters/mathexpressionconverter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/xamarin-communitytoolkit/HEAD/docs/converters/mathexpressionconverter.md -------------------------------------------------------------------------------- /docs/converters/multiconverter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/xamarin-communitytoolkit/HEAD/docs/converters/multiconverter.md -------------------------------------------------------------------------------- /docs/converters/notequalconverter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/xamarin-communitytoolkit/HEAD/docs/converters/notequalconverter.md -------------------------------------------------------------------------------- /docs/converters/stringtolistconverter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/xamarin-communitytoolkit/HEAD/docs/converters/stringtolistconverter.md -------------------------------------------------------------------------------- /docs/converters/textcaseconverter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/xamarin-communitytoolkit/HEAD/docs/converters/textcaseconverter.md -------------------------------------------------------------------------------- /docs/converters/variablemultivalueconverter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/xamarin-communitytoolkit/HEAD/docs/converters/variablemultivalueconverter.md -------------------------------------------------------------------------------- /docs/docfx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/xamarin-communitytoolkit/HEAD/docs/docfx.json -------------------------------------------------------------------------------- /docs/effects/lifecycleeffect.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/xamarin-communitytoolkit/HEAD/docs/effects/lifecycleeffect.md -------------------------------------------------------------------------------- /docs/effects/safeareaeffect.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/xamarin-communitytoolkit/HEAD/docs/effects/safeareaeffect.md -------------------------------------------------------------------------------- /docs/extensions/imageresourceextension.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/xamarin-communitytoolkit/HEAD/docs/extensions/imageresourceextension.md -------------------------------------------------------------------------------- /docs/extensions/translateextension.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/xamarin-communitytoolkit/HEAD/docs/extensions/translateextension.md -------------------------------------------------------------------------------- /docs/get-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/xamarin-communitytoolkit/HEAD/docs/get-started.md -------------------------------------------------------------------------------- /docs/helpers/delegateweakeventmanager.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/xamarin-communitytoolkit/HEAD/docs/helpers/delegateweakeventmanager.md -------------------------------------------------------------------------------- /docs/helpers/localizationresourcemanager.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/xamarin-communitytoolkit/HEAD/docs/helpers/localizationresourcemanager.md -------------------------------------------------------------------------------- /docs/helpers/localizedstring.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/xamarin-communitytoolkit/HEAD/docs/helpers/localizedstring.md -------------------------------------------------------------------------------- /docs/helpers/weakeventmanagerextensions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/xamarin-communitytoolkit/HEAD/docs/helpers/weakeventmanagerextensions.md -------------------------------------------------------------------------------- /docs/helpers/weakeventmanagert.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/xamarin-communitytoolkit/HEAD/docs/helpers/weakeventmanagert.md -------------------------------------------------------------------------------- /docs/images/download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/xamarin-communitytoolkit/HEAD/docs/images/download.png -------------------------------------------------------------------------------- /docs/images/managenuget.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/xamarin-communitytoolkit/HEAD/docs/images/managenuget.png -------------------------------------------------------------------------------- /docs/images/pre-release.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/xamarin-communitytoolkit/HEAD/docs/images/pre-release.png -------------------------------------------------------------------------------- /docs/images/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/xamarin-communitytoolkit/HEAD/docs/images/preview.png -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/xamarin-communitytoolkit/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/markup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/xamarin-communitytoolkit/HEAD/docs/markup.md -------------------------------------------------------------------------------- /docs/objectmodel/asynccommand.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/xamarin-communitytoolkit/HEAD/docs/objectmodel/asynccommand.md -------------------------------------------------------------------------------- /docs/objectmodel/asyncvaluecommand.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/xamarin-communitytoolkit/HEAD/docs/objectmodel/asyncvaluecommand.md -------------------------------------------------------------------------------- /docs/objectmodel/commandfactory.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/xamarin-communitytoolkit/HEAD/docs/objectmodel/commandfactory.md -------------------------------------------------------------------------------- /docs/troubleshooting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/xamarin-communitytoolkit/HEAD/docs/troubleshooting.md -------------------------------------------------------------------------------- /docs/views/avatarview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/xamarin-communitytoolkit/HEAD/docs/views/avatarview.md -------------------------------------------------------------------------------- /docs/views/badgeview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/xamarin-communitytoolkit/HEAD/docs/views/badgeview.md -------------------------------------------------------------------------------- /docs/views/cameraview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/xamarin-communitytoolkit/HEAD/docs/views/cameraview.md -------------------------------------------------------------------------------- /docs/views/docklayout.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/xamarin-communitytoolkit/HEAD/docs/views/docklayout.md -------------------------------------------------------------------------------- /docs/views/expander-images/embedded-expander1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/xamarin-communitytoolkit/HEAD/docs/views/expander-images/embedded-expander1.png -------------------------------------------------------------------------------- /docs/views/expander-images/embedded-expander2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/xamarin-communitytoolkit/HEAD/docs/views/expander-images/embedded-expander2.png -------------------------------------------------------------------------------- /docs/views/expander-images/expander.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/xamarin-communitytoolkit/HEAD/docs/views/expander-images/expander.png -------------------------------------------------------------------------------- /docs/views/expander-images/icon-collapse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/xamarin-communitytoolkit/HEAD/docs/views/expander-images/icon-collapse.png -------------------------------------------------------------------------------- /docs/views/expander-images/icon-expand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/xamarin-communitytoolkit/HEAD/docs/views/expander-images/icon-expand.png -------------------------------------------------------------------------------- /docs/views/expander.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/xamarin-communitytoolkit/HEAD/docs/views/expander.md -------------------------------------------------------------------------------- /docs/views/lazyview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/xamarin-communitytoolkit/HEAD/docs/views/lazyview.md -------------------------------------------------------------------------------- /docs/views/mediaelement-images/custom-position-bar-large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/xamarin-communitytoolkit/HEAD/docs/views/mediaelement-images/custom-position-bar-large.png -------------------------------------------------------------------------------- /docs/views/mediaelement-images/custom-position-bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/xamarin-communitytoolkit/HEAD/docs/views/mediaelement-images/custom-position-bar.png -------------------------------------------------------------------------------- /docs/views/mediaelement-images/custom-transport-paused-large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/xamarin-communitytoolkit/HEAD/docs/views/mediaelement-images/custom-transport-paused-large.png -------------------------------------------------------------------------------- /docs/views/mediaelement-images/custom-transport-paused.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/xamarin-communitytoolkit/HEAD/docs/views/mediaelement-images/custom-transport-paused.png -------------------------------------------------------------------------------- /docs/views/mediaelement-images/custom-transport-playback-large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/xamarin-communitytoolkit/HEAD/docs/views/mediaelement-images/custom-transport-playback-large.png -------------------------------------------------------------------------------- /docs/views/mediaelement-images/custom-transport-playback.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/xamarin-communitytoolkit/HEAD/docs/views/mediaelement-images/custom-transport-playback.png -------------------------------------------------------------------------------- /docs/views/mediaelement-images/playback-controls-large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/xamarin-communitytoolkit/HEAD/docs/views/mediaelement-images/playback-controls-large.png -------------------------------------------------------------------------------- /docs/views/mediaelement-images/playback-controls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/xamarin-communitytoolkit/HEAD/docs/views/mediaelement-images/playback-controls.png -------------------------------------------------------------------------------- /docs/views/mediaelement.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/xamarin-communitytoolkit/HEAD/docs/views/mediaelement.md -------------------------------------------------------------------------------- /docs/views/popup-images/custom-positioning-popup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/xamarin-communitytoolkit/HEAD/docs/views/popup-images/custom-positioning-popup.png -------------------------------------------------------------------------------- /docs/views/popup-images/simple-popup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/xamarin-communitytoolkit/HEAD/docs/views/popup-images/simple-popup.png -------------------------------------------------------------------------------- /docs/views/popup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/xamarin-communitytoolkit/HEAD/docs/views/popup.md -------------------------------------------------------------------------------- /docs/views/rangeslider.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/xamarin-communitytoolkit/HEAD/docs/views/rangeslider.md -------------------------------------------------------------------------------- /docs/views/shield-images/example-shields.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/xamarin-communitytoolkit/HEAD/docs/views/shield-images/example-shields.png -------------------------------------------------------------------------------- /docs/views/shield.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/xamarin-communitytoolkit/HEAD/docs/views/shield.md -------------------------------------------------------------------------------- /docs/views/statelayout.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/xamarin-communitytoolkit/HEAD/docs/views/statelayout.md -------------------------------------------------------------------------------- /docs/views/tabview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/xamarin-communitytoolkit/HEAD/docs/views/tabview.md -------------------------------------------------------------------------------- /docs/views/uniformgrid-images/uniformgrid-example-large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/xamarin-communitytoolkit/HEAD/docs/views/uniformgrid-images/uniformgrid-example-large.png -------------------------------------------------------------------------------- /docs/views/uniformgrid-images/uniformgrid-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/xamarin-communitytoolkit/HEAD/docs/views/uniformgrid-images/uniformgrid-example.png -------------------------------------------------------------------------------- /docs/views/uniformgrid.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/xamarin-communitytoolkit/HEAD/docs/views/uniformgrid.md --------------------------------------------------------------------------------