├── .gitignore ├── License.md ├── README.md └── XamarinSDK ├── SDKBrowser.sln ├── SDKBrowser ├── SDKBrowser.Android │ ├── Assets │ │ ├── AboutAssets.txt │ │ └── Fonts │ │ │ ├── Roboto-Black.ttf │ │ │ ├── Roboto-BlackItalic.ttf │ │ │ ├── Roboto-Bold.ttf │ │ │ ├── Roboto-BoldItalic.ttf │ │ │ ├── Roboto-Italic.ttf │ │ │ ├── Roboto-Light.ttf │ │ │ ├── Roboto-LightItalic.ttf │ │ │ ├── Roboto-Medium.ttf │ │ │ ├── Roboto-MediumItalic.ttf │ │ │ ├── Roboto-Regular.ttf │ │ │ ├── Roboto-Thin.ttf │ │ │ ├── Roboto-ThinItalic.ttf │ │ │ └── telerikfontexamples.ttf │ ├── Examples │ │ ├── ButtonControl │ │ │ └── HowToCategory │ │ │ │ └── ButtonDisabledTextColorExample │ │ │ │ └── CustomButtonRenderer.cs │ │ ├── CalendarControl │ │ │ └── StylingCategory │ │ │ │ └── CustomRendererExample │ │ │ │ ├── CustomCalendarRenderer.cs │ │ │ │ └── CustomizationRule.cs │ │ ├── ChartControl │ │ │ └── CustomizationCategory │ │ │ │ ├── GradientBarRenderer.cs │ │ │ │ ├── GradientBarsEffect.cs │ │ │ │ ├── PointMarkRenderer.cs │ │ │ │ └── PointMarksEffect.cs │ │ └── DataFormControl │ │ │ ├── EditorsCategory │ │ │ └── CustomEditorExample │ │ │ │ ├── CustomDataFormEditorRenderer.cs │ │ │ │ ├── PopupEditor.cs │ │ │ │ ├── PopupEditorFragment.cs │ │ │ │ └── PopupItem.cs │ │ │ ├── HowToCategory │ │ │ ├── AutoCompleteEditorExample │ │ │ │ └── AutoCompleteEditorRenderer.cs │ │ │ └── RadAutoCompleteEditorTokensExample │ │ │ │ └── RadAutoCompleteEditorRenderer.cs │ │ │ └── StylingCategory │ │ │ └── CustomDecimalEditorFormatterExample │ │ │ └── CustomRadDataFormRenderer.cs │ ├── JavaToCSharpListConverter.cs │ ├── MainActivity.cs │ ├── PermissionHelper.cs │ ├── Properties │ │ ├── AndroidManifest.xml │ │ └── AssemblyInfo.cs │ ├── Resources │ │ ├── AboutResources.txt │ │ ├── Drawable │ │ │ ├── ChatBackground.jpg │ │ │ ├── Checkbox.png │ │ │ ├── Icon-old.png │ │ │ ├── TreeView_Flag_Argentina.png │ │ │ ├── TreeView_Flag_China.png │ │ │ ├── TreeView_Flag_Germany.png │ │ │ ├── TreeView_Flag_India.png │ │ │ ├── TreeView_Flag_Italy.png │ │ │ ├── TreeView_Flag_USA.png │ │ │ ├── available.png │ │ │ ├── available32.png │ │ │ ├── away.png │ │ │ ├── away32.png │ │ │ ├── busy.png │ │ │ ├── busy32.png │ │ │ ├── button_backgroundImage.png │ │ │ ├── cat4.jpeg │ │ │ ├── custom_toolbar.png │ │ │ ├── image.png │ │ │ ├── sampleAvatar.png │ │ │ └── sampleBot.png │ │ ├── drawable-hdpi │ │ │ ├── Accordion.png │ │ │ ├── AutoComplete.png │ │ │ ├── AutoCompleteView.png │ │ │ ├── Badge.png │ │ │ ├── Barcode.png │ │ │ ├── Border.png │ │ │ ├── Bullet.png │ │ │ ├── BusyIndicator.png │ │ │ ├── Button.png │ │ │ ├── Calendar.png │ │ │ ├── Chart.png │ │ │ ├── ChatUI.png │ │ │ ├── Checkbox.png │ │ │ ├── ComboBox.png │ │ │ ├── DataForm.png │ │ │ ├── DataGrid.png │ │ │ ├── DatePicker.png │ │ │ ├── DateTimePicker.png │ │ │ ├── DockLayout.png │ │ │ ├── Entry.png │ │ │ ├── Expander.png │ │ │ ├── Gauge.png │ │ │ ├── HamburgerMenu.png │ │ │ ├── ImageEditor.png │ │ │ ├── ListPicker.png │ │ │ ├── ListView.png │ │ │ ├── Logo.png │ │ │ ├── Map.png │ │ │ ├── MaskedInput.png │ │ │ ├── NumericInput.png │ │ │ ├── Path.png │ │ │ ├── PdfViewer.png │ │ │ ├── Popup.png │ │ │ ├── ProgressBar.png │ │ │ ├── Rating.png │ │ │ ├── RichTextEditor.png │ │ │ ├── Segmented.png │ │ │ ├── Shadow.png │ │ │ ├── SideDrawer.png │ │ │ ├── SignaturePad.png │ │ │ ├── SlideView.png │ │ │ ├── Splash.png │ │ │ ├── Spreadsheet.png │ │ │ ├── TabView.png │ │ │ ├── TemplatedPicker.png │ │ │ ├── TimePicker.png │ │ │ ├── TimeSpanPicker.png │ │ │ ├── TreeView.png │ │ │ ├── XamarinIcon.png │ │ │ ├── Zip.png │ │ │ └── icon.png │ │ ├── drawable-mdpi │ │ │ ├── Accordion.png │ │ │ ├── AutoComplete.png │ │ │ ├── AutoCompleteView.png │ │ │ ├── Barcode.png │ │ │ ├── Border.png │ │ │ ├── Bullet.png │ │ │ ├── BusyIndicator.png │ │ │ ├── Button.png │ │ │ ├── Calendar.png │ │ │ ├── Chart.png │ │ │ ├── DataForm.png │ │ │ ├── DataGrid.png │ │ │ ├── DockLayout.png │ │ │ ├── Entry.png │ │ │ ├── Expander.png │ │ │ ├── Gauge.png │ │ │ ├── HamburgerMenu.png │ │ │ ├── Icon.png │ │ │ ├── ImageEditor.png │ │ │ ├── ListView.png │ │ │ ├── Logo.png │ │ │ ├── Map.png │ │ │ ├── MaskedInput.png │ │ │ ├── NumericInput.png │ │ │ ├── Path.png │ │ │ ├── PdfViewer.png │ │ │ ├── Popup.png │ │ │ ├── Rating.png │ │ │ ├── Segmented.png │ │ │ ├── SideDrawer.png │ │ │ ├── SlideView.png │ │ │ ├── Splash.png │ │ │ ├── Spreadsheet.png │ │ │ ├── TabView.png │ │ │ ├── TemplatedPicker.png │ │ │ ├── XamarinIcon.png │ │ │ └── Zip.png │ │ ├── drawable-xhdpi │ │ │ ├── Accordion.png │ │ │ ├── AutoComplete.png │ │ │ ├── AutoCompleteView.png │ │ │ ├── Badge.png │ │ │ ├── Barcode.png │ │ │ ├── Border.png │ │ │ ├── Bullet.png │ │ │ ├── BusyIndicator.png │ │ │ ├── Button.png │ │ │ ├── Calendar.png │ │ │ ├── Chart.png │ │ │ ├── ChatUI.png │ │ │ ├── Checkbox.png │ │ │ ├── ComboBox.png │ │ │ ├── DataForm.png │ │ │ ├── DataGrid.png │ │ │ ├── DatePicker.png │ │ │ ├── DateTimePicker.png │ │ │ ├── DockLayout.png │ │ │ ├── Entry.png │ │ │ ├── Expander.png │ │ │ ├── Gauge.png │ │ │ ├── HamburgerMenu.png │ │ │ ├── ImageEditor.png │ │ │ ├── ListPicker.png │ │ │ ├── ListView.png │ │ │ ├── Logo.png │ │ │ ├── Map.png │ │ │ ├── MaskedInput.png │ │ │ ├── NumericInput.png │ │ │ ├── Path.png │ │ │ ├── PdfViewer.png │ │ │ ├── Popup.png │ │ │ ├── ProgressBar.png │ │ │ ├── Rating.png │ │ │ ├── RichTextEditor.png │ │ │ ├── Segmented.png │ │ │ ├── Shadow.png │ │ │ ├── SideDrawer.png │ │ │ ├── SignaturePad.png │ │ │ ├── SlideView.png │ │ │ ├── Splash.png │ │ │ ├── Spreadsheet.png │ │ │ ├── TabView.png │ │ │ ├── TemplatedPicker.png │ │ │ ├── TimePicker.png │ │ │ ├── TimeSpanPicker.png │ │ │ ├── TreeView.png │ │ │ ├── Zip.png │ │ │ └── icon.png │ │ ├── drawable-xxhdpi │ │ │ ├── Accordion.png │ │ │ ├── AutoComplete.png │ │ │ ├── AutoCompleteView.png │ │ │ ├── Badge.png │ │ │ ├── Barcode.png │ │ │ ├── Border.png │ │ │ ├── Bullet.png │ │ │ ├── BusyIndicator.png │ │ │ ├── Button.png │ │ │ ├── Calendar.png │ │ │ ├── Chart.png │ │ │ ├── ChatUI.png │ │ │ ├── Checkbox.png │ │ │ ├── ComboBox.png │ │ │ ├── DataForm.png │ │ │ ├── DataGrid.png │ │ │ ├── DatePicker.png │ │ │ ├── DateTimePicker.png │ │ │ ├── DockLayout.png │ │ │ ├── Entry.png │ │ │ ├── Expander.png │ │ │ ├── Gauge.png │ │ │ ├── HamburgerMenu.png │ │ │ ├── ImageEditor.png │ │ │ ├── ListPicker.png │ │ │ ├── ListView.png │ │ │ ├── Logo.png │ │ │ ├── Map.png │ │ │ ├── MaskedInput.png │ │ │ ├── NumericInput.png │ │ │ ├── Path.png │ │ │ ├── PdfViewer.png │ │ │ ├── Popup.png │ │ │ ├── ProgressBar.png │ │ │ ├── Rating.png │ │ │ ├── RichTextEditor.png │ │ │ ├── Segmented.png │ │ │ ├── Shadow.png │ │ │ ├── SideDrawer.png │ │ │ ├── SignaturePad.png │ │ │ ├── SlideView.png │ │ │ ├── Splash.png │ │ │ ├── Spreadsheet.png │ │ │ ├── TabView.png │ │ │ ├── TemplatedPicker.png │ │ │ ├── TimePicker.png │ │ │ ├── TimeSpanPicker.png │ │ │ ├── TreeView.png │ │ │ ├── Zip.png │ │ │ └── icon.png │ │ ├── layout │ │ │ ├── data_form_autocomplete_item.axml │ │ │ ├── dataform_popup_editor.axml │ │ │ ├── dataform_popup_editor_fragment.axml │ │ │ └── dataform_popup_editor_list_item.axml │ │ ├── mipmap-anydpi-v26 │ │ │ ├── icon.xml │ │ │ └── icon_round.xml │ │ ├── mipmap-hdpi │ │ │ ├── Icon.png │ │ │ └── launcher_foreground.png │ │ ├── mipmap-mdpi │ │ │ ├── Icon.png │ │ │ └── launcher_foreground.png │ │ ├── mipmap-xhdpi │ │ │ ├── Icon.png │ │ │ └── launcher_foreground.png │ │ ├── mipmap-xxhdpi │ │ │ ├── Icon.png │ │ │ └── launcher_foreground.png │ │ ├── mipmap-xxxhdpi │ │ │ ├── Icon.png │ │ │ └── launcher_foreground.png │ │ ├── values │ │ │ └── colors.xml │ │ └── xml │ │ │ └── file_paths.xml │ ├── SDKBrowser.Android.csproj │ ├── XlsxFileViewer.cs │ └── app.config ├── SDKBrowser.UWP │ ├── App.xaml │ ├── App.xaml.cs │ ├── Assets │ │ ├── Accordion.scale-100.png │ │ ├── Accordion.scale-125.png │ │ ├── Accordion.scale-150.png │ │ ├── Accordion.scale-200.png │ │ ├── Accordion.scale-400.png │ │ ├── AutoComplete.scale-100.png │ │ ├── AutoComplete.scale-125.png │ │ ├── AutoComplete.scale-150.png │ │ ├── AutoComplete.scale-200.png │ │ ├── AutoComplete.scale-300.png │ │ ├── AutoComplete.scale-400.png │ │ ├── AutoCompleteView.scale-100.png │ │ ├── AutoCompleteView.scale-125.png │ │ ├── AutoCompleteView.scale-150.png │ │ ├── AutoCompleteView.scale-200.png │ │ ├── AutoCompleteView.scale-400.png │ │ ├── Badge.scale-100.png │ │ ├── Badge.scale-125.png │ │ ├── Badge.scale-150.png │ │ ├── Badge.scale-200.png │ │ ├── Badge.scale-400.png │ │ ├── Barcode.scale-100.png │ │ ├── Barcode.scale-150.png │ │ ├── Barcode.scale-200.png │ │ ├── Barcode.scale-300.png │ │ ├── Border.scale-100.png │ │ ├── Border.scale-125.png │ │ ├── Border.scale-150.png │ │ ├── Border.scale-200.png │ │ ├── Border.scale-400.png │ │ ├── Bullet.scale-100.png │ │ ├── Bullet.scale-125.png │ │ ├── Bullet.scale-150.png │ │ ├── Bullet.scale-200.png │ │ ├── Bullet.scale-300.png │ │ ├── Bullet.scale-400.png │ │ ├── BusyIndicator.scale-100.png │ │ ├── BusyIndicator.scale-125.png │ │ ├── BusyIndicator.scale-150.png │ │ ├── BusyIndicator.scale-200.png │ │ ├── BusyIndicator.scale-300.png │ │ ├── BusyIndicator.scale-400.png │ │ ├── Button.scale-100.png │ │ ├── Button.scale-125.png │ │ ├── Button.scale-150.png │ │ ├── Button.scale-200.png │ │ ├── Button.scale-300.png │ │ ├── Button.scale-400.png │ │ ├── Calendar.scale-100.png │ │ ├── Calendar.scale-125.png │ │ ├── Calendar.scale-150.png │ │ ├── Calendar.scale-200.png │ │ ├── Calendar.scale-300.png │ │ ├── Calendar.scale-400.png │ │ ├── Chart.scale-100.png │ │ ├── Chart.scale-125.png │ │ ├── Chart.scale-150.png │ │ ├── Chart.scale-200.png │ │ ├── Chart.scale-300.png │ │ ├── Chart.scale-400.png │ │ ├── ChatBackground.jpg │ │ ├── ChatUI.scale-100.png │ │ ├── ChatUI.scale-125.png │ │ ├── ChatUI.scale-150.png │ │ ├── ChatUI.scale-200.png │ │ ├── ChatUI.scale-400.png │ │ ├── Checkbox.scale-100.png │ │ ├── Checkbox.scale-125.png │ │ ├── Checkbox.scale-150.png │ │ ├── Checkbox.scale-200.png │ │ ├── Checkbox.scale-400.png │ │ ├── ComboBox.scale-100.png │ │ ├── ComboBox.scale-125.png │ │ ├── ComboBox.scale-150.png │ │ ├── ComboBox.scale-200.png │ │ ├── ComboBox.scale-400.png │ │ ├── DataForm.scale-100.png │ │ ├── DataForm.scale-125.png │ │ ├── DataForm.scale-150.png │ │ ├── DataForm.scale-200.png │ │ ├── DataForm.scale-300.png │ │ ├── DataForm.scale-400.png │ │ ├── DataGrid.scale-100.png │ │ ├── DataGrid.scale-125.png │ │ ├── DataGrid.scale-150.png │ │ ├── DataGrid.scale-200.png │ │ ├── DataGrid.scale-300.png │ │ ├── DataGrid.scale-400.png │ │ ├── DatePicker.scale-100.png │ │ ├── DatePicker.scale-125.png │ │ ├── DatePicker.scale-150.png │ │ ├── DatePicker.scale-200.png │ │ ├── DatePicker.scale-400.png │ │ ├── DateTimePicker.scale-100.png │ │ ├── DateTimePicker.scale-125.png │ │ ├── DateTimePicker.scale-150.png │ │ ├── DateTimePicker.scale-200.png │ │ ├── DateTimePicker.scale-400.png │ │ ├── DockLayout.scale-100.png │ │ ├── DockLayout.scale-125.png │ │ ├── DockLayout.scale-150.png │ │ ├── DockLayout.scale-200.png │ │ ├── DockLayout.scale-400.png │ │ ├── Entry.scale-100.png │ │ ├── Entry.scale-125.png │ │ ├── Entry.scale-150.png │ │ ├── Entry.scale-200.png │ │ ├── Entry.scale-300.png │ │ ├── Entry.scale-400.png │ │ ├── Expander.scale-100.png │ │ ├── Expander.scale-125.png │ │ ├── Expander.scale-150.png │ │ ├── Expander.scale-200.png │ │ ├── Expander.scale-400.png │ │ ├── Fonts │ │ │ ├── segoeui.ttf │ │ │ ├── segoeuib.ttf │ │ │ ├── segoeuii.ttf │ │ │ ├── segoeuil.ttf │ │ │ ├── segoeuisl.ttf │ │ │ ├── segoeuiz.ttf │ │ │ ├── seguibl.ttf │ │ │ ├── seguibli.ttf │ │ │ ├── seguili.ttf │ │ │ ├── seguisb.ttf │ │ │ ├── seguisbi.ttf │ │ │ ├── seguisli.ttf │ │ │ └── telerikfontexamples.ttf │ │ ├── Gauge.scale-100.png │ │ ├── Gauge.scale-125.png │ │ ├── Gauge.scale-150.png │ │ ├── Gauge.scale-200.png │ │ ├── Gauge.scale-300.png │ │ ├── Gauge.scale-400.png │ │ ├── HamburgerMenu.scale-100.png │ │ ├── HamburgerMenu.scale-125.png │ │ ├── HamburgerMenu.scale-150.png │ │ ├── HamburgerMenu.scale-200.png │ │ ├── HamburgerMenu.scale-300.png │ │ ├── HamburgerMenu.scale-400.png │ │ ├── ImageEditor.scale-100.png │ │ ├── ImageEditor.scale-125.png │ │ ├── ImageEditor.scale-150.png │ │ ├── ImageEditor.scale-200.png │ │ ├── ImageEditor.scale-400.png │ │ ├── ListPicker.scale-100.png │ │ ├── ListPicker.scale-125.png │ │ ├── ListPicker.scale-150.png │ │ ├── ListPicker.scale-200.png │ │ ├── ListPicker.scale-400.png │ │ ├── ListView.scale-100.png │ │ ├── ListView.scale-125.png │ │ ├── ListView.scale-150.png │ │ ├── ListView.scale-200.png │ │ ├── ListView.scale-300.png │ │ ├── ListView.scale-400.png │ │ ├── LockScreenLogo.scale-200.png │ │ ├── Logo.scale-100.png │ │ ├── Logo.scale-125.png │ │ ├── Logo.scale-150.png │ │ ├── Logo.scale-200.png │ │ ├── Logo.scale-300.png │ │ ├── Logo.scale-400.png │ │ ├── Map.scale-100.png │ │ ├── Map.scale-125.png │ │ ├── Map.scale-150.png │ │ ├── Map.scale-200.png │ │ ├── Map.scale-400.png │ │ ├── MaskedInput.scale-100.png │ │ ├── MaskedInput.scale-125.png │ │ ├── MaskedInput.scale-150.png │ │ ├── MaskedInput.scale-200.png │ │ ├── MaskedInput.scale-300.png │ │ ├── MaskedInput.scale-400.png │ │ ├── NumericInput.scale-100.png │ │ ├── NumericInput.scale-125.png │ │ ├── NumericInput.scale-150.png │ │ ├── NumericInput.scale-200.png │ │ ├── NumericInput.scale-300.png │ │ ├── NumericInput.scale-400.png │ │ ├── Path.scale-100.png │ │ ├── Path.scale-125.png │ │ ├── Path.scale-150.png │ │ ├── Path.scale-200.png │ │ ├── Path.scale-300.png │ │ ├── Path.scale-400.png │ │ ├── PdfViewer.scale-100.png │ │ ├── PdfViewer.scale-125.png │ │ ├── PdfViewer.scale-150.png │ │ ├── PdfViewer.scale-200.png │ │ ├── PdfViewer.scale-400.png │ │ ├── Popup.scale-100.png │ │ ├── Popup.scale-125.png │ │ ├── Popup.scale-150.png │ │ ├── Popup.scale-200.png │ │ ├── Popup.scale-400.png │ │ ├── ProgressBar.scale-100.png │ │ ├── ProgressBar.scale-125.png │ │ ├── ProgressBar.scale-150.png │ │ ├── ProgressBar.scale-200.png │ │ ├── ProgressBar.scale-400.png │ │ ├── Rating.scale-100.png │ │ ├── Rating.scale-125.png │ │ ├── Rating.scale-150.png │ │ ├── Rating.scale-200.png │ │ ├── Rating.scale-300.png │ │ ├── Rating.scale-400.png │ │ ├── RichTextEditor.scale-100.png │ │ ├── RichTextEditor.scale-125.png │ │ ├── RichTextEditor.scale-150.png │ │ ├── RichTextEditor.scale-200.png │ │ ├── RichTextEditor.scale-400.png │ │ ├── Segmented.scale-100.png │ │ ├── Segmented.scale-125.png │ │ ├── Segmented.scale-150.png │ │ ├── Segmented.scale-200.png │ │ ├── Segmented.scale-300.png │ │ ├── Segmented.scale-400.png │ │ ├── Shadow.scale-125.png │ │ ├── Shadow.scale-150.png │ │ ├── Shadow.scale-200.png │ │ ├── Shadow.scale-400.png │ │ ├── SideDrawer.scale-100.png │ │ ├── SideDrawer.scale-125.png │ │ ├── SideDrawer.scale-150.png │ │ ├── SideDrawer.scale-200.png │ │ ├── SideDrawer.scale-300.png │ │ ├── SideDrawer.scale-400.png │ │ ├── SignaturePad.scale-100.png │ │ ├── SignaturePad.scale-125.png │ │ ├── SignaturePad.scale-150.png │ │ ├── SignaturePad.scale-200.png │ │ ├── SignaturePad.scale-400.png │ │ ├── SlideView.scale-100.png │ │ ├── SlideView.scale-125.png │ │ ├── SlideView.scale-150.png │ │ ├── SlideView.scale-200.png │ │ ├── SlideView.scale-300.png │ │ ├── SlideView.scale-400.png │ │ ├── Splash.scale-100.png │ │ ├── Splash.scale-125.png │ │ ├── Splash.scale-150.png │ │ ├── Splash.scale-200.png │ │ ├── Splash.scale-300.png │ │ ├── Splash.scale-400.png │ │ ├── SplashScreen.scale-100.png │ │ ├── SplashScreen.scale-125.png │ │ ├── SplashScreen.scale-150.png │ │ ├── SplashScreen.scale-200.png │ │ ├── SplashScreen.scale-400.png │ │ ├── Spreadsheet.scale-100.png │ │ ├── Spreadsheet.scale-125.png │ │ ├── Spreadsheet.scale-150.png │ │ ├── Spreadsheet.scale-200.png │ │ ├── Spreadsheet.scale-300.png │ │ ├── Spreadsheet.scale-400.png │ │ ├── Square150x150Logo.scale-100.png │ │ ├── Square150x150Logo.scale-125.png │ │ ├── Square150x150Logo.scale-150.png │ │ ├── Square150x150Logo.scale-200.png │ │ ├── Square150x150Logo.scale-400.png │ │ ├── Square310x310Logo.scale-100.png │ │ ├── Square310x310Logo.scale-125.png │ │ ├── Square310x310Logo.scale-150.png │ │ ├── Square310x310Logo.scale-200.png │ │ ├── Square310x310Logo.scale-400.png │ │ ├── Square44x44Logo.scale-100.png │ │ ├── Square44x44Logo.scale-125.png │ │ ├── Square44x44Logo.scale-150.png │ │ ├── Square44x44Logo.scale-200.png │ │ ├── Square44x44Logo.scale-400.png │ │ ├── Square44x44Logo.targetsize-16.png │ │ ├── Square44x44Logo.targetsize-16_altform-unplated.png │ │ ├── Square44x44Logo.targetsize-24.png │ │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ │ ├── Square44x44Logo.targetsize-256.png │ │ ├── Square44x44Logo.targetsize-256_altform-unplated.png │ │ ├── Square44x44Logo.targetsize-32.png │ │ ├── Square44x44Logo.targetsize-32_altform-unplated.png │ │ ├── Square44x44Logo.targetsize-48.png │ │ ├── Square44x44Logo.targetsize-48_altform-unplated.png │ │ ├── Square71x71Logo.scale-100.png │ │ ├── Square71x71Logo.scale-125.png │ │ ├── Square71x71Logo.scale-150.png │ │ ├── Square71x71Logo.scale-200.png │ │ ├── Square71x71Logo.scale-400.png │ │ ├── StoreLogo.scale-100.png │ │ ├── StoreLogo.scale-125.png │ │ ├── StoreLogo.scale-150.png │ │ ├── StoreLogo.scale-200.png │ │ ├── StoreLogo.scale-400.png │ │ ├── TabView.scale-100.png │ │ ├── TabView.scale-125.png │ │ ├── TabView.scale-150.png │ │ ├── TabView.scale-200.png │ │ ├── TabView.scale-300.png │ │ ├── TabView.scale-400.png │ │ ├── TemplatedPicker.scale-100.png │ │ ├── TemplatedPicker.scale-125.png │ │ ├── TemplatedPicker.scale-150.png │ │ ├── TemplatedPicker.scale-200.png │ │ ├── TemplatedPicker.scale-400.png │ │ ├── TimePicker.scale-100.png │ │ ├── TimePicker.scale-125.png │ │ ├── TimePicker.scale-150.png │ │ ├── TimePicker.scale-200.png │ │ ├── TimePicker.scale-400.png │ │ ├── TimeSpanPicker.scale-100.png │ │ ├── TimeSpanPicker.scale-125.png │ │ ├── TimeSpanPicker.scale-150.png │ │ ├── TimeSpanPicker.scale-200.png │ │ ├── TimeSpanPicker.scale-400.png │ │ ├── TreeView.scale-100.png │ │ ├── TreeView.scale-125.png │ │ ├── TreeView.scale-150.png │ │ ├── TreeView.scale-200.png │ │ ├── TreeView.scale-400.png │ │ ├── TreeView_Flag_Argentina.png │ │ ├── TreeView_Flag_China.png │ │ ├── TreeView_Flag_Germany.png │ │ ├── TreeView_Flag_India.png │ │ ├── TreeView_Flag_Italy.png │ │ ├── TreeView_Flag_USA.png │ │ ├── Wide310x150Logo.scale-100.png │ │ ├── Wide310x150Logo.scale-125.png │ │ ├── Wide310x150Logo.scale-150.png │ │ ├── Wide310x150Logo.scale-200.png │ │ ├── Wide310x150Logo.scale-400.png │ │ ├── Zip.scale-100.png │ │ ├── Zip.scale-125.png │ │ ├── Zip.scale-150.png │ │ ├── Zip.scale-200.png │ │ ├── Zip.scale-300.png │ │ ├── Zip.scale-400.png │ │ ├── cat4.jpeg │ │ ├── custom_toolbar.png │ │ ├── sampleAvatar.png │ │ └── sampleBot.png │ ├── Examples │ │ ├── ButtonControl │ │ │ └── HowToCategory │ │ │ │ └── ButtonDisabledTextColorExample │ │ │ │ └── CustomButtonRenderer.cs │ │ ├── CalendarControl │ │ │ └── StylingCategory │ │ │ │ └── CustomRendererExample │ │ │ │ ├── CalendarCustomRenderersResources.xaml │ │ │ │ └── CustomCalendarRenderer.cs │ │ └── ChartControl │ │ │ └── CustomizationCategory │ │ │ ├── GradientBarsEffect.cs │ │ │ └── PointMarksEffect.cs │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── Package.appxmanifest │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ └── Default.rd.xml │ ├── SDKBrowser.UWP.csproj │ ├── SDKBrowser.UWP_TemporaryKey.pfx │ ├── XamarinIcon.png │ ├── XlsxFileViewer.cs │ ├── available.png │ ├── available32.png │ ├── away.png │ ├── away32.png │ ├── busy.png │ ├── busy32.png │ ├── button_backgroundImage.png │ ├── image.png │ └── packages.config ├── SDKBrowser.iOS │ ├── AppDelegate.cs │ ├── CustomNavigationRenderer.cs │ ├── Examples │ │ ├── ButtonControl │ │ │ └── HowToCategory │ │ │ │ └── ButtonDisabledTextColorExample │ │ │ │ └── CustomButtonRenderer.cs │ │ ├── CalendarControl │ │ │ └── FeaturesCategory │ │ │ │ └── CustomRendererExample │ │ │ │ ├── CustomCalendarDelegate.cs │ │ │ │ └── CustomCalendarRenderer.cs │ │ ├── ChartControl │ │ │ └── CustomizationCategory │ │ │ │ ├── GradientBarsEffect.cs │ │ │ │ └── PointMarksEffect.cs │ │ └── DataFormControl │ │ │ └── HowToCategory │ │ │ ├── EmailPasswordEditorsExample │ │ │ └── EmailPasswordEditorsRenderer.cs │ │ │ └── RadAutoCompleteEditorTokensExample │ │ │ └── RadAutoCompleteEditorRenderer.cs │ ├── Info.plist │ ├── Main.cs │ ├── Media.xcassets │ │ └── AppIcons.appiconset │ │ │ ├── Contents.json │ │ │ ├── iOS_Logo_1024x1024-100.png │ │ │ ├── iOS_Logo_1024x1024-200.png │ │ │ ├── iOS_Logo_1024x1024-300.png │ │ │ ├── iOS_Logo_1024x1024-400.png │ │ │ ├── iOS_Logo_167x167-100.png │ │ │ ├── iOS_Logo_167x167-200.png │ │ │ ├── iOS_Logo_167x167-300.png │ │ │ ├── iOS_Logo_167x167-400.png │ │ │ ├── iOS_Logo_20x20-100.png │ │ │ ├── iOS_Logo_20x20-200.png │ │ │ ├── iOS_Logo_20x20-300.png │ │ │ ├── iOS_Logo_20x20-400.png │ │ │ ├── iOS_Logo_29x29-100.png │ │ │ ├── iOS_Logo_29x29-200.png │ │ │ ├── iOS_Logo_29x29-300.png │ │ │ ├── iOS_Logo_29x29-400.png │ │ │ ├── iOS_Logo_40x40-100.png │ │ │ ├── iOS_Logo_40x40-200.png │ │ │ ├── iOS_Logo_40x40-300.png │ │ │ ├── iOS_Logo_40x40-400.png │ │ │ ├── iOS_Logo_58x58-100.png │ │ │ ├── iOS_Logo_58x58-200.png │ │ │ ├── iOS_Logo_58x58-300.png │ │ │ ├── iOS_Logo_58x58-400.png │ │ │ ├── iOS_Logo_60x60-100.png │ │ │ ├── iOS_Logo_60x60-200.png │ │ │ ├── iOS_Logo_60x60-300.png │ │ │ ├── iOS_Logo_60x60-400.png │ │ │ ├── iOS_Logo_71x71-100.png │ │ │ ├── iOS_Logo_71x71-200.png │ │ │ ├── iOS_Logo_71x71-300.png │ │ │ ├── iOS_Logo_71x71-400.png │ │ │ ├── iOS_Logo_76x76-100.png │ │ │ ├── iOS_Logo_76x76-200.png │ │ │ ├── iOS_Logo_76x76-300.png │ │ │ └── iOS_Logo_76x76-400.png │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Renderers │ │ └── SafeAreaPageRenderer.cs │ ├── Resources │ │ ├── Accordion.png │ │ ├── Accordion@1,5x.png │ │ ├── Accordion@2x.png │ │ ├── Accordion@3x.png │ │ ├── AutoComplete.png │ │ ├── AutoComplete@1,5x.png │ │ ├── AutoComplete@2x.png │ │ ├── AutoComplete@3x.png │ │ ├── AutoCompleteView.png │ │ ├── AutoCompleteView@1,5x.png │ │ ├── AutoCompleteView@2x.png │ │ ├── AutoCompleteView@3x.png │ │ ├── Badge.png │ │ ├── Badge@1,5x.png │ │ ├── Badge@2x.png │ │ ├── Badge@3x.png │ │ ├── Barcode.png │ │ ├── Barcode@1,5x.png │ │ ├── Barcode@2x.png │ │ ├── Barcode@3x.png │ │ ├── Border.png │ │ ├── Border@1,5x.png │ │ ├── Border@2x.png │ │ ├── Border@3x.png │ │ ├── Bullet.png │ │ ├── Bullet@1,5x.png │ │ ├── Bullet@2x.png │ │ ├── Bullet@3x.png │ │ ├── BusyIndicator.png │ │ ├── BusyIndicator@1,5x.png │ │ ├── BusyIndicator@2x.png │ │ ├── BusyIndicator@3x.png │ │ ├── Button.png │ │ ├── Button@1,5x.png │ │ ├── Button@2x.png │ │ ├── Button@3x.png │ │ ├── Calendar.png │ │ ├── Calendar@1,5x.png │ │ ├── Calendar@2x.png │ │ ├── Calendar@3x.png │ │ ├── Chart.png │ │ ├── Chart@1,5x.png │ │ ├── Chart@2x.png │ │ ├── Chart@3x.png │ │ ├── ChatBackground.jpg │ │ ├── ChatUI.png │ │ ├── ChatUI@1,5x.png │ │ ├── ChatUI@2x.png │ │ ├── ChatUI@3x.png │ │ ├── Checkbox.png │ │ ├── Checkbox@1,5x.png │ │ ├── Checkbox@2x.png │ │ ├── Checkbox@3x.png │ │ ├── ComboBox.png │ │ ├── ComboBox@1,5x.png │ │ ├── ComboBox@2x.png │ │ ├── ComboBox@3x.png │ │ ├── DataForm.png │ │ ├── DataForm@1,5x.png │ │ ├── DataForm@2x.png │ │ ├── DataForm@3x.png │ │ ├── DataGrid.png │ │ ├── DataGrid@1,5x.png │ │ ├── DataGrid@2x.png │ │ ├── DataGrid@3x.png │ │ ├── DatePicker.png │ │ ├── DatePicker@1,5x.png │ │ ├── DatePicker@2x.png │ │ ├── DatePicker@3x.png │ │ ├── DateTimePicker.png │ │ ├── DateTimePicker@1,5x.png │ │ ├── DateTimePicker@2x.png │ │ ├── DateTimePicker@3x.png │ │ ├── Default-568h@2x.png │ │ ├── DockLayout.png │ │ ├── DockLayout@1,5x.png │ │ ├── DockLayout@2x.png │ │ ├── DockLayout@3x.png │ │ ├── Entry.png │ │ ├── Entry@1,5x.png │ │ ├── Entry@2x.png │ │ ├── Entry@3x.png │ │ ├── Expander.png │ │ ├── Expander@1,5x.png │ │ ├── Expander@2x.png │ │ ├── Expander@3x.png │ │ ├── Fonts │ │ │ ├── SF-Pro-Text-Medium.otf │ │ │ ├── SF-Pro-Text-MediumItalic.otf │ │ │ ├── SF-Pro-Text-Regular.otf │ │ │ ├── SF-Pro-Text-RegularItalic.otf │ │ │ └── telerikfontexamples.ttf │ │ ├── Gauge.png │ │ ├── Gauge@1,5x.png │ │ ├── Gauge@2x.png │ │ ├── Gauge@3x.png │ │ ├── HamburgerMenu.png │ │ ├── HamburgerMenu@1,5x.png │ │ ├── HamburgerMenu@2x.png │ │ ├── HamburgerMenu@3x.png │ │ ├── ImageEditor.png │ │ ├── ImageEditor@1,5x.png │ │ ├── ImageEditor@2x.png │ │ ├── ImageEditor@3x.png │ │ ├── LaunchScreen.storyboard │ │ ├── ListPicker.png │ │ ├── ListPicker@1,5x.png │ │ ├── ListPicker@2x.png │ │ ├── ListPicker@3x.png │ │ ├── ListView.png │ │ ├── ListView@1,5x.png │ │ ├── ListView@2x.png │ │ ├── ListView@3x.png │ │ ├── Logo.png │ │ ├── Logo@1,5x.png │ │ ├── Logo@2x.png │ │ ├── Logo@3x.png │ │ ├── Map.png │ │ ├── Map@1,5x.png │ │ ├── Map@2x.png │ │ ├── Map@3x.png │ │ ├── MaskedInput.png │ │ ├── MaskedInput@1,5x.png │ │ ├── MaskedInput@2x.png │ │ ├── MaskedInput@3x.png │ │ ├── NumericInput.png │ │ ├── NumericInput@1,5x.png │ │ ├── NumericInput@2x.png │ │ ├── NumericInput@3x.png │ │ ├── Path.png │ │ ├── Path@1,5x.png │ │ ├── Path@2x.png │ │ ├── Path@3x.png │ │ ├── PdfViewer.png │ │ ├── PdfViewer@1,5x.png │ │ ├── PdfViewer@2x.png │ │ ├── PdfViewer@3x.png │ │ ├── Popup.png │ │ ├── Popup@1,5x.png │ │ ├── Popup@2x.png │ │ ├── Popup@3x.png │ │ ├── ProgressBar.png │ │ ├── ProgressBar@1,5x.png │ │ ├── ProgressBar@2x.png │ │ ├── ProgressBar@3x.png │ │ ├── Rating.png │ │ ├── Rating@1,5x.png │ │ ├── Rating@2x.png │ │ ├── Rating@3x.png │ │ ├── RichTextEditor.png │ │ ├── RichTextEditor@1,5x.png │ │ ├── RichTextEditor@2x.png │ │ ├── RichTextEditor@3x.png │ │ ├── Segmented.png │ │ ├── Segmented@1,5x.png │ │ ├── Segmented@2x.png │ │ ├── Segmented@3x.png │ │ ├── Shadow.png │ │ ├── Shadow@1,5x.png │ │ ├── Shadow@2x.png │ │ ├── Shadow@3x.png │ │ ├── SideDrawer.png │ │ ├── SideDrawer@1,5x.png │ │ ├── SideDrawer@2x.png │ │ ├── SideDrawer@3x.png │ │ ├── SignaturePad.png │ │ ├── SignaturePad@1,5x.png │ │ ├── SignaturePad@2x.png │ │ ├── SignaturePad@3x.png │ │ ├── SlideView.png │ │ ├── SlideView@1,5x.png │ │ ├── SlideView@2x.png │ │ ├── SlideView@3x.png │ │ ├── Splash.png │ │ ├── Splash@1,5x.png │ │ ├── Splash@2x.png │ │ ├── Splash@3x.png │ │ ├── Spreadsheet.png │ │ ├── Spreadsheet@1,5x.png │ │ ├── Spreadsheet@2x.png │ │ ├── Spreadsheet@3x.png │ │ ├── TabView.png │ │ ├── TabView@1,5x.png │ │ ├── TabView@2x.png │ │ ├── TabView@3x.png │ │ ├── TelerikChatAuthor.png │ │ ├── TelerikChatAuthor@1,5x.png │ │ ├── TelerikChatAuthor@2x.png │ │ ├── TelerikChatAuthor@3x.png │ │ ├── TelerikSendMessage.png │ │ ├── TelerikSendMessage@1,5x.png │ │ ├── TelerikSendMessage@2x.png │ │ ├── TelerikSendMessage@3x.png │ │ ├── TemplatedPicker.png │ │ ├── TemplatedPicker@1,5x.png │ │ ├── TemplatedPicker@2x.png │ │ ├── TemplatedPicker@3x.png │ │ ├── TimePicker.png │ │ ├── TimePicker@1,5x.png │ │ ├── TimePicker@2x.png │ │ ├── TimePicker@3x.png │ │ ├── TimeSpanPicker.png │ │ ├── TimeSpanPicker@1,5x.png │ │ ├── TimeSpanPicker@2x.png │ │ ├── TimeSpanPicker@3x.png │ │ ├── TreeView.png │ │ ├── TreeView@1,5x.png │ │ ├── TreeView@2x.png │ │ ├── TreeView@3x.png │ │ ├── TreeView_Flag_Argentina.png │ │ ├── TreeView_Flag_China.png │ │ ├── TreeView_Flag_Germany.png │ │ ├── TreeView_Flag_India.png │ │ ├── TreeView_Flag_Italy.png │ │ ├── TreeView_Flag_USA.png │ │ ├── XamarinIcon.png │ │ ├── Zip.png │ │ ├── Zip@1,5x.png │ │ ├── Zip@2x.png │ │ ├── Zip@3x.png │ │ ├── available.png │ │ ├── available32.png │ │ ├── away.png │ │ ├── away32.png │ │ ├── busy.png │ │ ├── busy32.png │ │ ├── button_backgroundImage.png │ │ ├── cat4.jpeg │ │ ├── custom_toolbar.png │ │ ├── image.png │ │ ├── image@2x.png │ │ ├── sampleAvatar.png │ │ └── sampleBot.png │ ├── SDKBrowser.iOS.csproj │ ├── XlsxFileViewer.cs │ ├── app.config │ ├── iTunesArtwork │ └── iTunesArtwork@2x └── SDKBrowser │ ├── App.xaml │ ├── App.xaml.cs │ ├── Behaviors │ └── PickImageBehavior.cs │ ├── Common │ ├── Category.cs │ ├── Configuration.cs │ ├── Constants.cs │ ├── Control.cs │ ├── Example.cs │ ├── PickerItemsSourceAttachedProperty.cs │ ├── Usings.cs │ └── XmlNs.xml │ ├── Converters │ └── ImageSourceConverter.cs │ ├── Data │ ├── CategoricalData.cs │ ├── DataProvider.cs │ ├── NumericalData.cs │ ├── OhlcDataPoint.cs │ ├── SimpleData.cs │ └── TemporalData.cs │ ├── Examples │ ├── AccordionControl │ │ ├── FeaturesCategory │ │ │ ├── AccordionItemExample │ │ │ │ ├── AccordionItem.xaml │ │ │ │ └── AccordionItem.xaml.cs │ │ │ └── KeyFeaturesExample │ │ │ │ ├── KeyFeatures.xaml │ │ │ │ └── KeyFeatures.xaml.cs │ │ └── GettingStartedCategory │ │ │ └── GettingStartedExample │ │ │ ├── AccordionGettingStartedCSharp.cs │ │ │ ├── AccordionGettingStartedXaml.xaml │ │ │ └── AccordionGettingStartedXaml.xaml.cs │ ├── AutoCompleteControl │ │ ├── FeaturesCategory │ │ │ ├── ClearButtonVisibilityExample │ │ │ │ ├── ClearButtonVisibility.xaml │ │ │ │ ├── ClearButtonVisibility.xaml.cs │ │ │ │ └── ViewModel.cs │ │ │ ├── CustomHighlightExample │ │ │ │ ├── CustomHighlight.xaml │ │ │ │ ├── CustomHighlight.xaml.cs │ │ │ │ └── ViewModel.cs │ │ │ ├── CustomNoResultsMessageExample │ │ │ │ ├── CustomNoResultsMessage.xaml │ │ │ │ ├── CustomNoResultsMessage.xaml.cs │ │ │ │ └── ViewModel.cs │ │ │ ├── CustomizeTokensExample │ │ │ │ ├── BusinessObject.cs │ │ │ │ ├── CustomizedTokens.xaml │ │ │ │ ├── CustomizedTokens.xaml.cs │ │ │ │ └── CustomizedTokensViewModel.cs │ │ │ ├── DataBindingExample │ │ │ │ ├── DataBinding.xaml │ │ │ │ ├── DataBinding.xaml.cs │ │ │ │ └── ViewModel.cs │ │ │ ├── KeyFeaturesExample │ │ │ │ ├── KeyFeatures.xaml │ │ │ │ ├── KeyFeatures.xaml.cs │ │ │ │ └── ViewModel.cs │ │ │ └── SuggestionItemTemplateExample │ │ │ │ ├── SuggestionItemTemplate.xaml │ │ │ │ ├── SuggestionItemTemplate.xaml.cs │ │ │ │ └── ViewModel.cs │ │ └── GettingStartedCategory │ │ │ └── GettingStartedExample │ │ │ ├── AutoCompleteGettingStartedCSharp.cs │ │ │ ├── AutoCompleteGettingStartedXaml.xaml │ │ │ └── AutoCompleteGettingStartedXaml.xaml.cs │ ├── AutoCompleteViewControl │ │ ├── FeaturesCategory │ │ │ ├── Client.cs │ │ │ ├── CustomFilteringExample │ │ │ │ ├── CustomAutoCompleteViewFilter.cs │ │ │ │ ├── CustomFiltering.xaml │ │ │ │ ├── CustomFiltering.xaml.cs │ │ │ │ ├── CustomFilteringViewModel.cs │ │ │ │ └── Person.cs │ │ │ ├── DataBindingExample │ │ │ │ ├── DataBinding.xaml │ │ │ │ └── DataBinding.xaml.cs │ │ │ ├── DisplayTextExample │ │ │ │ ├── DisplayText.xaml │ │ │ │ ├── DisplayText.xaml.cs │ │ │ │ └── MyTextFormatter.cs │ │ │ ├── HighlightTextExample │ │ │ │ ├── HighlightText.xaml │ │ │ │ └── HighlightText.xaml.cs │ │ │ ├── KeyFeaturesExample │ │ │ │ ├── KeyFeatures.xaml │ │ │ │ ├── KeyFeatures.xaml.cs │ │ │ │ └── ViewModel.cs │ │ │ ├── NestedPropertyExample │ │ │ │ ├── BusinessObject.cs │ │ │ │ ├── NestedProperty.xaml │ │ │ │ ├── NestedProperty.xaml.cs │ │ │ │ ├── NestedPropertyViewModel.cs │ │ │ │ └── Person.cs │ │ │ ├── RemoteSearchExample │ │ │ │ ├── RemoteSearch.xaml │ │ │ │ └── RemoteSearch.xaml.cs │ │ │ ├── SuggestModeExample │ │ │ │ ├── SuggestMode.xaml │ │ │ │ └── SuggestMode.xaml.cs │ │ │ ├── TokensExample │ │ │ │ ├── City.cs │ │ │ │ ├── Tokens.xaml │ │ │ │ ├── Tokens.xaml.cs │ │ │ │ └── TokensViewModel.cs │ │ │ └── ViewModel.cs │ │ ├── GettingStartedCategory │ │ │ └── GettingStartedExample │ │ │ │ ├── AutoCompleteViewGettingStartedCSharp.cs │ │ │ │ ├── AutoCompleteViewGettingStartedXaml.xaml │ │ │ │ └── AutoCompleteViewGettingStartedXaml.xaml.cs │ │ └── TemplatesCategory │ │ │ ├── SuggestionItemTemplateExample │ │ │ ├── SuggestionItemTemplate.xaml │ │ │ └── SuggestionItemTemplate.xaml.cs │ │ │ ├── SuggestionViewTemplateExample │ │ │ ├── Person.cs │ │ │ ├── SuggestionViewTemplate.xaml │ │ │ ├── SuggestionViewTemplate.xaml.cs │ │ │ └── ViewModel.cs │ │ │ └── TokensTemplateExample │ │ │ ├── TokensTemplate.xaml │ │ │ └── TokensTemplate.xaml.cs │ ├── BadgeViewControl │ │ ├── FeaturesCategory │ │ │ ├── BadgeAlignPositionExample │ │ │ │ ├── BadgeAlignPosition.xaml │ │ │ │ └── BadgeAlignPosition.xaml.cs │ │ │ ├── BadgeAnimationExample │ │ │ │ ├── BadgeAnimation.xaml │ │ │ │ └── BadgeAnimation.xaml.cs │ │ │ ├── BadgeTypesExample │ │ │ │ ├── BadgeTypes.xaml │ │ │ │ └── BadgeTypes.xaml.cs │ │ │ ├── BadgeViewContentExample │ │ │ │ ├── BadgeViewContent.xaml │ │ │ │ └── BadgeViewContent.xaml.cs │ │ │ ├── BadgeViewIntegrationExample │ │ │ │ ├── BadgeViewIntegration.xaml │ │ │ │ ├── BadgeViewIntegration.xaml.cs │ │ │ │ └── ViewModel.cs │ │ │ ├── ControlTemplateExample │ │ │ │ ├── ControlTemplate.xaml │ │ │ │ └── ControlTemplate.xaml.cs │ │ │ └── StylingExample │ │ │ │ ├── Styling.xaml │ │ │ │ └── Styling.xaml.cs │ │ └── GettingStartedCategory │ │ │ └── GettingStartedExample │ │ │ ├── BadgeViewGettingStartedCSharp.cs │ │ │ ├── BadgeViewGettingStartedXaml.xaml │ │ │ └── BadgeViewGettingStartedXaml.xaml.cs │ ├── BarcodeControl │ │ ├── FeaturesCategory │ │ │ ├── DataMatrixExample │ │ │ │ ├── DataMatrix.xaml │ │ │ │ └── DataMatrix.xaml.cs │ │ │ ├── KeyFeaturesExample │ │ │ │ ├── KeyFeatures.xaml │ │ │ │ └── KeyFeatures.xaml.cs │ │ │ ├── PDF417Example │ │ │ │ ├── PDF417.xaml │ │ │ │ └── PDF417.xaml.cs │ │ │ └── QRCodeExample │ │ │ │ ├── QRCode.xaml │ │ │ │ └── QRCode.xaml.cs │ │ ├── GettingStartedCategory │ │ │ └── GettingStartedExample │ │ │ │ ├── BarcodeGettingStartedXaml.xaml │ │ │ │ └── BarcodeGettingStartedXaml.xaml.cs │ │ └── SwissQRCodeCategory │ │ │ ├── SwissQRCodeConfigurationExample │ │ │ ├── SwissQRCodeConfiguration.xaml │ │ │ ├── SwissQRCodeConfiguration.xaml.cs │ │ │ └── SwissQRConfigurationViewModel.cs │ │ │ └── SwissQRCodeExample │ │ │ ├── SwissQRCode.xaml │ │ │ └── SwissQRCode.xaml.cs │ ├── BorderControl │ │ ├── FeaturesCategory │ │ │ └── KeyFeaturesExample │ │ │ │ ├── KeyFeatures.xaml │ │ │ │ └── KeyFeatures.xaml.cs │ │ └── GettingStartedCategory │ │ │ └── GettingStartedExample │ │ │ ├── BorderGettingStartedXaml.xaml │ │ │ └── BorderGettingStartedXaml.xaml.cs │ ├── BusyIndicatorControl │ │ ├── FeaturesCategory │ │ │ ├── AnimationSettingsExample │ │ │ │ ├── AnimationSettings.xaml │ │ │ │ └── AnimationSettings.xaml.cs │ │ │ ├── AnimationsExample │ │ │ │ ├── AnimationsCSharp.cs │ │ │ │ ├── AnimationsXaml.xaml │ │ │ │ └── AnimationsXaml.xaml.cs │ │ │ └── CustomBusyContentExample │ │ │ │ ├── CustomBusyContent.xaml │ │ │ │ └── CustomBusyContent.xaml.cs │ │ ├── GettingStartedCategory │ │ │ └── GettingStartedExample │ │ │ │ ├── BusyIndicatorGettingStartedCSharp.cs │ │ │ │ ├── BusyIndicatorGettingStartedXaml.xaml │ │ │ │ └── BusyIndicatorGettingStartedXaml.xaml.cs │ │ └── HowToCategory │ │ │ └── ListViewIntegrationExample │ │ │ ├── Book.cs │ │ │ ├── BusyIndicatorWithListView.xaml │ │ │ ├── BusyIndicatorWithListView.xaml.cs │ │ │ └── ViewModel.cs │ ├── ButtonControl │ │ ├── FeaturesCategory │ │ │ ├── BackgroundImageExample │ │ │ │ ├── BackgroundImage.xaml │ │ │ │ └── BackgroundImage.xaml.cs │ │ │ ├── BorderRadiusExample │ │ │ │ ├── BorderRadius.xaml │ │ │ │ └── BorderRadius.xaml.cs │ │ │ ├── BorderThicknessExample │ │ │ │ ├── BorderThickness.xaml │ │ │ │ └── BorderThickness.xaml.cs │ │ │ ├── ContentAlignmentExample │ │ │ │ ├── ContentAlignment.xaml │ │ │ │ └── ContentAlignment.xaml.cs │ │ │ └── KeyFeaturesExample │ │ │ │ ├── KeyFeatures.xaml │ │ │ │ └── KeyFeatures.xaml.cs │ │ ├── GettingStartedCategory │ │ │ └── GettingStartedExample │ │ │ │ ├── ButtonGettingStartedXaml.xaml │ │ │ │ └── ButtonGettingStartedXaml.xaml.cs │ │ └── HowToCategory │ │ │ ├── ButtonCircularExample │ │ │ ├── ButtonCircular.xaml │ │ │ └── ButtonCircular.xaml.cs │ │ │ └── ButtonDisabledTextColorExample │ │ │ ├── ButtonDisabledTextColor.xaml │ │ │ ├── ButtonDisabledTextColor.xaml.cs │ │ │ └── MyRadButton.cs │ ├── CalendarControl │ │ ├── CommandsCategory │ │ │ ├── AppointmentTapExample │ │ │ │ ├── AppointmentTap.xaml │ │ │ │ ├── AppointmentTap.xaml.cs │ │ │ │ ├── AppointmentTapUserCommand.cs │ │ │ │ └── ViewModel.cs │ │ │ ├── CellTapExample │ │ │ │ ├── CellTap.xaml │ │ │ │ └── CellTap.xaml.cs │ │ │ └── TimeSlotTapExample │ │ │ │ ├── TimeSlotTap.xaml │ │ │ │ └── TimeSlotTap.xaml.cs │ │ ├── FeaturesCategory │ │ │ ├── AgendaViewSettingsExample │ │ │ │ ├── AgendaViewSettings.xaml │ │ │ │ └── AgendaViewSettings.xaml.cs │ │ │ ├── AppointmentsTemplateExample │ │ │ │ ├── AppointmentsTemplate.xaml │ │ │ │ ├── AppointmentsTemplate.xaml.cs │ │ │ │ ├── AppointmentsTemplateViewModel.cs │ │ │ │ └── DayViewAppointmentTemplateSelector.cs │ │ │ ├── CalendarAppointmentTappedExample │ │ │ │ └── CalendarAppointmentTapped.cs │ │ │ ├── CalendarAppointmentsExample │ │ │ │ ├── AppointmentsViewModel.cs │ │ │ │ ├── CalendarAppointments.xaml │ │ │ │ └── CalendarAppointments.xaml.cs │ │ │ ├── CalendarViewModesExample │ │ │ │ ├── CalendarViewModes.xaml │ │ │ │ └── CalendarViewModes.xaml.cs │ │ │ ├── CustomSlotsExample │ │ │ │ ├── BreakSlot.cs │ │ │ │ ├── CustomSlots.xaml │ │ │ │ ├── CustomSlots.xaml.cs │ │ │ │ └── ViewModel.cs │ │ │ ├── DatePropertiesExample │ │ │ │ ├── DatePropertiesCSharp.cs │ │ │ │ ├── DatePropertiesXaml.xaml │ │ │ │ └── DatePropertiesXaml.xaml.cs │ │ │ ├── DayViewSettingsExample │ │ │ │ ├── DayViewSettingsAndStyle.xaml │ │ │ │ └── DayViewSettingsAndStyle.xaml.cs │ │ │ ├── NonWorkingHoursExample │ │ │ │ ├── NonWorkingHours.xaml │ │ │ │ └── NonWorkingHours.xaml.cs │ │ │ ├── ProgrammaticScrollingExample │ │ │ │ ├── ProgrammaticScrolling.xaml │ │ │ │ └── ProgrammaticScrolling.xaml.cs │ │ │ ├── SelectionExample │ │ │ │ ├── CalendarSelection.xaml │ │ │ │ └── CalendarSelection.xaml.cs │ │ │ ├── SpecialSlotsExample │ │ │ │ ├── SpecialSlots.xaml │ │ │ │ ├── SpecialSlots.xaml.cs │ │ │ │ └── ViewModel.cs │ │ │ └── SpecialSlotsStyleSelectorExample │ │ │ │ ├── CustomSpecialSlotStyleSelector.cs │ │ │ │ ├── SpecialSlotsStyleSelector.xaml │ │ │ │ ├── SpecialSlotsStyleSelector.xaml.cs │ │ │ │ └── ViewModel.cs │ │ ├── GettingStartedCategory │ │ │ └── GettingStartedExample │ │ │ │ ├── CalendarGettingStartedCSharp.cs │ │ │ │ ├── CalendarGettingStartedXaml.xaml │ │ │ │ └── CalendarGettingStartedXaml.xaml.cs │ │ ├── SchedulingCategory │ │ │ ├── AllDayAreaExample │ │ │ │ ├── AllDayArea.xaml │ │ │ │ └── AllDayArea.xaml.cs │ │ │ ├── CurrentTimeIndicatorExample │ │ │ │ ├── CurrentTimeIndicator.xaml │ │ │ │ └── CurrentTimeIndicator.xaml.cs │ │ │ ├── CustomSchedulingUiExample │ │ │ │ ├── AddAppointmentView.xaml │ │ │ │ ├── AddAppointmentView.xaml.cs │ │ │ │ ├── AddAppointmentViewModel.cs │ │ │ │ ├── AppointmentsGenerator.cs │ │ │ │ ├── BoolToStringConverter.cs │ │ │ │ ├── CustomAppointment.cs │ │ │ │ ├── CustomSchedulingUi.xaml │ │ │ │ ├── CustomSchedulingUi.xaml.cs │ │ │ │ ├── CustomSchedulingUiViewModel.cs │ │ │ │ ├── EditAppointmentView.xaml │ │ │ │ ├── EditAppointmentView.xaml.cs │ │ │ │ ├── EditAppointmentViewModel.cs │ │ │ │ ├── ReadAppointmentView.xaml │ │ │ │ ├── ReadAppointmentView.xaml.cs │ │ │ │ ├── ReadAppointmentViewModel.cs │ │ │ │ └── SaveButtonStringToColorConverter.cs │ │ │ ├── KeyFeaturesExample │ │ │ │ ├── KeyFeatures.xaml │ │ │ │ └── KeyFeatures.xaml.cs │ │ │ ├── RecurrentAppointmentsExample │ │ │ │ ├── RecurrentAppointments.xaml │ │ │ │ └── RecurrentAppointments.xaml.cs │ │ │ ├── SchedulingCommandsExample │ │ │ │ ├── SchedulingCommands.xaml │ │ │ │ ├── SchedulingCommands.xaml.cs │ │ │ │ └── ViewModel.cs │ │ │ ├── SchedulingUICustomizationExample │ │ │ │ ├── CustomAppointment.cs │ │ │ │ ├── Resources │ │ │ │ │ ├── CustomSchedulingResources.xaml │ │ │ │ │ └── CustomSchedulingResources.xaml.cs │ │ │ │ ├── SchedulingUICustomization.xaml │ │ │ │ ├── SchedulingUICustomization.xaml.cs │ │ │ │ └── ViewModel.cs │ │ │ ├── SchedulingUIEventsExample │ │ │ │ ├── SchedulingUIEvents.xaml │ │ │ │ └── SchedulingUIEvents.xaml.cs │ │ │ ├── SchedulingUIExample │ │ │ │ ├── SchedulingUI.xaml │ │ │ │ └── SchedulingUI.xaml.cs │ │ │ ├── SchedulingUIViews │ │ │ │ ├── AddAppointmentView.xaml │ │ │ │ ├── AddAppointmentView.xaml.cs │ │ │ │ ├── AppointmentSummaryView.xaml │ │ │ │ ├── AppointmentSummaryView.xaml.cs │ │ │ │ ├── ColorPickerView.xaml │ │ │ │ ├── ColorPickerView.xaml.cs │ │ │ │ ├── CustomRecurrenceView.xaml │ │ │ │ ├── CustomRecurrenceView.xaml.cs │ │ │ │ ├── DeleteAppointmentView.xaml │ │ │ │ ├── DeleteAppointmentView.xaml.cs │ │ │ │ ├── DeleteRecurringAppointmentView.xaml │ │ │ │ ├── DeleteRecurringAppointmentView.xaml.cs │ │ │ │ ├── EndRepeatAppointmentView.xaml │ │ │ │ ├── EndRepeatAppointmentView.xaml.cs │ │ │ │ ├── RepeatAppointmentView.xaml │ │ │ │ ├── RepeatAppointmentView.xaml.cs │ │ │ │ ├── SaveRecurringAppointmentView.xaml │ │ │ │ └── SaveRecurringAppointmentView.xaml.cs │ │ │ └── TimelineStylingExample │ │ │ │ ├── TimelineStyling.xaml │ │ │ │ └── TimelineStyling.xaml.cs │ │ └── StylingCategory │ │ │ ├── AgendaViewStickyHeadersStyleExample │ │ │ ├── AgendaViewStickyHeadersStyle.xaml │ │ │ └── AgendaViewStickyHeadersStyle.xaml.cs │ │ │ ├── AgendaViewStylingExample │ │ │ ├── AgendaViewStyling.xaml │ │ │ ├── AgendaViewStyling.xaml.cs │ │ │ └── CustomAgendaViewItemStyleSelector.cs │ │ │ ├── AppointmentsExample │ │ │ ├── Appointments.xaml │ │ │ └── Appointments.xaml.cs │ │ │ ├── AppointmentsStyleExample │ │ │ ├── AppointmentsStyleCSharp.cs │ │ │ ├── AppointmentsStyleXaml.xaml │ │ │ └── AppointmentsStyleXaml.xaml.cs │ │ │ ├── CellStylingExample │ │ │ └── CellStyling.cs │ │ │ ├── CustomRendererExample │ │ │ ├── CalendarCustomRenderer.cs │ │ │ └── CustomCalendar.cs │ │ │ ├── DayViewStylingExample │ │ │ ├── DayViewStyling.xaml │ │ │ └── DayViewStyling.xaml.cs │ │ │ └── ElementsDisplayModeExample │ │ │ └── ElementsDisplayMode.cs │ ├── ChartControl │ │ ├── AnnotationsCategory │ │ │ ├── GridLineAnnotationsExample │ │ │ │ ├── GridLineAnnotationsCSharp.cs │ │ │ │ ├── GridLineAnnotationsXaml.xaml │ │ │ │ ├── GridLineAnnotationsXaml.xaml.cs │ │ │ │ └── ViewModel.cs │ │ │ └── PlotBandAnnotationsExample │ │ │ │ ├── PlotBandAnnotationsCSharp.cs │ │ │ │ ├── PlotBandAnnotationsXaml.xaml │ │ │ │ ├── PlotBandAnnotationsXaml.xaml.cs │ │ │ │ └── ViewModel.cs │ │ ├── CustomizationCategory │ │ │ ├── ChartGridLinesExample │ │ │ │ ├── ChartGridLinesCSharp.cs │ │ │ │ ├── ChartGridLinesXaml.xaml │ │ │ │ ├── ChartGridLinesXaml.xaml.cs │ │ │ │ └── ViewModel.cs │ │ │ ├── CustomPaletteExample │ │ │ │ ├── CustomPaletteCSharp.cs │ │ │ │ ├── CustomPaletteXaml.xaml │ │ │ │ ├── CustomPaletteXaml.xaml.cs │ │ │ │ └── ViewModel.cs │ │ │ ├── FormatAxisLabelsExample │ │ │ │ ├── DateLabelFormatter.cs │ │ │ │ ├── FormatAxisLabelsCSharp.cs │ │ │ │ ├── FormatAxisLabelsXaml.xaml │ │ │ │ ├── FormatAxisLabelsXaml.xaml.cs │ │ │ │ └── ViewModel.cs │ │ │ ├── FormatSeriesLabelsExample │ │ │ │ ├── FormatSeriesLabelsCSharp.cs │ │ │ │ ├── FormatSeriesLabelsXaml.xaml │ │ │ │ ├── FormatSeriesLabelsXaml.xaml.cs │ │ │ │ └── ViewModel.cs │ │ │ ├── GradientBarsExample │ │ │ │ ├── ChartItem.cs │ │ │ │ ├── GradientBars.xaml │ │ │ │ ├── GradientBars.xaml.cs │ │ │ │ └── GradientBarsEffect.cs │ │ │ ├── PaletteModeExample │ │ │ │ ├── PaletteModeCSharp.cs │ │ │ │ ├── PaletteModeXaml.xaml │ │ │ │ ├── PaletteModeXaml.xaml.cs │ │ │ │ └── ViewModel.cs │ │ │ └── PointMarks │ │ │ │ ├── LineChartItem.cs │ │ │ │ ├── PointMarks.xaml │ │ │ │ ├── PointMarks.xaml.cs │ │ │ │ └── PointMarksEffect.cs │ │ ├── FeaturesCategory │ │ │ └── NullValuesExample │ │ │ │ ├── NullValuesSupport.xaml │ │ │ │ ├── NullValuesSupport.xaml.cs │ │ │ │ └── ViewModel.cs │ │ ├── GettingStartedCategory │ │ │ └── GettingStartedExample │ │ │ │ ├── ChartGettingStartedCSharp.cs │ │ │ │ ├── ChartGettingStartedXaml.xaml │ │ │ │ ├── ChartGettingStartedXaml.xaml.cs │ │ │ │ └── ViewModel.cs │ │ ├── InteractivityCategory │ │ │ ├── PanZoomExample │ │ │ │ ├── PanZoomCSharp.cs │ │ │ │ ├── PanZoomXaml.xaml │ │ │ │ ├── PanZoomXaml.xaml.cs │ │ │ │ └── ViewModel.cs │ │ │ ├── SelectionSeriesExample │ │ │ │ ├── SelectionSeriesCSharp.cs │ │ │ │ ├── SelectionSeriesXaml.xaml │ │ │ │ ├── SelectionSeriesXaml.xaml.cs │ │ │ │ └── ViewModel.cs │ │ │ ├── ToolTipSeriesExample │ │ │ │ ├── ToolTipSeriesCSharp.cs │ │ │ │ ├── ToolTipSeriesXaml.xaml │ │ │ │ ├── ToolTipSeriesXaml.xaml.cs │ │ │ │ └── ViewModel.cs │ │ │ └── TrackballSeriesExample │ │ │ │ ├── TrackballSeriesCSharp.cs │ │ │ │ ├── TrackballSeriesXaml.xaml │ │ │ │ ├── TrackballSeriesXaml.xaml.cs │ │ │ │ └── ViewModel.cs │ │ ├── LegendCategory │ │ │ ├── CartesianChartRadLegendExample │ │ │ │ ├── CartesianChartRadLegendCSharp.cs │ │ │ │ ├── CartesianChartRadLegendXaml.xaml │ │ │ │ └── CartesianChartRadLegendXaml.xaml.cs │ │ │ ├── PieChartRadLegendExample │ │ │ │ ├── PieChartRadLegendCSharp.cs │ │ │ │ ├── PieChartRadLegendXaml.xaml │ │ │ │ └── PieChartRadLegendXaml.xaml.cs │ │ │ └── ViewModel.cs │ │ ├── PieChartCategory │ │ │ ├── DonutSeriesExample │ │ │ │ ├── DonutSeriesXAML.xaml │ │ │ │ └── DonutSeriesXAML.xaml.cs │ │ │ ├── PieChartExample │ │ │ │ ├── PieChartCSharp.cs │ │ │ │ ├── PieChartXaml.xaml │ │ │ │ ├── PieChartXaml.xaml.cs │ │ │ │ └── ViewModel.cs │ │ │ └── PieChartPercentageExample │ │ │ │ ├── PercentageLabelFormatter.cs │ │ │ │ ├── PieChartPercentageCSharp.cs │ │ │ │ ├── PieChartPercentageXaml.xaml │ │ │ │ ├── PieChartPercentageXaml.xaml.cs │ │ │ │ └── ViewModel.cs │ │ └── SeriesCategory │ │ │ ├── AreaSeriesExample │ │ │ ├── AreaSeriesCSharp.cs │ │ │ ├── AreaSeriesXaml.xaml │ │ │ └── AreaSeriesXaml.xaml.cs │ │ │ ├── BarSeriesHorizontalExample │ │ │ ├── BarSeriesHorizontalCSharp.cs │ │ │ ├── BarSeriesHorizontalXaml.xaml │ │ │ └── BarSeriesHorizontalXaml.xaml.cs │ │ │ ├── BarSeriesVerticalExample │ │ │ ├── BarSeriesVerticalCSharp.cs │ │ │ ├── BarSeriesVerticalXaml.xaml │ │ │ └── BarSeriesVerticalXaml.xaml.cs │ │ │ ├── CandlestickSeriesExample │ │ │ ├── CandlestickSeriesExampleCSharp.cs │ │ │ ├── CandlestickSeriesExampleXaml.xaml │ │ │ ├── CandlestickSeriesExampleXaml.xaml.cs │ │ │ └── ViewModel.cs │ │ │ ├── CategoricalDataViewModel.cs │ │ │ ├── CategoricalViewModel.cs │ │ │ ├── FinancialIndicatorsExample │ │ │ ├── FinancialIndicatorsExampleCSharp.cs │ │ │ ├── FinancialIndicatorsExampleXaml.xaml │ │ │ ├── FinancialIndicatorsExampleXaml.xaml.cs │ │ │ └── ViewModel.cs │ │ │ ├── LineSeriesExample │ │ │ ├── LineSeriesCSharp.cs │ │ │ ├── LineSeriesXaml.xaml │ │ │ └── LineSeriesXaml.xaml.cs │ │ │ ├── NumericalViewModel.cs │ │ │ ├── OhlcSeriesExample │ │ │ ├── OhlcSeriesExampleCSharp.cs │ │ │ ├── OhlcSeriesExampleXaml.xaml │ │ │ ├── OhlcSeriesExampleXaml.xaml.cs │ │ │ └── ViewModel.cs │ │ │ ├── ScatterAreaSeriesExample │ │ │ ├── ScatterAreaSeriesCSharp.cs │ │ │ ├── ScatterAreaSeriesXaml.xaml │ │ │ └── ScatterAreaSeriesXaml.xaml.cs │ │ │ ├── ScatterLineSeriesExample │ │ │ ├── ScatterLineSeriesCSharp.cs │ │ │ ├── ScatterLineSeriesXaml.xaml │ │ │ └── ScatterLineSeriesXaml.xaml.cs │ │ │ ├── ScatterPointSeriesExample │ │ │ ├── ScatterPointSeriesCSharp.cs │ │ │ ├── ScatterPointSeriesXaml.xaml │ │ │ └── ScatterPointSeriesXaml.xaml.cs │ │ │ ├── ScatterSplineAreaSeriesExample │ │ │ ├── ScatterSplineAreaSeriesCSharp.cs │ │ │ ├── ScatterSplineAreaSeriesXaml.xaml │ │ │ └── ScatterSplineAreaSeriesXaml.xaml.cs │ │ │ ├── ScatterSplineSeriesExample │ │ │ ├── ScatterSplineSeriesCSharp.cs │ │ │ ├── ScatterSplineSeriesXaml.xaml │ │ │ └── ScatterSplineSeriesXaml.xaml.cs │ │ │ ├── SeriesCategoricalViewModel.cs │ │ │ ├── SeriesNumericalViewModel.cs │ │ │ ├── SplineAreaSeriesExample │ │ │ ├── SplineAreaSeriesCSharp.cs │ │ │ ├── SplineAreaSeriesXaml.xaml │ │ │ └── SplineAreaSeriesXaml.xaml.cs │ │ │ ├── SplineSeriesExample │ │ │ ├── SplineSeriesCSharp.cs │ │ │ ├── SplineSeriesXaml.xaml │ │ │ └── SplineSeriesXaml.xaml.cs │ │ │ ├── StackAreaSeriesExample │ │ │ ├── StackAreaSeriesCSharp.cs │ │ │ ├── StackAreaSeriesXaml.xaml │ │ │ └── StackAreaSeriesXaml.xaml.cs │ │ │ ├── StackBarSeriesHorizontalExample │ │ │ ├── StackBarSeriesHorizontalCSharp.cs │ │ │ ├── StackBarSeriesHorizontalXaml.xaml │ │ │ └── StackBarSeriesHorizontalXaml.xaml.cs │ │ │ ├── StackBarSeriesVerticalExample │ │ │ ├── StackBarSeriesVerticalCSharp.cs │ │ │ ├── StackBarSeriesVerticalXaml.xaml │ │ │ └── StackBarSeriesVerticalXaml.xaml.cs │ │ │ └── StackSplineAreaSeriesExample │ │ │ ├── StackSplineAreaSeriesCSharp.cs │ │ │ ├── StackSplineAreaSeriesXaml.xaml │ │ │ └── StackSplineAreaSeriesXaml.xaml.cs │ ├── ChatControl │ │ ├── ChatPickersCategory │ │ │ ├── ChooseCardExample │ │ │ │ ├── ChooseCard.xaml │ │ │ │ └── ChooseCard.xaml.cs │ │ │ ├── ChooseDateExample │ │ │ │ ├── ChooseDate.xaml │ │ │ │ └── ChooseDate.xaml.cs │ │ │ ├── ChooseItemExample │ │ │ │ ├── ChooseItem.xaml │ │ │ │ └── ChooseItem.xaml.cs │ │ │ ├── ChooseTimeExample │ │ │ │ ├── ChooseTime.xaml │ │ │ │ └── ChooseTime.xaml.cs │ │ │ └── PickerInsideChatExample │ │ │ │ ├── PickerInsideChat.xaml │ │ │ │ └── PickerInsideChat.xaml.cs │ │ ├── FeaturesCategory │ │ │ ├── ChatItemsExample │ │ │ │ ├── ChatItems.xaml │ │ │ │ └── ChatItems.xaml.cs │ │ │ ├── CommandsExample │ │ │ │ ├── Commands.xaml │ │ │ │ ├── Commands.xaml.cs │ │ │ │ └── ViewModel.cs │ │ │ ├── CustomizationExample │ │ │ │ ├── Customization.xaml │ │ │ │ └── Customization.xaml.cs │ │ │ ├── DefaultTemplateSelectorExample │ │ │ │ ├── DefaultItemTemplateSelector.xaml │ │ │ │ └── DefaultItemTemplateSelector.xaml.cs │ │ │ ├── ItemTemplateSelectorExample │ │ │ │ ├── CustomChatItemTemplateSelector.cs │ │ │ │ ├── ItemTemplateSelector.xaml │ │ │ │ ├── ItemTemplateSelector.xaml.cs │ │ │ │ ├── SimpleChatItem.cs │ │ │ │ ├── SimpleChatItemConverter.cs │ │ │ │ └── ViewModel.cs │ │ │ ├── MVVMSupportExample │ │ │ │ ├── MVVMSupport.xaml │ │ │ │ ├── MVVMSupport.xaml.cs │ │ │ │ ├── SimpleChatItem.cs │ │ │ │ ├── SimpleChatItemConverter.cs │ │ │ │ └── ViewModel.cs │ │ │ └── TypingIndicatorExample │ │ │ │ ├── ChatParticipantConverter.cs │ │ │ │ ├── Participant.cs │ │ │ │ ├── TypingIndicatorAuthors.xaml │ │ │ │ ├── TypingIndicatorAuthors.xaml.cs │ │ │ │ ├── TypingIndicatorItemsSource.xaml │ │ │ │ ├── TypingIndicatorItemsSource.xaml.cs │ │ │ │ └── ViewModel.cs │ │ ├── GettingStartedCategory │ │ │ └── GettingStartedExample │ │ │ │ ├── ChatGettingStartedXaml.xaml │ │ │ │ ├── ChatGettingStartedXaml.xaml.cs │ │ │ │ └── RepeatBotService.cs │ │ └── HowToCategory │ │ │ └── CustomCardExample │ │ │ ├── CustomCard.xaml │ │ │ ├── CustomCard.xaml.cs │ │ │ ├── MyCardContext.cs │ │ │ ├── MyCardPickerTemplateSelector.cs │ │ │ ├── MyCardView.cs │ │ │ ├── MyCardViewResourceDictionary.xaml │ │ │ └── MyCardViewResourceDictionary.xaml.cs │ ├── CheckBoxControl │ │ ├── CommandsCategory │ │ │ └── CheckBoxCommandsExample │ │ │ │ ├── CheckBoxCommands.xaml │ │ │ │ ├── CheckBoxCommands.xaml.cs │ │ │ │ └── ViewModel.cs │ │ ├── FeaturesCategory │ │ │ ├── ColorChangingExample │ │ │ │ ├── ColorChanging.xaml │ │ │ │ └── ColorChanging.xaml.cs │ │ │ └── KeyFeaturesExample │ │ │ │ ├── KeyFeatures.xaml │ │ │ │ ├── KeyFeatures.xaml.cs │ │ │ │ └── ViewModel.cs │ │ └── GettingStartedCategory │ │ │ └── GettingStartedExample │ │ │ ├── CheckBoxGettingStartedCSharp.cs │ │ │ ├── CheckBoxGettingStartedXaml.xaml │ │ │ └── CheckBoxGettingStartedXaml.xaml.cs │ ├── ComboBoxControl │ │ ├── City.cs │ │ ├── FeaturesCategory │ │ │ ├── EditingExample │ │ │ │ ├── Editing.xaml │ │ │ │ ├── Editing.xaml.cs │ │ │ │ └── ViewModel.cs │ │ │ ├── KeyFeaturesExample │ │ │ │ ├── KeyFeatures.xaml │ │ │ │ └── KeyFeatures.xaml.cs │ │ │ ├── SearchingModeExample │ │ │ │ ├── SearchingMode.xaml │ │ │ │ ├── SearchingMode.xaml.cs │ │ │ │ └── ViewModel.cs │ │ │ └── SelectionExample │ │ │ │ ├── Selection.xaml │ │ │ │ ├── Selection.xaml.cs │ │ │ │ └── ViewModel.cs │ │ ├── GettingStartedCategory │ │ │ └── GettingStartedExample │ │ │ │ ├── ComboBoxGettingStartedCSharp.cs │ │ │ │ ├── ComboBoxGettingStartedXaml.xaml │ │ │ │ ├── ComboBoxGettingStartedXaml.xaml.cs │ │ │ │ └── ViewModel.cs │ │ ├── HowToCategory │ │ │ ├── ClearTextOnDropDownClosedExample │ │ │ │ ├── ClearTextOnDropDownClosed.xaml │ │ │ │ ├── ClearTextOnDropDownClosed.xaml.cs │ │ │ │ └── ViewModel.cs │ │ │ ├── DropDownClearButtonExample │ │ │ │ ├── DropDownClearButton.xaml │ │ │ │ ├── DropDownClearButton.xaml.cs │ │ │ │ ├── SelectedItemToColorConverter.cs │ │ │ │ └── ViewModel.cs │ │ │ ├── NoNullValueExample │ │ │ │ ├── NoNullValue.xaml │ │ │ │ ├── NoNullValue.xaml.cs │ │ │ │ └── ViewModel.cs │ │ │ └── SelectionWithCheckBoxExample │ │ │ │ ├── SelectionWithCheckBox.xaml │ │ │ │ ├── SelectionWithCheckBox.xaml.cs │ │ │ │ └── ViewModel.cs │ │ ├── StoreAddress.cs │ │ ├── StylingCategory │ │ │ ├── ComboBoxStylingExample │ │ │ │ ├── ComboBoxStyling.xaml │ │ │ │ └── ComboBoxStyling.xaml.cs │ │ │ └── DropDownStylingExample │ │ │ │ ├── DropDownStyling.xaml │ │ │ │ └── DropDownStyling.xaml.cs │ │ └── TemplatesCategory │ │ │ ├── DefaultTemplatesExample │ │ │ ├── DefaultTemplates.xaml │ │ │ └── DefaultTemplates.xaml.cs │ │ │ ├── HeaderFooterExample │ │ │ ├── HeaderFooter.xaml │ │ │ └── HeaderFooter.xaml.cs │ │ │ ├── ItemSelectedItemTemplatesExample │ │ │ ├── ItemSelectedItemTemplates.xaml │ │ │ └── ItemSelectedItemTemplates.xaml.cs │ │ │ └── TokenTemplateExample │ │ │ ├── TokenTemplate.xaml │ │ │ └── TokenTemplate.xaml.cs │ ├── DataFormControl │ │ ├── DataAnnotationsCategory │ │ │ ├── ConversionContextExample │ │ │ │ ├── DataFormDataAnnotationsConversionContext.xaml │ │ │ │ ├── DataFormDataAnnotationsConversionContext.xaml.cs │ │ │ │ └── SourceItem.cs │ │ │ ├── ConverterExample │ │ │ │ ├── DataFormDataAnnotationsConverterCSharp.cs │ │ │ │ ├── DataFormDataAnnotationsConverterXaml.xaml │ │ │ │ ├── DataFormDataAnnotationsConverterXaml.xaml.cs │ │ │ │ ├── DecimalToDoublePropertyConverter.cs │ │ │ │ └── Item.cs │ │ │ ├── DataSourceKeyExample │ │ │ │ ├── DataFormDataAnnotationsDataSourceKeyCSharp.cs │ │ │ │ ├── DataFormDataAnnotationsDataSourceKeyXaml.xaml │ │ │ │ ├── DataFormDataAnnotationsDataSourceKeyXaml.xaml.cs │ │ │ │ ├── LocationProvider.cs │ │ │ │ └── Source.cs │ │ │ ├── DisplayOptionsExample │ │ │ │ ├── DataFormDataAnnotationsDisplayOptionsCSharp.cs │ │ │ │ ├── DataFormDataAnnotationsDisplayOptionsXaml.xaml │ │ │ │ ├── DataFormDataAnnotationsDisplayOptionsXaml.xaml.cs │ │ │ │ └── Person.cs │ │ │ ├── DisplayValueFormatExample │ │ │ │ ├── DataFormDataAnnotationsDisplayValueFormatCSharp.cs │ │ │ │ ├── DataFormDataAnnotationsDisplayValueFormatXaml.xaml │ │ │ │ ├── DataFormDataAnnotationsDisplayValueFormatXaml.xaml.cs │ │ │ │ └── VoteResults.cs │ │ │ ├── IgnoreExample │ │ │ │ ├── DataFormDataAnnotationsIgnoreCSharp.cs │ │ │ │ ├── DataFormDataAnnotationsIgnoreXaml.xaml │ │ │ │ ├── DataFormDataAnnotationsIgnoreXaml.xaml.cs │ │ │ │ └── Person.cs │ │ │ ├── ReadonlyExample │ │ │ │ ├── DataFormDataAnnotationsReadonlyCSharp.cs │ │ │ │ ├── DataFormDataAnnotationsReadonlyXaml.xaml │ │ │ │ ├── DataFormDataAnnotationsReadonlyXaml.xaml.cs │ │ │ │ └── Employee.cs │ │ │ └── ValidationExample │ │ │ │ ├── DataFormDataAnnotationsValidation.xaml │ │ │ │ ├── DataFormDataAnnotationsValidation.xaml.cs │ │ │ │ ├── OccupationValidatorAttribute.cs │ │ │ │ └── Person.cs │ │ ├── EditorsCategory │ │ │ ├── CustomEditorExample │ │ │ │ ├── CustomDataFormEditor.xaml │ │ │ │ ├── CustomDataFormEditor.xaml.cs │ │ │ │ ├── CustomEditorDataForm.cs │ │ │ │ ├── Options.cs │ │ │ │ └── SourceItem.cs │ │ │ └── EditorsExample │ │ │ │ ├── Book.cs │ │ │ │ ├── DataFormEditors.xaml │ │ │ │ ├── DataFormEditors.xaml.cs │ │ │ │ ├── TargetAudience.cs │ │ │ │ └── UserPropertyDataSourceProvider.cs │ │ ├── GettingStartedCategory │ │ │ └── GettingStartedExample │ │ │ │ ├── DataFormGettingStartedCSharp.cs │ │ │ │ ├── DataFormGettingStartedXaml.xaml │ │ │ │ ├── DataFormGettingStartedXaml.xaml.cs │ │ │ │ └── SourceItem.cs │ │ ├── GlobalizationCategory │ │ │ └── GlobalizationExample │ │ │ │ ├── DataFormGlobalization.xaml │ │ │ │ ├── DataFormGlobalization.xaml.cs │ │ │ │ ├── Person.cs │ │ │ │ └── Resources │ │ │ │ ├── DataFormResources.cs │ │ │ │ ├── DataFormResources.de.resx │ │ │ │ ├── DataFormResources.es.resx │ │ │ │ └── DataFormResources.resx │ │ ├── GroupsCategory │ │ │ └── GroupsExample │ │ │ │ ├── Customer.cs │ │ │ │ ├── DataFormGroups.xaml │ │ │ │ └── DataFormGroups.xaml.cs │ │ ├── HowToCategory │ │ │ ├── AutoCompleteEditorExample │ │ │ │ ├── CustomAutoCompleteDataForm.cs │ │ │ │ ├── DataFormAutoCompleteEditor.xaml │ │ │ │ ├── DataFormAutoCompleteEditor.xaml.cs │ │ │ │ └── SourceItem.cs │ │ │ ├── EmailPasswordEditorsExample │ │ │ │ ├── Account.cs │ │ │ │ ├── CustomEmailPasswordDataForm.cs │ │ │ │ ├── DataFormEmailPasswordEditors.xaml │ │ │ │ └── DataFormEmailPasswordEditors.xaml.cs │ │ │ └── RadAutoCompleteEditorTokensExample │ │ │ │ ├── CustomRadAutoCompleteDataForm.cs │ │ │ │ ├── DataFormRadAutoCompleteEditor.xaml │ │ │ │ ├── DataFormRadAutoCompleteEditor.xaml.cs │ │ │ │ ├── DataFormSourceProvider.cs │ │ │ │ └── SourceItem.cs │ │ ├── LayoutsCategory │ │ │ ├── GridLayoutExample │ │ │ │ ├── DataFormGridLayoutCSharp.cs │ │ │ │ ├── DataFormGridLayoutXaml.xaml │ │ │ │ ├── DataFormGridLayoutXaml.xaml.cs │ │ │ │ └── SourceItem.cs │ │ │ ├── LayoutSelectorExample │ │ │ │ ├── CustomGroupLayoutDefinitionSelector.cs │ │ │ │ ├── DataFormLayoutSelectorCSharp.cs │ │ │ │ ├── DataFormLayoutSelectorXaml.xaml │ │ │ │ ├── DataFormLayoutSelectorXaml.xaml.cs │ │ │ │ └── SourceItem.cs │ │ │ └── StackLayoutExample │ │ │ │ ├── DataFormStackLayoutCSharp.cs │ │ │ │ ├── DataFormStackLayoutXaml.xaml │ │ │ │ ├── DataFormStackLayoutXaml.xaml.cs │ │ │ │ └── SourceItem.cs │ │ ├── PropertyDataSourceProviderCategory │ │ │ ├── ObservableCollectionExample │ │ │ │ ├── Customer.cs │ │ │ │ ├── LocationProvider.cs │ │ │ │ ├── PropertySource.xaml │ │ │ │ └── PropertySource.xaml.cs │ │ │ └── UpdatePropertyDataSourceExample │ │ │ │ ├── Customer.cs │ │ │ │ ├── LocationProvider.cs │ │ │ │ ├── UpdatePropertyDataSource.xaml │ │ │ │ └── UpdatePropertyDataSource.xaml.cs │ │ ├── SourceCategory │ │ │ ├── CustomSourceExample │ │ │ │ ├── CustomEntityProperty.cs │ │ │ │ ├── CustomMetadataProvider.cs │ │ │ │ ├── DataFormCustomSource.xaml │ │ │ │ └── DataFormCustomSource.xaml.cs │ │ │ └── DataClassExample │ │ │ │ ├── DataFormSourceDataClass.cs │ │ │ │ └── DataSource.cs │ │ ├── StylingCategory │ │ │ ├── CustomDecimalEditorFormatterExample │ │ │ │ ├── CustomRadDataForm.cs │ │ │ │ ├── DataFormCustomDecimalEditorFormatterCSharp.cs │ │ │ │ ├── DataFormCustomDecimalEditorFormatterXaml.xaml │ │ │ │ ├── DataFormCustomDecimalEditorFormatterXaml.xaml.cs │ │ │ │ └── SourceItem.cs │ │ │ ├── StylingEditorsExample │ │ │ │ ├── Customer.cs │ │ │ │ ├── DataFormStylingEditorsCSharp.cs │ │ │ │ ├── DataFormStylingEditorsXaml.xaml │ │ │ │ └── DataFormStylingEditorsXaml.xaml.cs │ │ │ └── StylingGroupsExample │ │ │ │ ├── Customer.cs │ │ │ │ ├── DataFormStylingGroupsCSharp.cs │ │ │ │ ├── DataFormStylingGroupsXaml.xaml │ │ │ │ └── DataFormStylingGroupsXaml.xaml.cs │ │ └── ValidateCategory │ │ │ ├── CommitModeExample │ │ │ ├── DataFormCommitMode.xaml │ │ │ └── DataFormCommitMode.xaml.cs │ │ │ ├── User.cs │ │ │ └── ValidationExample │ │ │ ├── DataFormValidation.xaml │ │ │ └── DataFormValidation.xaml.cs │ ├── DataGridControl │ │ ├── ColumnsCategory │ │ │ ├── CellContentTemplateExample │ │ │ │ ├── CellContentTemplate.xaml │ │ │ │ └── CellContentTemplate.xaml.cs │ │ │ ├── CellEditTemplateExample │ │ │ │ ├── CellEditTemplate.xaml │ │ │ │ └── CellEditTemplate.xaml.cs │ │ │ ├── Club.cs │ │ │ ├── ColumnsExample │ │ │ │ ├── Columns.xaml │ │ │ │ └── Columns.xaml.cs │ │ │ └── ColumnsViewModel.cs │ │ ├── CommandsCategory │ │ │ ├── CommandsExample │ │ │ │ ├── CellTapUserCommand.cs │ │ │ │ ├── Commands.xaml │ │ │ │ ├── Commands.xaml.cs │ │ │ │ └── Country.cs │ │ │ ├── EditingExample │ │ │ │ ├── BeginEditCommand.cs │ │ │ │ ├── CommitEditCommand.cs │ │ │ │ ├── Data.cs │ │ │ │ ├── Editing.xaml │ │ │ │ ├── Editing.xaml.cs │ │ │ │ └── ViewModel.cs │ │ │ └── ValidationExample │ │ │ │ ├── Data.cs │ │ │ │ ├── ValidateCellCommand.cs │ │ │ │ ├── Validation.xaml │ │ │ │ ├── Validation.xaml.cs │ │ │ │ └── ViewModel.cs │ │ ├── DataTableCategory │ │ │ ├── BindToDataTableExample │ │ │ │ ├── BindToDataTable.xaml │ │ │ │ └── BindToDataTable.xaml.cs │ │ │ ├── CRUDOperationsExample │ │ │ │ ├── CRUDOperations.xaml │ │ │ │ └── CRUDOperations.xaml.cs │ │ │ ├── CommandsExample │ │ │ │ ├── Commands.xaml │ │ │ │ └── Commands.xaml.cs │ │ │ └── DataTableViewModel.cs │ │ ├── DecorationsCategory │ │ │ └── GridLinesExample │ │ │ │ ├── GridLines.xaml │ │ │ │ ├── GridLines.xaml.cs │ │ │ │ ├── StringToColorConverter.cs │ │ │ │ └── ViewModel.cs │ │ ├── EmptyTemplateCategory │ │ │ └── EmptyTemplateExample │ │ │ │ ├── EmptyTemplate.xaml │ │ │ │ └── EmptyTemplate.xaml.cs │ │ ├── FilteringCategory │ │ │ ├── City.cs │ │ │ ├── FilterTemplateExample │ │ │ │ ├── FilterTemplate.xaml │ │ │ │ ├── FilterTemplate.xaml.cs │ │ │ │ ├── PopulationFilter.xaml │ │ │ │ └── PopulationFilter.xaml.cs │ │ │ ├── FilteringViewModel.cs │ │ │ └── ProgrammaticFilteringExample │ │ │ │ ├── ProgrammaticFiltering.xaml │ │ │ │ └── ProgrammaticFiltering.xaml.cs │ │ ├── FilteringUICategory │ │ │ └── CustomFilteringUIExample │ │ │ │ ├── CustomFilteringUI.xaml │ │ │ │ ├── CustomFilteringUI.xaml.cs │ │ │ │ ├── CustomOptionsTapCommand.cs │ │ │ │ ├── Player.cs │ │ │ │ ├── TemplateColumnFilteringUI.xaml │ │ │ │ ├── TemplateColumnFilteringUI.xaml.cs │ │ │ │ └── ViewModel.cs │ │ ├── Gender.cs │ │ ├── GroupingCategory │ │ │ ├── DelegateGroupDescriptorExample │ │ │ │ ├── DelegateGroupDescriptorGroups.xaml │ │ │ │ ├── DelegateGroupDescriptorGroups.xaml.cs │ │ │ │ ├── Person.cs │ │ │ │ └── ViewModel.cs │ │ │ ├── ProgrammaticGroupingExample │ │ │ │ ├── ProgrammaticGrouping.xaml │ │ │ │ └── ProgrammaticGrouping.xaml.cs │ │ │ └── PropertyGroupDescriptorExample │ │ │ │ ├── Person.cs │ │ │ │ ├── PropertyGroupDescriptor.xaml │ │ │ │ ├── PropertyGroupDescriptor.xaml.cs │ │ │ │ └── ViewModel.cs │ │ ├── LoadOnDemandCategory │ │ │ ├── LoadMoreDataCommandExample │ │ │ │ ├── CustomLoadMoreDataCommand.cs │ │ │ │ ├── LoadMoreDataCommand.xaml │ │ │ │ ├── LoadMoreDataCommand.xaml.cs │ │ │ │ └── LoadMoreDataCommandViewModel.cs │ │ │ ├── LoadOnDemandAutoTemplateExample │ │ │ │ ├── LoadOnDemandAutoTemplate.xaml │ │ │ │ ├── LoadOnDemandAutoTemplate.xaml.cs │ │ │ │ └── LoadOnDemandAutoTemplateViewModel.cs │ │ │ ├── LoadOnDemandEventExample │ │ │ │ ├── LoadOnDemandEvent.xaml │ │ │ │ ├── LoadOnDemandEvent.xaml.cs │ │ │ │ └── LoadOnDemandEventViewModel.cs │ │ │ ├── LoadOnDemandExample │ │ │ │ ├── LoadOnDemand.xaml │ │ │ │ ├── LoadOnDemand.xaml.cs │ │ │ │ └── LoadOnDemandViewModel.cs │ │ │ ├── LoadOnDemandRowStyleExample │ │ │ │ ├── LoadOnDemandRowStyle.xaml │ │ │ │ ├── LoadOnDemandRowStyle.xaml.cs │ │ │ │ └── LoadOnDemandRowStyleViewModel.cs │ │ │ └── LoadOnDemandRowTemplateExample │ │ │ │ ├── LoadOnDemandRowTemplate.xaml │ │ │ │ ├── LoadOnDemandRowTemplate.xaml.cs │ │ │ │ └── LoadOnDemandRowTemplateViewModel.cs │ │ ├── LocalizationCategory │ │ │ ├── City.cs │ │ │ ├── CustomLocalizationExample │ │ │ │ ├── CustomLocalization.xaml │ │ │ │ └── CustomLocalization.xaml.cs │ │ │ ├── CustomResourceManagerExample │ │ │ │ ├── CustomResourceManager.xaml │ │ │ │ └── CustomResourceManager.xaml.cs │ │ │ ├── LocalizationViewModel.cs │ │ │ └── Resources │ │ │ │ ├── DataGridResource.Designer.cs │ │ │ │ ├── DataGridResource.de.Designer.cs │ │ │ │ ├── DataGridResource.de.resx │ │ │ │ └── DataGridResource.resx │ │ ├── NestedPropertyCategory │ │ │ └── NestedPropertyExample │ │ │ │ ├── Address.cs │ │ │ │ ├── NestedProperty.xaml │ │ │ │ ├── NestedProperty.xaml.cs │ │ │ │ ├── Person.cs │ │ │ │ └── ViewModel.cs │ │ ├── Person.cs │ │ ├── SelectionCategory │ │ │ ├── Person.cs │ │ │ ├── ProgrammaticSelectionExample │ │ │ │ ├── ProgrammaticSelection.xaml │ │ │ │ └── ProgrammaticSelection.xaml.cs │ │ │ ├── UISelectionExample │ │ │ │ ├── GridUISelection.xaml │ │ │ │ └── GridUISelection.xaml.cs │ │ │ └── ViewModel.cs │ │ ├── SortingCategory │ │ │ └── ProgrammaticSortingExample │ │ │ │ ├── Country.cs │ │ │ │ ├── ProgrammaticSorting.xaml │ │ │ │ └── ProgrammaticSorting.xaml.cs │ │ └── StylingCategory │ │ │ ├── ColumnsStylingExample │ │ │ ├── ColumnsStyling.xaml │ │ │ ├── ColumnsStyling.xaml.cs │ │ │ └── Data.cs │ │ │ ├── DataGridStylingExample │ │ │ ├── Data.cs │ │ │ ├── DataGridStyling.xaml │ │ │ └── DataGridStyling.xaml.cs │ │ │ └── StyleSelectorExample │ │ │ ├── Data.cs │ │ │ ├── MyCellContentSelector.cs │ │ │ ├── MyCellDecorationSelector.cs │ │ │ ├── MyGroupSelector.cs │ │ │ ├── StyleSelector.xaml │ │ │ └── StyleSelector.xaml.cs │ ├── DatePickerControl │ │ ├── FeaturesCategory │ │ │ ├── CustomTemplatesExample │ │ │ │ ├── CustomTemplates.xaml │ │ │ │ └── CustomTemplates.xaml.cs │ │ │ ├── DefaultTemplatesExample │ │ │ │ ├── DefaultTemplates.xaml │ │ │ │ └── DefaultTemplates.xaml.cs │ │ │ ├── KeyFeaturesExample │ │ │ │ ├── KeyFeatures.xaml │ │ │ │ └── KeyFeatures.xaml.cs │ │ │ └── StylingExample │ │ │ │ ├── Styling.xaml │ │ │ │ └── Styling.xaml.cs │ │ └── GettingStartedCategory │ │ │ └── GettingStartedExample │ │ │ ├── DatePickerGettingStartedCSharp.cs │ │ │ ├── DatePickerGettingStartedXaml.xaml │ │ │ └── DatePickerGettingStartedXaml.xaml.cs │ ├── DateTimePickerControl │ │ ├── FeaturesCategory │ │ │ ├── CustomTemplateExample │ │ │ │ ├── CustomTemplate.xaml │ │ │ │ └── CustomTemplate.xaml.cs │ │ │ ├── KeyFeaturesExample │ │ │ │ ├── KeyFeatures.xaml │ │ │ │ └── KeyFeatures.xaml.cs │ │ │ ├── LocalizationExample │ │ │ │ ├── CustomDateTimePickerLocalizationManager.cs │ │ │ │ ├── Localization.xaml │ │ │ │ └── Localization.xaml.cs │ │ │ └── StyleExample │ │ │ │ ├── Style.xaml │ │ │ │ └── Style.xaml.cs │ │ └── GettingStartedCategory │ │ │ └── GettingStartedExample │ │ │ ├── DateTimePickerGettingStartedCSharp.cs │ │ │ ├── DateTimePickerGettingStartedXaml.xaml │ │ │ └── DateTimePickerGettingStartedXaml.xaml.cs │ ├── DockLayoutControl │ │ ├── FeaturesCategory │ │ │ ├── DockingFunctionalityExample │ │ │ │ ├── DockingFeature.xaml │ │ │ │ └── DockingFeature.xaml.cs │ │ │ ├── PositionElementsOneSideExample │ │ │ │ ├── PositionElementsOneSide.xaml │ │ │ │ └── PositionElementsOneSide.xaml.cs │ │ │ └── PositionLastElementExample │ │ │ │ ├── PositionLastElement.xaml │ │ │ │ └── PositionLastElement.xaml.cs │ │ └── GettingStartedCategory │ │ │ └── GettingStartedExample │ │ │ ├── DockLayoutGettingStartedCSharp.cs │ │ │ ├── DockLayoutGettingStartedXaml.xaml │ │ │ └── DockLayoutGettingStartedXaml.xaml.cs │ ├── EntryControl │ │ ├── FeaturesCategory │ │ │ ├── EventsExample │ │ │ │ ├── Events.xaml │ │ │ │ └── Events.xaml.cs │ │ │ ├── FontCustomizationExample │ │ │ │ ├── FontCustomization.xaml │ │ │ │ └── FontCustomization.xaml.cs │ │ │ ├── KeyFeaturesExample │ │ │ │ ├── KeyFeatures.xaml │ │ │ │ └── KeyFeatures.xaml.cs │ │ │ ├── MaxLengthExample │ │ │ │ ├── MaxLength.xaml │ │ │ │ └── MaxLength.xaml.cs │ │ │ ├── ReadOnlyExample │ │ │ │ ├── ReadOnly.xaml │ │ │ │ └── ReadOnly.xaml.cs │ │ │ ├── TextBindingExample │ │ │ │ ├── TextBinding.xaml │ │ │ │ ├── TextBinding.xaml.cs │ │ │ │ └── ViewModel.cs │ │ │ └── ThemeExample │ │ │ │ ├── Theme.xaml │ │ │ │ └── Theme.xaml.cs │ │ └── GettingStartedCategory │ │ │ └── GettingStartedExample │ │ │ ├── EntryGettingStartedXaml.xaml │ │ │ └── EntryGettingStartedXaml.xaml.cs │ ├── ExpanderControl │ │ ├── FeaturesCategory │ │ │ ├── BorderStylingExample │ │ │ │ ├── BorderStyling.xaml │ │ │ │ └── BorderStyling.xaml.cs │ │ │ ├── CustomExpanderHeaderExample │ │ │ │ ├── CustomExpanderHeader.xaml │ │ │ │ └── CustomExpanderHeader.xaml.cs │ │ │ └── ExpanderLocationExample │ │ │ │ ├── ExpanderHeaderLocation.xaml │ │ │ │ └── ExpanderHeaderLocation.xaml.cs │ │ └── GettingStartedCategory │ │ │ └── GettingStartedExample │ │ │ ├── ExpanderGettingStartedCSharp.cs │ │ │ ├── ExpanderGettingStartedXaml.xaml │ │ │ └── ExpanderGettingStartedXaml.xaml.cs │ ├── GaugeControl │ │ ├── CustomizationsCategory │ │ │ ├── AxisCustomizationExample │ │ │ │ ├── GaugeAxisCustomization.xaml │ │ │ │ └── GaugeAxisCustomization.xaml.cs │ │ │ ├── CustomNeedlesExample │ │ │ │ ├── CustomNeedlesXaml.xaml │ │ │ │ └── CustomNeedlesXaml.xaml.cs │ │ │ ├── CustomShapesExample │ │ │ │ ├── CustomShapes.xaml │ │ │ │ └── CustomShapes.xaml.cs │ │ │ └── SpeedometerExample │ │ │ │ ├── SpeedometerCSharp.cs │ │ │ │ ├── SpeedometerXaml.cs │ │ │ │ └── SpeedometerXaml.xaml │ │ ├── FeaturesCategory │ │ │ ├── AnimationsExample │ │ │ │ ├── Animations.xaml │ │ │ │ └── Animations.xaml.cs │ │ │ ├── BarIndicatorsExample │ │ │ │ ├── BarIndicators.xaml │ │ │ │ └── BarIndicators.xaml.cs │ │ │ ├── PositioningExample │ │ │ │ ├── Positioning.xaml │ │ │ │ └── Positioning.xaml.cs │ │ │ ├── RangesExample │ │ │ │ ├── Ranges.xaml │ │ │ │ └── Ranges.xaml.cs │ │ │ └── TextIndicatorsExample │ │ │ │ ├── TextIndicators.xaml │ │ │ │ └── TextIndicators.xaml.cs │ │ ├── GaugeTypesCategory │ │ │ ├── HorizontalGaugeExample │ │ │ │ ├── HorizontalGauge.xaml │ │ │ │ └── HorizontalGauge.xaml.cs │ │ │ ├── RadialGaugeExample │ │ │ │ ├── RadialGauge.xaml │ │ │ │ └── RadialGauge.xaml.cs │ │ │ └── VerticalGaugeExample │ │ │ │ ├── VerticalGauge.xaml │ │ │ │ └── VerticalGauge.xaml.cs │ │ └── GettingStartedCategory │ │ │ └── GettingStartedExample │ │ │ ├── GaugeGettingStartedCSharp.cs │ │ │ ├── GaugeGettingStartedXaml.xaml │ │ │ └── GaugeGettingStartedXaml.xaml.cs │ ├── ImageEditorControl │ │ ├── FeaturesCategory │ │ │ ├── BusyTemplateExample │ │ │ │ ├── BusyTemplate.xaml │ │ │ │ └── BusyTemplate.xaml.cs │ │ │ ├── CommandsExample │ │ │ │ ├── Commands.xaml │ │ │ │ └── Commands.xaml.cs │ │ │ ├── CustomCropToolbarItemExample │ │ │ │ ├── CustomCropToolbarItem.xaml │ │ │ │ └── CustomCropToolbarItem.xaml.cs │ │ │ ├── ImageEditorCustomToolbarExample │ │ │ │ ├── ImageEditorCustomToolbar.xaml │ │ │ │ └── ImageEditorCustomToolbar.xaml.cs │ │ │ ├── SaveImageExample │ │ │ │ ├── SaveImage.xaml │ │ │ │ └── SaveImage.xaml.cs │ │ │ └── ZoomLevelExample │ │ │ │ ├── ZoomLevel.xaml │ │ │ │ └── ZoomLevel.xaml.cs │ │ └── GettingStartedCategory │ │ │ └── GettingStartedExample │ │ │ ├── ImageEditorGettingStartedCSharp.cs │ │ │ ├── ImageEditorGettingStartedXaml.xaml │ │ │ └── ImageEditorGettingStartedXaml.xaml.cs │ ├── ListPickerControl │ │ ├── FeaturesCategory │ │ │ ├── City.cs │ │ │ ├── LoopingExample │ │ │ │ ├── Looping.xaml │ │ │ │ └── Looping.xaml.cs │ │ │ ├── StylingExample │ │ │ │ ├── Styling.xaml │ │ │ │ └── Styling.xaml.cs │ │ │ ├── TemplatesExample │ │ │ │ ├── Templates.xaml │ │ │ │ └── Templates.xaml.cs │ │ │ └── ViewModel.cs │ │ └── GettingStartedCategory │ │ │ └── GettingStartedExample │ │ │ ├── ListPickerGettingStartedCSharp.cs │ │ │ ├── ListPickerGettingStartedXaml.xaml │ │ │ ├── ListPickerGettingStartedXaml.xaml.cs │ │ │ ├── Person.cs │ │ │ └── ViewModel.cs │ ├── ListViewControl │ │ ├── BindableCollectionsCategory │ │ │ ├── FilterDescriptorsExample │ │ │ │ ├── Event.cs │ │ │ │ ├── FilterDescriptors.xaml │ │ │ │ ├── FilterDescriptors.xaml.cs │ │ │ │ └── ViewModel.cs │ │ │ ├── GroupDescriptorsExample │ │ │ │ ├── Event.cs │ │ │ │ ├── GroupDescriptors.xaml │ │ │ │ ├── GroupDescriptors.xaml.cs │ │ │ │ └── ViewModel.cs │ │ │ └── SortDescriptorsExample │ │ │ │ ├── Event.cs │ │ │ │ ├── SortDescriptors.xaml │ │ │ │ ├── SortDescriptors.xaml.cs │ │ │ │ └── ViewModel.cs │ │ ├── CellTypesCategory │ │ │ ├── TemplateCellExample │ │ │ │ ├── ListViewTemplateCellCSharp.cs │ │ │ │ ├── ListViewTemplateCellXaml.xaml │ │ │ │ ├── ListViewTemplateCellXaml.xaml.cs │ │ │ │ └── ViewModel.cs │ │ │ ├── TemplateCellSelectorExample │ │ │ │ ├── CustomItemTemplateSelector.cs │ │ │ │ ├── ListViewItemTemplateSelectorCSharp.cs │ │ │ │ ├── ListViewItemTemplateSelectorXaml.xaml │ │ │ │ ├── ListViewItemTemplateSelectorXaml.xaml.cs │ │ │ │ └── ViewModel.cs │ │ │ └── TextCellExample │ │ │ │ ├── ListViewTextCellCSharp.cs │ │ │ │ ├── ListViewTextCellXaml.xaml │ │ │ │ ├── ListViewTextCellXaml.xaml.cs │ │ │ │ └── ViewModel.cs │ │ ├── FeaturesCategory │ │ │ ├── CommandsExample │ │ │ │ ├── Commands.xaml │ │ │ │ ├── Commands.xaml.cs │ │ │ │ ├── ItemTappedUserCommand.cs │ │ │ │ └── ViewModel.cs │ │ │ ├── DataOperationsExample │ │ │ │ ├── DataOperations.xaml │ │ │ │ ├── DataOperations.xaml.cs │ │ │ │ ├── DataOperationsViewModel.cs │ │ │ │ └── GroupConverter.cs │ │ │ ├── FilteringExample │ │ │ │ ├── Filtering.xaml │ │ │ │ ├── Filtering.xaml.cs │ │ │ │ ├── Person.cs │ │ │ │ └── ViewModel.cs │ │ │ ├── FirstLookExample │ │ │ │ ├── FirstLook.xaml │ │ │ │ ├── FirstLook.xaml.cs │ │ │ │ └── FirstLookViewModel.cs │ │ │ ├── HeaderAndFooterExample │ │ │ │ ├── HeaderAndFooter.xaml │ │ │ │ ├── HeaderAndFooter.xaml.cs │ │ │ │ └── HeaderAndFooterViewModel.cs │ │ │ ├── Item.cs │ │ │ ├── ItemSpacingExample │ │ │ │ ├── ItemSpacing.xaml │ │ │ │ └── ItemSpacing.xaml.cs │ │ │ ├── ProgrammaticScrollingExample │ │ │ │ ├── ProgrammaticScrolling.xaml │ │ │ │ └── ProgrammaticScrolling.xaml.cs │ │ │ ├── SelectionExample │ │ │ │ ├── Selection.xaml │ │ │ │ ├── Selection.xaml.cs │ │ │ │ └── ViewModel.cs │ │ │ └── SortingExample │ │ │ │ ├── Person.cs │ │ │ │ ├── Sorting.xaml │ │ │ │ ├── Sorting.xaml.cs │ │ │ │ └── ViewModel.cs │ │ ├── GesturesCategory │ │ │ ├── CellSwipeInteractiveContentExample │ │ │ │ ├── ListViewCellSwipeInteractiveContent.cs │ │ │ │ ├── ListViewCellSwipeInteractiveContent.xaml │ │ │ │ └── ViewModel.cs │ │ │ ├── CellSwipeSwipeEventsExample │ │ │ │ ├── ListViewCellSwipeSwipeEvents.xaml │ │ │ │ ├── ListViewCellSwipeSwipeEvents.xaml.cs │ │ │ │ └── ViewModel.cs │ │ │ ├── PullToRefreshExample │ │ │ │ ├── PullToRefresh.xaml │ │ │ │ └── PullToRefresh.xaml.cs │ │ │ └── ReorderItemsExample │ │ │ │ ├── ReorderItems.xaml │ │ │ │ └── ReorderItems.xaml.cs │ │ ├── GettingStartedCategory │ │ │ └── GettingStartedExample │ │ │ │ ├── ListViewGettingStartedCSharp.cs │ │ │ │ ├── ListViewGettingStartedXaml.xaml │ │ │ │ ├── ListViewGettingStartedXaml.xaml.cs │ │ │ │ └── ViewModel.cs │ │ ├── GroupingCategory │ │ │ ├── DelegateGroupDescriptorExample │ │ │ │ ├── City.cs │ │ │ │ ├── DelegateGroupDescriptorGroups.xaml │ │ │ │ ├── DelegateGroupDescriptorGroups.xaml.cs │ │ │ │ └── ViewModel.cs │ │ │ ├── MultiLevelGroupingExample │ │ │ │ ├── City.cs │ │ │ │ ├── LevelToMarginConverter.cs │ │ │ │ ├── MultiLevelGroups.xaml │ │ │ │ ├── MultiLevelGroups.xaml.cs │ │ │ │ └── ViewModel.cs │ │ │ ├── PropertyGroupDescriptorExample │ │ │ │ ├── City.cs │ │ │ │ ├── PropertyGroupDescriptor.xaml │ │ │ │ ├── PropertyGroupDescriptor.xaml.cs │ │ │ │ └── ViewModel.cs │ │ │ └── ReorderInGroupedListViewExample │ │ │ │ ├── Event.cs │ │ │ │ ├── ReorderItemsInGroupedListView.xaml │ │ │ │ ├── ReorderItemsInGroupedListView.xaml.cs │ │ │ │ └── ViewModel.cs │ │ ├── LayoutsCategory │ │ │ ├── GridLayoutExample │ │ │ │ ├── GridLayout.xaml │ │ │ │ └── GridLayout.xaml.cs │ │ │ └── LinearLayoutExample │ │ │ │ ├── LinearLayout.xaml │ │ │ │ └── LinearLayout.xaml.cs │ │ ├── LoadOnDemandCategory │ │ │ ├── LoadOnDemandCollectionExample │ │ │ │ ├── ListViewModel.cs │ │ │ │ ├── LoadOnDemandCollection.xaml │ │ │ │ └── LoadOnDemandCollection.xaml.cs │ │ │ ├── LoadOnDemandCommandExample │ │ │ │ ├── ListViewModel.cs │ │ │ │ ├── LoadOnDemandCommand.xaml │ │ │ │ └── LoadOnDemandCommand.xaml.cs │ │ │ ├── LoadOnDemandCustomizationsExample │ │ │ │ ├── ListViewModel.cs │ │ │ │ ├── LoadOnDemandCustomizations.xaml │ │ │ │ └── LoadOnDemandCustomizations.xaml.cs │ │ │ └── LoadOnDemandEventExample │ │ │ │ ├── LoadOnDemandEvent.xaml │ │ │ │ └── LoadOnDemandEvent.xaml.cs │ │ └── StylingCategory │ │ │ ├── BindableItemStyleExample │ │ │ ├── BindableListViewItemStyles.xaml │ │ │ ├── BindableListViewItemStyles.xaml.cs │ │ │ ├── SourceItem.cs │ │ │ ├── StringToBorderLocationConverter.cs │ │ │ ├── StringToColorConverter.cs │ │ │ └── ViewModel.cs │ │ │ ├── BindablePressedItemStyleExample │ │ │ ├── BindablePressedItemStyle.xaml │ │ │ ├── BindablePressedItemStyle.xaml.cs │ │ │ ├── SourceItem.cs │ │ │ ├── StringToBorderLocationConverter.cs │ │ │ ├── StringToColorConverter.cs │ │ │ └── ViewModel.cs │ │ │ ├── BindableSelectedItemStyleExample │ │ │ ├── BindableSelectedItemStyle.xaml │ │ │ ├── BindableSelectedItemStyle.xaml.cs │ │ │ ├── SourceItem.cs │ │ │ ├── StringToBorderLocationConverter.cs │ │ │ ├── StringToColorConverter.cs │ │ │ └── ViewModel.cs │ │ │ ├── GroupHeaderStyleExample │ │ │ ├── City.cs │ │ │ ├── ListViewGroupHeaderStyle.xaml │ │ │ ├── ListViewGroupHeaderStyle.xaml.cs │ │ │ └── ViewModel.cs │ │ │ ├── ItemStylesExample │ │ │ ├── ListViewItemStylesCSharp.cs │ │ │ ├── ListViewItemStylesXaml.xaml │ │ │ ├── ListViewItemStylesXaml.xaml.cs │ │ │ └── Source.cs │ │ │ └── StyleSelectorExample │ │ │ ├── ExampleListViewStyleSelector.cs │ │ │ ├── ListViewItemStyleSelectorCSharp.cs │ │ │ ├── ListViewItemStyleSelectorXaml.xaml │ │ │ ├── ListViewItemStyleSelectorXaml.xaml.cs │ │ │ └── Source.cs │ ├── MapControl │ │ ├── FeaturesCategory │ │ │ ├── InteractionModeExample │ │ │ │ ├── InteractionMode.xaml │ │ │ │ └── InteractionMode.xaml.cs │ │ │ ├── LabelAttributeNameExample │ │ │ │ ├── LabelAttributeName.xaml │ │ │ │ └── LabelAttributeName.xaml.cs │ │ │ ├── ProgrammaticZoomExample │ │ │ │ ├── ProgrammaticZoom.xaml │ │ │ │ └── ProgrammaticZoom.xaml.cs │ │ │ ├── SetBestViewExample │ │ │ │ ├── SetBestView.xaml │ │ │ │ └── SetBestView.xaml.cs │ │ │ ├── ShapeLabelStyleExample │ │ │ │ ├── ShapeLabelStyle.xaml │ │ │ │ └── ShapeLabelStyle.xaml.cs │ │ │ ├── ShapeStyleExample │ │ │ │ ├── ShapeStyle.xaml │ │ │ │ └── ShapeStyle.xaml.cs │ │ │ └── ShapeStyleSelectorExample │ │ │ │ ├── PopulationShapeStyleSelector.cs │ │ │ │ ├── ShapeStyleSelector.xaml │ │ │ │ └── ShapeStyleSelector.xaml.cs │ │ ├── GettingStartedCategory │ │ │ └── GettingStartedExample │ │ │ │ ├── MapGettingStartedCSharp.cs │ │ │ │ ├── MapGettingStartedXaml.xaml │ │ │ │ └── MapGettingStartedXaml.xaml.cs │ │ ├── SelectionCategory │ │ │ └── ProgrammaticSelectionExample │ │ │ │ ├── ProgrammaticSelection.xaml │ │ │ │ └── ProgrammaticSelection.xaml.cs │ │ ├── world.dbf │ │ └── world.shp │ ├── MaskedInputControl │ │ ├── FeaturesCategory │ │ │ ├── CommandsExample │ │ │ │ ├── Commands.xaml │ │ │ │ ├── Commands.xaml.cs │ │ │ │ ├── CustomAfterTextMaskedCommand.cs │ │ │ │ └── CustomBeforeTextMaskedCommand.cs │ │ │ ├── ConfiguratorExample │ │ │ │ ├── Configurator.xaml │ │ │ │ └── Configurator.xaml.cs │ │ │ ├── EventsExample │ │ │ │ ├── Events.xaml │ │ │ │ └── Events.xaml.cs │ │ │ ├── RegexMaskExample │ │ │ │ ├── RegexMask.xaml │ │ │ │ └── RegexMask.xaml.cs │ │ │ ├── ThemeExample │ │ │ │ ├── Theme.xaml │ │ │ │ └── Theme.xaml.cs │ │ │ └── ValidationExample │ │ │ │ ├── Validation.xaml │ │ │ │ └── Validation.xaml.cs │ │ └── GettingStartedCategory │ │ │ └── GettingStartedExample │ │ │ ├── MaskedInputGettingStartedXaml.xaml │ │ │ └── MaskedInputGettingStartedXaml.xaml.cs │ ├── NumericInputControl │ │ ├── FeaturesCategory │ │ │ ├── BindingsExample │ │ │ │ ├── Bindings.xaml │ │ │ │ ├── Bindings.xaml.cs │ │ │ │ └── ViewModel.cs │ │ │ ├── CommandsExample │ │ │ │ ├── Commands.xaml │ │ │ │ ├── Commands.xaml.cs │ │ │ │ └── CommandsViewModel.cs │ │ │ ├── ControlTemplateExample │ │ │ │ ├── NumericControlTemplate.xaml │ │ │ │ └── NumericControlTemplate.xaml.cs │ │ │ ├── CustomStylesExample │ │ │ │ ├── CustomStyles.xaml │ │ │ │ └── CustomStyles.xaml.cs │ │ │ └── KeyFeaturesExample │ │ │ │ ├── KeyFeatures.xaml │ │ │ │ └── KeyFeatures.xaml.cs │ │ └── GettingStartedCategory │ │ │ └── GettingStartedExample │ │ │ ├── NumericInputGettingStartedCSharp.cs │ │ │ ├── NumericInputGettingStartedXaml.xaml │ │ │ └── NumericInputGettingStartedXaml.xaml.cs │ ├── PathControl │ │ ├── FeaturesCategory │ │ │ ├── MultiPathExample │ │ │ │ ├── MultiPath.xaml │ │ │ │ └── MultiPath.xaml.cs │ │ │ ├── PathGeometryExample │ │ │ │ ├── PathGeometry.xaml │ │ │ │ └── PathGeometry.xaml.cs │ │ │ └── StylingExample │ │ │ │ ├── Styling.xaml │ │ │ │ └── Styling.xaml.cs │ │ └── GettingStartedCategory │ │ │ └── GettingStartedExample │ │ │ ├── PathGettingStartedCSharp.cs │ │ │ ├── PathGettingStartedXaml.xaml │ │ │ └── PathGettingStartedXaml.xaml.cs │ ├── PdfViewerControl │ │ ├── FeaturesCategory │ │ │ ├── BusyIndicatorTemplateExample │ │ │ │ ├── BusyIndicatorTemplate.xaml │ │ │ │ └── BusyIndicatorTemplate.xaml.cs │ │ │ ├── CommandsExample │ │ │ │ ├── Commands.xaml │ │ │ │ └── Commands.xaml.cs │ │ │ ├── CustomOverflowButtonExample │ │ │ │ ├── CustomOverflowButton.xaml │ │ │ │ └── CustomOverflowButton.xaml.cs │ │ │ ├── CustomTextSearchExample │ │ │ │ ├── CustomTextSearch.xaml │ │ │ │ ├── CustomTextSearch.xaml.cs │ │ │ │ └── MultipleWordsSearchWorker.cs │ │ │ ├── CustomToolbarItemExample │ │ │ │ ├── CustomToolbarItem.xaml │ │ │ │ ├── CustomToolbarItem.xaml.cs │ │ │ │ └── ViewModel.cs │ │ │ ├── KeyFeaturesExample │ │ │ │ ├── KeyFeatures.xaml │ │ │ │ └── KeyFeatures.xaml.cs │ │ │ ├── LinkAnnotationExample │ │ │ │ ├── LinkAnnotation.xaml │ │ │ │ └── LinkAnnotation.xaml.cs │ │ │ ├── MvvmExample │ │ │ │ ├── Mvvm.xaml │ │ │ │ ├── Mvvm.xaml.cs │ │ │ │ └── MvvmViewModel.cs │ │ │ ├── PdfToolbarExample │ │ │ │ ├── PdfToolbar.xaml │ │ │ │ └── PdfToolbar.xaml.cs │ │ │ ├── SourceExceptionExample │ │ │ │ ├── SourceException.xaml │ │ │ │ └── SourceException.xaml.cs │ │ │ ├── TextSearchExample │ │ │ │ ├── TextSearch.xaml │ │ │ │ └── TextSearch.xaml.cs │ │ │ ├── TextSelectionExample │ │ │ │ ├── TextSelection.xaml │ │ │ │ ├── TextSelection.xaml.cs │ │ │ │ └── ViewModel.cs │ │ │ └── ViewportSettingsExample │ │ │ │ ├── ViewportSettings.xaml │ │ │ │ └── ViewportSettings.xaml.cs │ │ ├── GettingStartedCategory │ │ │ └── GettingStartedExample │ │ │ │ ├── PdfViewerGettingStartedXaml.xaml │ │ │ │ └── PdfViewerGettingStartedXaml.xaml.cs │ │ └── pdfviewer-overview.pdf │ ├── PopupControl │ │ ├── FeaturesCategory │ │ │ ├── ContentTemplateExample │ │ │ │ ├── ContentTemplate.xaml │ │ │ │ └── ContentTemplate.xaml.cs │ │ │ ├── ModalPopupExample │ │ │ │ ├── ModalPopup.xaml │ │ │ │ └── ModalPopup.xaml.cs │ │ │ └── PopupPlacementExample │ │ │ │ ├── PopupPlacement.xaml │ │ │ │ ├── PopupPlacement.xaml.cs │ │ │ │ └── PopupPlacementCSharp.cs │ │ └── GettingStartedCategory │ │ │ └── GettingStartedExample │ │ │ ├── PopupGettingStartedCSharp.cs │ │ │ ├── PopupGettingStartedXaml.xaml │ │ │ └── PopupGettingStartedXaml.xaml.cs │ ├── ProgressBarControl │ │ ├── EventsCategory │ │ │ └── EventsExample │ │ │ │ ├── Events.xaml │ │ │ │ └── Events.xaml.cs │ │ ├── FeaturesCategory │ │ │ ├── AnimationExample │ │ │ │ ├── Animation.xaml │ │ │ │ └── Animation.xaml.cs │ │ │ ├── ConfigurationExample │ │ │ │ ├── Configuration.xaml │ │ │ │ └── Configuration.xaml.cs │ │ │ └── IndeterminateModeExample │ │ │ │ ├── IndeterminateMode.xaml │ │ │ │ └── IndeterminateMode.xaml.cs │ │ ├── GettingStartedCategory │ │ │ └── GettingStartedExample │ │ │ │ ├── ProgressBarGettingStartedCSharp.cs │ │ │ │ ├── ProgressBarGettingStartedXaml.xaml │ │ │ │ └── ProgressBarGettingStartedXaml.xaml.cs │ │ └── StylingCategory │ │ │ └── StylingExample │ │ │ ├── Styling.xaml │ │ │ └── Styling.xaml.cs │ ├── RatingControl │ │ ├── FeaturesCategory │ │ │ ├── ConfiguratorExample │ │ │ │ ├── Configurator.xaml │ │ │ │ └── Configurator.xaml.cs │ │ │ ├── GeometriesExample │ │ │ │ ├── Geometries.xaml │ │ │ │ └── Geometries.xaml.cs │ │ │ ├── KeyFeaturesExample │ │ │ │ ├── KeyFeatures.xaml │ │ │ │ └── KeyFeatures.xaml.cs │ │ │ └── TemplatesExample │ │ │ │ ├── Templates.xaml │ │ │ │ └── Templates.xaml.cs │ │ └── GettingStartedCategory │ │ │ └── GettingStartedExample │ │ │ ├── RatingGettingStartedCSharp.cs │ │ │ ├── RatingGettingStartedXaml.xaml │ │ │ └── RatingGettingStartedXaml.xaml.cs │ ├── RichTextEditorControl │ │ ├── FeaturesCategory │ │ │ ├── CommandsExample │ │ │ │ ├── Commands.xaml │ │ │ │ └── Commands.xaml.cs │ │ │ ├── CustomContextMenuExample │ │ │ │ ├── CustomContextMenu.xaml │ │ │ │ ├── CustomContextMenu.xaml.cs │ │ │ │ └── ViewModel.cs │ │ │ ├── CustomImagePickerExample │ │ │ │ ├── CustomImagePicker.xaml │ │ │ │ └── CustomImagePicker.xaml.cs │ │ │ ├── HyperlinkErrorHandlingExample │ │ │ │ ├── HyperlinkErrorHandling.xaml │ │ │ │ └── HyperlinkErrorHandling.xaml.cs │ │ │ ├── InsertImagesExample │ │ │ │ ├── InsertImages.xaml │ │ │ │ └── InsertImages.xaml.cs │ │ │ ├── KeyFeaturesExample │ │ │ │ ├── KeyFeatures.xaml │ │ │ │ └── KeyFeatures.xaml.cs │ │ │ ├── PickYourHoliday.html │ │ │ ├── PickerPopupPlacementExample │ │ │ │ ├── PickerPopupPlacement.xaml │ │ │ │ └── PickerPopupPlacement.xaml.cs │ │ │ ├── ReadOnlyStateExample │ │ │ │ ├── ReadOnlyState.xaml │ │ │ │ └── ReadOnlyState.xaml.cs │ │ │ ├── RichTextEditorToolbarExample │ │ │ │ ├── RichTextEditorToolbar.xaml │ │ │ │ └── RichTextEditorToolbar.xaml.cs │ │ │ ├── StylingExample │ │ │ │ ├── Styling.xaml │ │ │ │ └── Styling.xaml.cs │ │ │ ├── emoji_cool.png │ │ │ ├── emoji_loughing.png │ │ │ ├── emoji_smile.png │ │ │ ├── emoji_wink.png │ │ │ ├── pick-image-demo.html │ │ │ └── richtexteditor-htmlsource.html │ │ └── GettingStartedCategory │ │ │ └── GettingStartedExample │ │ │ ├── RichTextEditorGettingStartedXaml.xaml │ │ │ └── RichTextEditorGettingStartedXaml.xaml.cs │ ├── SegmentControl │ │ ├── FeaturesCategory │ │ │ ├── CustomizeColorsExample │ │ │ │ ├── CustomizeColors.xaml │ │ │ │ └── CustomizeColors.xaml.cs │ │ │ ├── DisableSegmentExample │ │ │ │ ├── DisableSegment.xaml │ │ │ │ └── DisableSegment.xaml.cs │ │ │ └── SelectionExample │ │ │ │ ├── Selection.xaml │ │ │ │ ├── Selection.xaml.cs │ │ │ │ └── ViewModel.cs │ │ └── GettingStartedCategory │ │ │ └── GettingStartedExample │ │ │ ├── SegmentControlGettingStartedCSharp.cs │ │ │ ├── SegmentControlGettingStartedXaml.xaml │ │ │ └── SegmentControlGettingStartedXaml.xaml.cs │ ├── ShadowControl │ │ ├── FeaturesCategory │ │ │ └── KeyFeaturesExample │ │ │ │ ├── KeyFeatures.xaml │ │ │ │ └── KeyFeatures.xaml.cs │ │ └── GettingStartedCategory │ │ │ └── GettingStartedExample │ │ │ ├── ShadowGettingStartedXaml.xaml │ │ │ └── ShadowGettingStartedXaml.xaml.cs │ ├── SideDrawerControl │ │ ├── FeaturesCategory │ │ │ ├── LocationExample │ │ │ │ ├── Location.xaml │ │ │ │ └── Location.xaml.cs │ │ │ └── TransitionsExample │ │ │ │ ├── Transitions.xaml │ │ │ │ └── Transitions.xaml.cs │ │ └── GettingStartedCategory │ │ │ └── GettingStartedExample │ │ │ ├── SideDrawerGettingStartedCSharp.cs │ │ │ ├── SideDrawerGettingStartedXaml.xaml │ │ │ └── SideDrawerGettingStartedXaml.xaml.cs │ ├── SignaturePadControl │ │ ├── CommandsCategory │ │ │ └── ClearCommandExample │ │ │ │ ├── ClearCommand.xaml │ │ │ │ └── ClearCommand.xaml.cs │ │ ├── ConfigurationCategory │ │ │ └── ConfigurationExample │ │ │ │ ├── ConfigurationOptions.xaml │ │ │ │ └── ConfigurationOptions.xaml.cs │ │ ├── EventsCategory │ │ │ └── EventsExample │ │ │ │ ├── Events.xaml │ │ │ │ └── Events.xaml.cs │ │ ├── GettingStartedCategory │ │ │ └── GettingStartedExample │ │ │ │ ├── SignaturePadGettingStartedCSharp.cs │ │ │ │ ├── SignaturePadGettingStartedXaml.xaml │ │ │ │ └── SignaturePadGettingStartedXaml.xaml.cs │ │ └── SavingOptionsCategory │ │ │ └── SavingOptionsExample │ │ │ ├── SavingImage.xaml │ │ │ └── SavingImage.xaml.cs │ ├── SlideViewControl │ │ ├── FeaturesCategory │ │ │ ├── CommandsExample │ │ │ │ ├── Commands.xaml │ │ │ │ ├── Commands.xaml.cs │ │ │ │ └── CustomSlideViewCommand.cs │ │ │ ├── CustomIndicatorsExample │ │ │ │ ├── CustomIndicators.xaml │ │ │ │ └── CustomIndicators.xaml.cs │ │ │ ├── EventsExample │ │ │ │ ├── Events.xaml │ │ │ │ └── Events.xaml.cs │ │ │ ├── ItemTemplateExample │ │ │ │ ├── ItemTemplate.xaml │ │ │ │ ├── ItemTemplate.xaml.cs │ │ │ │ ├── MyItem.cs │ │ │ │ └── ViewModel.cs │ │ │ └── ItemTemplateSelectorExample │ │ │ │ ├── ItemTemplateSelector.xaml │ │ │ │ ├── ItemTemplateSelector.xaml.cs │ │ │ │ ├── Product.cs │ │ │ │ ├── SlideViewItemTemplateSelector.cs │ │ │ │ └── ViewModel.cs │ │ └── GettingStartedCategory │ │ │ └── GettingStartedExample │ │ │ ├── SlideViewGettingStartedXaml.xaml │ │ │ └── SlideViewGettingStartedXaml.xaml.cs │ ├── SpreadStreamProcessingControl │ │ ├── GettingStartedCategory │ │ │ ├── Book.cs │ │ │ ├── GettingStartedExample │ │ │ │ ├── GettingStartedViewModel.cs │ │ │ │ ├── SpreadStreamProcessingGettingStartedCSharp.cs │ │ │ │ ├── SpreadStreamProcessingGettingStartedXaml.xaml │ │ │ │ └── SpreadStreamProcessingGettingStartedXaml.xaml.cs │ │ │ ├── PredefinedColors.cs │ │ │ └── StylingExample │ │ │ │ ├── Styling.xaml │ │ │ │ ├── Styling.xaml.cs │ │ │ │ └── StylingViewModel.cs │ │ └── IXlsxFileViewer.cs │ ├── TabViewControl │ │ ├── FeaturesCategory │ │ │ ├── HeaderCustomTemplateExample │ │ │ │ ├── TabViewHeaderCustomTemplate.xaml │ │ │ │ └── TabViewHeaderCustomTemplate.xaml.cs │ │ │ ├── HeaderExample │ │ │ │ ├── TabViewHeader.xaml │ │ │ │ └── TabViewHeader.xaml.cs │ │ │ ├── ItemExample │ │ │ │ ├── TabViewItem.xaml │ │ │ │ └── TabViewItem.xaml.cs │ │ │ ├── ItemsSourceExample │ │ │ │ ├── NavItem.cs │ │ │ │ ├── TabViewItemsSource.xaml │ │ │ │ ├── TabViewItemsSource.xaml.cs │ │ │ │ └── TabViewUtilities.cs │ │ │ └── SelectionExample │ │ │ │ └── Selection.cs │ │ └── GettingStartedCategory │ │ │ └── GettingStartedExample │ │ │ ├── TabViewGettingStartedCSharp.cs │ │ │ ├── TabViewGettingStartedXaml.xaml │ │ │ └── TabViewGettingStartedXaml.xaml.cs │ ├── TemplatedPickerControl │ │ ├── FeaturesCategory │ │ │ ├── KeyFeaturesExample │ │ │ │ ├── KeyFeatures.xaml │ │ │ │ └── KeyFeatures.xaml.cs │ │ │ └── StylingExample │ │ │ │ ├── Styling.xaml │ │ │ │ └── Styling.xaml.cs │ │ └── GettingStartedCategory │ │ │ └── GettingStartedExample │ │ │ ├── City.cs │ │ │ ├── Country.cs │ │ │ ├── TemplatedPickerGettingStartedCSharp.cs │ │ │ ├── TemplatedPickerGettingStartedXaml.xaml │ │ │ ├── TemplatedPickerGettingStartedXaml.xaml.cs │ │ │ └── ViewModel.cs │ ├── TimePickerControl │ │ ├── FeaturesCategory │ │ │ ├── CustomTemplatesExample │ │ │ │ ├── CustomTemplates.xaml │ │ │ │ └── CustomTemplates.xaml.cs │ │ │ ├── KeyFeaturesExample │ │ │ │ ├── KeyFeatures.xaml │ │ │ │ └── KeyFeatures.xaml.cs │ │ │ └── StylingExample │ │ │ │ ├── Styling.xaml │ │ │ │ └── Styling.xaml.cs │ │ └── GettingStartedCategory │ │ │ └── GettingStartedExample │ │ │ ├── TimePickerGettingStartedCSharp.cs │ │ │ ├── TimePickerGettingStartedXaml.xaml │ │ │ └── TimePickerGettingStartedXaml.xaml.cs │ ├── TimeSpanPickerControl │ │ ├── FeaturesCategory │ │ │ ├── CustomTemplatesExample │ │ │ │ ├── CustomTemplates.xaml │ │ │ │ └── CustomTemplates.xaml.cs │ │ │ ├── KeyFeaturesExample │ │ │ │ ├── KeyFeatures.xaml │ │ │ │ └── KeyFeatures.xaml.cs │ │ │ └── StylingExample │ │ │ │ ├── Styling.xaml │ │ │ │ └── Styling.xaml.cs │ │ └── GettingStartedCategory │ │ │ └── GettingStartedExample │ │ │ ├── TimeSpanPickerGettingStartedCSharp.cs │ │ │ ├── TimeSpanPickerGettingStartedXaml.xaml │ │ │ └── TimeSpanPickerGettingStartedXaml.xaml.cs │ ├── TreeViewControl │ │ ├── FeaturesCategory │ │ │ ├── CheckBoxesExample │ │ │ │ ├── TreeViewCheckboxes.xaml │ │ │ │ └── TreeViewCheckboxes.xaml.cs │ │ │ ├── CommandsExample │ │ │ │ ├── TreeViewCommands.xaml │ │ │ │ ├── TreeViewCommands.xaml.cs │ │ │ │ └── ViewModel.cs │ │ │ ├── ExpandCollapseExample │ │ │ │ ├── TreeViewExpandCollapse.xaml │ │ │ │ └── TreeViewExpandCollapse.xaml.cs │ │ │ ├── Item.cs │ │ │ ├── ItemTemplateExample │ │ │ │ ├── City.cs │ │ │ │ ├── Country.cs │ │ │ │ ├── ImageSourceConverter.cs │ │ │ │ ├── ItemTemplate.xaml │ │ │ │ ├── ItemTemplate.xaml.cs │ │ │ │ └── ViewModel.cs │ │ │ ├── LoadingItemsExample │ │ │ │ ├── Category.cs │ │ │ │ ├── TreeViewLoadOnDemand.xaml │ │ │ │ ├── TreeViewLoadOnDemand.xaml.cs │ │ │ │ └── ViewModel.cs │ │ │ ├── PrecheckedItemsExample │ │ │ │ ├── BusinessItem.cs │ │ │ │ ├── TreeViewBehavior.cs │ │ │ │ ├── TreeViewPrecheckedItems.xaml │ │ │ │ ├── TreeViewPrecheckedItems.xaml.cs │ │ │ │ └── ViewModel.cs │ │ │ ├── ProgrammaticScrollingExample │ │ │ │ ├── ProgrammaticScrolling.xaml │ │ │ │ └── ProgrammaticScrolling.xaml.cs │ │ │ └── ViewModel.cs │ │ ├── GettingStartedCategory │ │ │ └── GettingStartedExample │ │ │ │ ├── Item.cs │ │ │ │ ├── TreeViewGettingStartedXaml.xaml │ │ │ │ ├── TreeViewGettingStartedXaml.xaml.cs │ │ │ │ └── ViewModel.cs │ │ └── StylingCategory │ │ │ ├── Item.cs │ │ │ ├── ItemStyleExample │ │ │ ├── TreeViewItemStyle.xaml │ │ │ └── TreeViewItemStyle.xaml.cs │ │ │ ├── ItemStyleSelectorExample │ │ │ ├── ExampleStyleSelector.cs │ │ │ ├── TreeViewItemStyleSelector.xaml │ │ │ └── TreeViewItemStyleSelector.xaml.cs │ │ │ ├── ThemingExample │ │ │ ├── TreeViewTheming.xaml │ │ │ └── TreeViewTheming.xaml.cs │ │ │ └── ViewModel.cs │ └── ZipLibraryControl │ │ ├── EncryptionCategory │ │ └── EncryptionExample │ │ │ ├── ViewModel.cs │ │ │ ├── ZipLibraryEncryptionCSharp.cs │ │ │ ├── ZipLibraryEncryptionXaml.xaml │ │ │ └── ZipLibraryEncryptionXaml.xaml.cs │ │ ├── GettingStartedCategory │ │ └── GettingStartedExample │ │ │ ├── ViewModel.cs │ │ │ ├── ZipLibraryGettingStartedCSharp.cs │ │ │ ├── ZipLibraryGettingStartedXaml.xaml │ │ │ └── ZipLibraryGettingStartedXaml.xaml.cs │ │ └── Resources │ │ ├── LoremIpsum.txt │ │ └── LoremIpsum.txt.zip │ ├── Helpers │ └── PermissionsHelper.cs │ ├── Images │ ├── cat4.jpeg │ ├── custom_toolbar.png │ ├── delete.png │ ├── fail.png │ ├── favourite.png │ ├── success.png │ └── unread.png │ ├── LocalizationResources │ └── DefaultResources.resx │ ├── Properties │ └── AssemblyInfo.cs │ ├── SDKBrowser.csproj │ ├── Services │ ├── BackdoorService.cs │ ├── ConfigurationService.cs │ ├── ExampleService.cs │ ├── IBackdoorService.cs │ ├── IConfigurationService.cs │ ├── IExampleService.cs │ ├── INavigationService.cs │ ├── ISettingsService.cs │ ├── NavigationService.cs │ └── SettingsService.cs │ ├── ViewModels │ ├── CategoryViewModel.cs │ ├── ControlViewModel.cs │ ├── ExampleViewModel.cs │ ├── HomeViewModel.cs │ ├── InfoViewModel.cs │ ├── PageViewModel.cs │ ├── SearchViewModel.cs │ ├── SplashViewModel.cs │ └── ViewModelBase.cs │ ├── Views │ ├── CategoryView.xaml │ ├── CategoryView.xaml.cs │ ├── ControlView.xaml │ ├── ControlView.xaml.cs │ ├── ExampleView.xaml │ ├── ExampleView.xaml.cs │ ├── HomeView.xaml │ ├── HomeView.xaml.cs │ ├── InfoView.xaml │ ├── InfoView.xaml.cs │ ├── SplashView.xaml │ ├── SplashView.xaml.cs │ └── ViewBase.cs │ ├── app.config │ └── config.xml ├── Telerik-UI-For-Xamarin-SDK-Image.png └── config.targets /XamarinSDK/SDKBrowser/SDKBrowser.Android/Assets/Fonts/Roboto-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.Android/Assets/Fonts/Roboto-Black.ttf -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.Android/Assets/Fonts/Roboto-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.Android/Assets/Fonts/Roboto-Bold.ttf -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.Android/Assets/Fonts/Roboto-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.Android/Assets/Fonts/Roboto-BoldItalic.ttf -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.Android/Assets/Fonts/Roboto-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.Android/Assets/Fonts/Roboto-Italic.ttf -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.Android/Assets/Fonts/Roboto-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.Android/Assets/Fonts/Roboto-Light.ttf -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.Android/Assets/Fonts/Roboto-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.Android/Assets/Fonts/Roboto-Medium.ttf -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.Android/Assets/Fonts/Roboto-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.Android/Assets/Fonts/Roboto-Regular.ttf -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.Android/Assets/Fonts/Roboto-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.Android/Assets/Fonts/Roboto-Thin.ttf -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.Android/Assets/Fonts/Roboto-ThinItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.Android/Assets/Fonts/Roboto-ThinItalic.ttf -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.Android/Resources/Drawable/Checkbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.Android/Resources/Drawable/Checkbox.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.Android/Resources/Drawable/Icon-old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.Android/Resources/Drawable/Icon-old.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.Android/Resources/Drawable/available.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.Android/Resources/Drawable/available.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.Android/Resources/Drawable/available32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.Android/Resources/Drawable/available32.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.Android/Resources/Drawable/away.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.Android/Resources/Drawable/away.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.Android/Resources/Drawable/away32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.Android/Resources/Drawable/away32.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.Android/Resources/Drawable/busy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.Android/Resources/Drawable/busy.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.Android/Resources/Drawable/busy32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.Android/Resources/Drawable/busy32.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.Android/Resources/Drawable/cat4.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.Android/Resources/Drawable/cat4.jpeg -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.Android/Resources/Drawable/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.Android/Resources/Drawable/image.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.Android/Resources/Drawable/sampleBot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.Android/Resources/Drawable/sampleBot.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.Android/Resources/drawable-hdpi/Badge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.Android/Resources/drawable-hdpi/Badge.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.Android/Resources/drawable-hdpi/Border.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.Android/Resources/drawable-hdpi/Border.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.Android/Resources/drawable-hdpi/Bullet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.Android/Resources/drawable-hdpi/Bullet.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.Android/Resources/drawable-hdpi/Button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.Android/Resources/drawable-hdpi/Button.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.Android/Resources/drawable-hdpi/Chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.Android/Resources/drawable-hdpi/Chart.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.Android/Resources/drawable-hdpi/ChatUI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.Android/Resources/drawable-hdpi/ChatUI.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.Android/Resources/drawable-hdpi/Entry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.Android/Resources/drawable-hdpi/Entry.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.Android/Resources/drawable-hdpi/Gauge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.Android/Resources/drawable-hdpi/Gauge.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.Android/Resources/drawable-hdpi/Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.Android/Resources/drawable-hdpi/Logo.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.Android/Resources/drawable-hdpi/Map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.Android/Resources/drawable-hdpi/Map.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.Android/Resources/drawable-hdpi/Path.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.Android/Resources/drawable-hdpi/Path.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.Android/Resources/drawable-hdpi/Popup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.Android/Resources/drawable-hdpi/Popup.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.Android/Resources/drawable-hdpi/Rating.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.Android/Resources/drawable-hdpi/Rating.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.Android/Resources/drawable-hdpi/Shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.Android/Resources/drawable-hdpi/Shadow.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.Android/Resources/drawable-hdpi/Splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.Android/Resources/drawable-hdpi/Splash.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.Android/Resources/drawable-hdpi/Zip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.Android/Resources/drawable-hdpi/Zip.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.Android/Resources/drawable-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.Android/Resources/drawable-hdpi/icon.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.Android/Resources/drawable-mdpi/Border.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.Android/Resources/drawable-mdpi/Border.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.Android/Resources/drawable-mdpi/Bullet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.Android/Resources/drawable-mdpi/Bullet.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.Android/Resources/drawable-mdpi/Button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.Android/Resources/drawable-mdpi/Button.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.Android/Resources/drawable-mdpi/Chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.Android/Resources/drawable-mdpi/Chart.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.Android/Resources/drawable-mdpi/Entry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.Android/Resources/drawable-mdpi/Entry.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.Android/Resources/drawable-mdpi/Gauge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.Android/Resources/drawable-mdpi/Gauge.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.Android/Resources/drawable-mdpi/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.Android/Resources/drawable-mdpi/Icon.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.Android/Resources/drawable-mdpi/Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.Android/Resources/drawable-mdpi/Logo.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.Android/Resources/drawable-mdpi/Map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.Android/Resources/drawable-mdpi/Map.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.Android/Resources/drawable-mdpi/Path.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.Android/Resources/drawable-mdpi/Path.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.Android/Resources/drawable-mdpi/Popup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.Android/Resources/drawable-mdpi/Popup.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.Android/Resources/drawable-mdpi/Rating.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.Android/Resources/drawable-mdpi/Rating.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.Android/Resources/drawable-mdpi/Splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.Android/Resources/drawable-mdpi/Splash.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.Android/Resources/drawable-mdpi/Zip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.Android/Resources/drawable-mdpi/Zip.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.Android/Resources/drawable-xhdpi/Badge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.Android/Resources/drawable-xhdpi/Badge.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.Android/Resources/drawable-xhdpi/Chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.Android/Resources/drawable-xhdpi/Chart.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.Android/Resources/drawable-xhdpi/Entry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.Android/Resources/drawable-xhdpi/Entry.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.Android/Resources/drawable-xhdpi/Map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.Android/Resources/drawable-xhdpi/Map.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.Android/Resources/drawable-xhdpi/Zip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.Android/Resources/drawable-xhdpi/Zip.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.Android/Resources/mipmap-hdpi/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.Android/Resources/mipmap-hdpi/Icon.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.Android/Resources/mipmap-mdpi/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.Android/Resources/mipmap-mdpi/Icon.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.Android/Resources/mipmap-xhdpi/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.Android/Resources/mipmap-xhdpi/Icon.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.Android/Resources/mipmap-xxhdpi/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.Android/Resources/mipmap-xxhdpi/Icon.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.Android/Resources/values/colors.xml: -------------------------------------------------------------------------------- 1 |  2 | 3 | #5CE500 4 | -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Accordion.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Accordion.scale-100.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Accordion.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Accordion.scale-125.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Accordion.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Accordion.scale-150.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Accordion.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Accordion.scale-200.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Accordion.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Accordion.scale-400.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/AutoComplete.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/AutoComplete.scale-100.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/AutoComplete.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/AutoComplete.scale-125.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/AutoComplete.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/AutoComplete.scale-150.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/AutoComplete.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/AutoComplete.scale-200.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/AutoComplete.scale-300.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/AutoComplete.scale-300.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/AutoComplete.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/AutoComplete.scale-400.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Badge.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Badge.scale-100.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Badge.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Badge.scale-125.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Badge.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Badge.scale-150.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Badge.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Badge.scale-200.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Badge.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Badge.scale-400.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Barcode.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Barcode.scale-100.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Barcode.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Barcode.scale-150.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Barcode.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Barcode.scale-200.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Barcode.scale-300.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Barcode.scale-300.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Border.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Border.scale-100.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Border.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Border.scale-125.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Border.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Border.scale-150.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Border.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Border.scale-200.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Border.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Border.scale-400.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Bullet.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Bullet.scale-100.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Bullet.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Bullet.scale-125.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Bullet.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Bullet.scale-150.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Bullet.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Bullet.scale-200.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Bullet.scale-300.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Bullet.scale-300.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Bullet.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Bullet.scale-400.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/BusyIndicator.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/BusyIndicator.scale-100.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/BusyIndicator.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/BusyIndicator.scale-125.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/BusyIndicator.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/BusyIndicator.scale-150.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/BusyIndicator.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/BusyIndicator.scale-200.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/BusyIndicator.scale-300.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/BusyIndicator.scale-300.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/BusyIndicator.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/BusyIndicator.scale-400.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Button.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Button.scale-100.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Button.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Button.scale-125.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Button.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Button.scale-150.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Button.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Button.scale-200.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Button.scale-300.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Button.scale-300.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Button.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Button.scale-400.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Calendar.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Calendar.scale-100.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Calendar.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Calendar.scale-125.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Calendar.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Calendar.scale-150.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Calendar.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Calendar.scale-200.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Calendar.scale-300.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Calendar.scale-300.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Calendar.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Calendar.scale-400.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Chart.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Chart.scale-100.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Chart.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Chart.scale-125.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Chart.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Chart.scale-150.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Chart.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Chart.scale-200.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Chart.scale-300.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Chart.scale-300.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Chart.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Chart.scale-400.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/ChatBackground.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/ChatBackground.jpg -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/ChatUI.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/ChatUI.scale-100.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/ChatUI.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/ChatUI.scale-125.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/ChatUI.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/ChatUI.scale-150.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/ChatUI.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/ChatUI.scale-200.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/ChatUI.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/ChatUI.scale-400.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Checkbox.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Checkbox.scale-100.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Checkbox.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Checkbox.scale-125.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Checkbox.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Checkbox.scale-150.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Checkbox.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Checkbox.scale-200.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Checkbox.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Checkbox.scale-400.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/ComboBox.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/ComboBox.scale-100.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/ComboBox.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/ComboBox.scale-125.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/ComboBox.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/ComboBox.scale-150.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/ComboBox.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/ComboBox.scale-200.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/ComboBox.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/ComboBox.scale-400.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/DataForm.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/DataForm.scale-100.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/DataForm.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/DataForm.scale-125.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/DataForm.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/DataForm.scale-150.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/DataForm.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/DataForm.scale-200.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/DataForm.scale-300.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/DataForm.scale-300.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/DataForm.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/DataForm.scale-400.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/DataGrid.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/DataGrid.scale-100.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/DataGrid.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/DataGrid.scale-125.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/DataGrid.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/DataGrid.scale-150.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/DataGrid.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/DataGrid.scale-200.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/DataGrid.scale-300.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/DataGrid.scale-300.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/DataGrid.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/DataGrid.scale-400.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/DatePicker.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/DatePicker.scale-100.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/DatePicker.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/DatePicker.scale-125.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/DatePicker.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/DatePicker.scale-150.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/DatePicker.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/DatePicker.scale-200.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/DatePicker.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/DatePicker.scale-400.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/DateTimePicker.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/DateTimePicker.scale-100.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/DateTimePicker.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/DateTimePicker.scale-125.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/DateTimePicker.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/DateTimePicker.scale-150.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/DateTimePicker.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/DateTimePicker.scale-200.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/DateTimePicker.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/DateTimePicker.scale-400.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/DockLayout.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/DockLayout.scale-100.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/DockLayout.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/DockLayout.scale-125.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/DockLayout.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/DockLayout.scale-150.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/DockLayout.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/DockLayout.scale-200.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/DockLayout.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/DockLayout.scale-400.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Entry.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Entry.scale-100.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Entry.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Entry.scale-125.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Entry.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Entry.scale-150.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Entry.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Entry.scale-200.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Entry.scale-300.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Entry.scale-300.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Entry.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Entry.scale-400.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Expander.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Expander.scale-100.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Expander.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Expander.scale-125.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Expander.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Expander.scale-150.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Expander.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Expander.scale-200.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Expander.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Expander.scale-400.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Fonts/segoeui.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Fonts/segoeui.ttf -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Fonts/segoeuib.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Fonts/segoeuib.ttf -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Fonts/segoeuii.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Fonts/segoeuii.ttf -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Fonts/segoeuil.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Fonts/segoeuil.ttf -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Fonts/segoeuisl.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Fonts/segoeuisl.ttf -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Fonts/segoeuiz.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Fonts/segoeuiz.ttf -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Fonts/seguibl.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Fonts/seguibl.ttf -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Fonts/seguibli.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Fonts/seguibli.ttf -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Fonts/seguili.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Fonts/seguili.ttf -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Fonts/seguisb.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Fonts/seguisb.ttf -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Fonts/seguisbi.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Fonts/seguisbi.ttf -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Fonts/seguisli.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Fonts/seguisli.ttf -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Fonts/telerikfontexamples.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Fonts/telerikfontexamples.ttf -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Gauge.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Gauge.scale-100.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Gauge.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Gauge.scale-125.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Gauge.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Gauge.scale-150.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Gauge.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Gauge.scale-200.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Gauge.scale-300.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Gauge.scale-300.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Gauge.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Gauge.scale-400.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/HamburgerMenu.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/HamburgerMenu.scale-100.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/HamburgerMenu.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/HamburgerMenu.scale-125.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/HamburgerMenu.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/HamburgerMenu.scale-150.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/HamburgerMenu.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/HamburgerMenu.scale-200.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/HamburgerMenu.scale-300.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/HamburgerMenu.scale-300.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/HamburgerMenu.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/HamburgerMenu.scale-400.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/ImageEditor.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/ImageEditor.scale-100.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/ImageEditor.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/ImageEditor.scale-125.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/ImageEditor.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/ImageEditor.scale-150.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/ImageEditor.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/ImageEditor.scale-200.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/ImageEditor.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/ImageEditor.scale-400.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/ListPicker.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/ListPicker.scale-100.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/ListPicker.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/ListPicker.scale-125.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/ListPicker.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/ListPicker.scale-150.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/ListPicker.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/ListPicker.scale-200.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/ListPicker.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/ListPicker.scale-400.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/ListView.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/ListView.scale-100.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/ListView.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/ListView.scale-125.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/ListView.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/ListView.scale-150.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/ListView.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/ListView.scale-200.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/ListView.scale-300.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/ListView.scale-300.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/ListView.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/ListView.scale-400.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Logo.scale-100.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Logo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Logo.scale-125.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Logo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Logo.scale-150.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Logo.scale-200.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Logo.scale-300.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Logo.scale-300.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Logo.scale-400.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Map.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Map.scale-100.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Map.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Map.scale-125.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Map.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Map.scale-150.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Map.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Map.scale-200.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Map.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Map.scale-400.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/MaskedInput.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/MaskedInput.scale-100.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/MaskedInput.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/MaskedInput.scale-125.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/MaskedInput.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/MaskedInput.scale-150.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/MaskedInput.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/MaskedInput.scale-200.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/MaskedInput.scale-300.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/MaskedInput.scale-300.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/MaskedInput.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/MaskedInput.scale-400.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/NumericInput.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/NumericInput.scale-100.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/NumericInput.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/NumericInput.scale-125.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/NumericInput.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/NumericInput.scale-150.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/NumericInput.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/NumericInput.scale-200.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/NumericInput.scale-300.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/NumericInput.scale-300.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/NumericInput.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/NumericInput.scale-400.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Path.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Path.scale-100.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Path.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Path.scale-125.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Path.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Path.scale-150.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Path.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Path.scale-200.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Path.scale-300.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Path.scale-300.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Path.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Path.scale-400.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/PdfViewer.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/PdfViewer.scale-100.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/PdfViewer.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/PdfViewer.scale-125.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/PdfViewer.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/PdfViewer.scale-150.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/PdfViewer.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/PdfViewer.scale-200.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/PdfViewer.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/PdfViewer.scale-400.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Popup.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Popup.scale-100.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Popup.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Popup.scale-125.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Popup.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Popup.scale-150.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Popup.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Popup.scale-200.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Popup.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Popup.scale-400.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/ProgressBar.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/ProgressBar.scale-100.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/ProgressBar.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/ProgressBar.scale-125.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/ProgressBar.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/ProgressBar.scale-150.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/ProgressBar.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/ProgressBar.scale-200.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/ProgressBar.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/ProgressBar.scale-400.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Rating.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Rating.scale-100.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Rating.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Rating.scale-125.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Rating.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Rating.scale-150.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Rating.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Rating.scale-200.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Rating.scale-300.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Rating.scale-300.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Rating.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Rating.scale-400.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/RichTextEditor.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/RichTextEditor.scale-100.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/RichTextEditor.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/RichTextEditor.scale-125.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/RichTextEditor.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/RichTextEditor.scale-150.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/RichTextEditor.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/RichTextEditor.scale-200.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/RichTextEditor.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/RichTextEditor.scale-400.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Segmented.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Segmented.scale-100.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Segmented.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Segmented.scale-125.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Segmented.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Segmented.scale-150.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Segmented.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Segmented.scale-200.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Segmented.scale-300.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Segmented.scale-300.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Segmented.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Segmented.scale-400.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Shadow.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Shadow.scale-125.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Shadow.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Shadow.scale-150.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Shadow.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Shadow.scale-200.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Shadow.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Shadow.scale-400.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/SideDrawer.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/SideDrawer.scale-100.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/SideDrawer.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/SideDrawer.scale-125.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/SideDrawer.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/SideDrawer.scale-150.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/SideDrawer.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/SideDrawer.scale-200.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/SideDrawer.scale-300.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/SideDrawer.scale-300.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/SideDrawer.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/SideDrawer.scale-400.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/SignaturePad.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/SignaturePad.scale-100.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/SignaturePad.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/SignaturePad.scale-125.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/SignaturePad.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/SignaturePad.scale-150.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/SignaturePad.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/SignaturePad.scale-200.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/SignaturePad.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/SignaturePad.scale-400.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/SlideView.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/SlideView.scale-100.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/SlideView.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/SlideView.scale-125.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/SlideView.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/SlideView.scale-150.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/SlideView.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/SlideView.scale-200.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/SlideView.scale-300.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/SlideView.scale-300.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/SlideView.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/SlideView.scale-400.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Splash.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Splash.scale-100.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Splash.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Splash.scale-125.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Splash.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Splash.scale-150.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Splash.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Splash.scale-200.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Splash.scale-300.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Splash.scale-300.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Splash.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Splash.scale-400.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/SplashScreen.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/SplashScreen.scale-100.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/SplashScreen.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/SplashScreen.scale-125.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/SplashScreen.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/SplashScreen.scale-150.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/SplashScreen.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/SplashScreen.scale-400.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Spreadsheet.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Spreadsheet.scale-100.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Spreadsheet.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Spreadsheet.scale-125.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Spreadsheet.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Spreadsheet.scale-150.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Spreadsheet.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Spreadsheet.scale-200.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Spreadsheet.scale-300.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Spreadsheet.scale-300.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Spreadsheet.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Spreadsheet.scale-400.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Square44x44Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Square44x44Logo.scale-100.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Square44x44Logo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Square44x44Logo.scale-125.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Square44x44Logo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Square44x44Logo.scale-150.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Square44x44Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Square44x44Logo.scale-400.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Square71x71Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Square71x71Logo.scale-100.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Square71x71Logo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Square71x71Logo.scale-125.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Square71x71Logo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Square71x71Logo.scale-150.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Square71x71Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Square71x71Logo.scale-200.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Square71x71Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Square71x71Logo.scale-400.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/StoreLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/StoreLogo.scale-100.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/StoreLogo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/StoreLogo.scale-125.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/StoreLogo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/StoreLogo.scale-150.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/StoreLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/StoreLogo.scale-200.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/StoreLogo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/StoreLogo.scale-400.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/TabView.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/TabView.scale-100.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/TabView.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/TabView.scale-125.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/TabView.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/TabView.scale-150.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/TabView.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/TabView.scale-200.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/TabView.scale-300.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/TabView.scale-300.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/TabView.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/TabView.scale-400.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/TemplatedPicker.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/TemplatedPicker.scale-100.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/TemplatedPicker.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/TemplatedPicker.scale-125.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/TemplatedPicker.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/TemplatedPicker.scale-150.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/TemplatedPicker.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/TemplatedPicker.scale-200.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/TemplatedPicker.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/TemplatedPicker.scale-400.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/TimePicker.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/TimePicker.scale-100.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/TimePicker.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/TimePicker.scale-125.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/TimePicker.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/TimePicker.scale-150.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/TimePicker.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/TimePicker.scale-200.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/TimePicker.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/TimePicker.scale-400.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/TimeSpanPicker.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/TimeSpanPicker.scale-100.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/TimeSpanPicker.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/TimeSpanPicker.scale-125.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/TimeSpanPicker.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/TimeSpanPicker.scale-150.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/TimeSpanPicker.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/TimeSpanPicker.scale-200.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/TimeSpanPicker.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/TimeSpanPicker.scale-400.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/TreeView.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/TreeView.scale-100.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/TreeView.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/TreeView.scale-125.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/TreeView.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/TreeView.scale-150.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/TreeView.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/TreeView.scale-200.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/TreeView.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/TreeView.scale-400.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/TreeView_Flag_Argentina.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/TreeView_Flag_Argentina.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/TreeView_Flag_China.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/TreeView_Flag_China.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/TreeView_Flag_Germany.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/TreeView_Flag_Germany.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/TreeView_Flag_India.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/TreeView_Flag_India.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/TreeView_Flag_Italy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/TreeView_Flag_Italy.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/TreeView_Flag_USA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/TreeView_Flag_USA.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Wide310x150Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Wide310x150Logo.scale-100.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Wide310x150Logo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Wide310x150Logo.scale-125.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Wide310x150Logo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Wide310x150Logo.scale-150.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Wide310x150Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Wide310x150Logo.scale-400.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Zip.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Zip.scale-100.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Zip.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Zip.scale-125.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Zip.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Zip.scale-150.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Zip.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Zip.scale-200.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Zip.scale-300.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Zip.scale-300.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Zip.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/Zip.scale-400.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/cat4.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/cat4.jpeg -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/custom_toolbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/custom_toolbar.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/sampleAvatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/sampleAvatar.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/sampleBot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/Assets/sampleBot.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/SDKBrowser.UWP_TemporaryKey.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/SDKBrowser.UWP_TemporaryKey.pfx -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/XamarinIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/XamarinIcon.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/available.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/available.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/available32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/available32.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/away.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/away.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/away32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/away32.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/busy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/busy.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/busy32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/busy32.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/button_backgroundImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/button_backgroundImage.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.UWP/image.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.UWP/packages.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/Accordion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/Accordion.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/Accordion@1,5x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/Accordion@1,5x.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/Accordion@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/Accordion@2x.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/Accordion@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/Accordion@3x.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/AutoComplete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/AutoComplete.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/AutoComplete@1,5x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/AutoComplete@1,5x.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/AutoComplete@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/AutoComplete@2x.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/AutoComplete@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/AutoComplete@3x.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/AutoCompleteView.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/AutoCompleteView.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/AutoCompleteView@1,5x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/AutoCompleteView@1,5x.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/AutoCompleteView@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/AutoCompleteView@2x.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/AutoCompleteView@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/AutoCompleteView@3x.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/Badge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/Badge.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/Badge@1,5x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/Badge@1,5x.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/Badge@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/Badge@2x.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/Badge@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/Badge@3x.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/Barcode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/Barcode.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/Barcode@1,5x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/Barcode@1,5x.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/Barcode@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/Barcode@2x.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/Barcode@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/Barcode@3x.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/Border.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/Border.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/Border@1,5x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/Border@1,5x.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/Border@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/Border@2x.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/Border@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/Border@3x.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/Bullet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/Bullet.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/Bullet@1,5x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/Bullet@1,5x.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/Bullet@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/Bullet@2x.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/Bullet@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/Bullet@3x.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/BusyIndicator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/BusyIndicator.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/BusyIndicator@1,5x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/BusyIndicator@1,5x.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/BusyIndicator@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/BusyIndicator@2x.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/BusyIndicator@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/BusyIndicator@3x.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/Button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/Button.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/Button@1,5x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/Button@1,5x.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/Button@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/Button@2x.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/Button@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/Button@3x.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/Calendar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/Calendar.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/Calendar@1,5x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/Calendar@1,5x.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/Calendar@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/Calendar@2x.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/Calendar@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/Calendar@3x.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/Chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/Chart.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/Chart@1,5x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/Chart@1,5x.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/Chart@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/Chart@2x.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/Chart@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/Chart@3x.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/ChatBackground.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/ChatBackground.jpg -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/ChatUI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/ChatUI.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/ChatUI@1,5x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/ChatUI@1,5x.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/ChatUI@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/ChatUI@2x.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/ChatUI@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/ChatUI@3x.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/Checkbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/Checkbox.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/Checkbox@1,5x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/Checkbox@1,5x.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/Checkbox@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/Checkbox@2x.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/Checkbox@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/Checkbox@3x.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/ComboBox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/ComboBox.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/ComboBox@1,5x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/ComboBox@1,5x.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/ComboBox@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/ComboBox@2x.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/ComboBox@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/ComboBox@3x.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/DataForm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/DataForm.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/DataForm@1,5x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/DataForm@1,5x.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/DataForm@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/DataForm@2x.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/DataForm@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/DataForm@3x.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/DataGrid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/DataGrid.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/DataGrid@1,5x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/DataGrid@1,5x.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/DataGrid@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/DataGrid@2x.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/DataGrid@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/DataGrid@3x.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/DatePicker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/DatePicker.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/DatePicker@1,5x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/DatePicker@1,5x.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/DatePicker@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/DatePicker@2x.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/DatePicker@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/DatePicker@3x.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/DateTimePicker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/DateTimePicker.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/DateTimePicker@1,5x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/DateTimePicker@1,5x.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/DateTimePicker@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/DateTimePicker@2x.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/DateTimePicker@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/DateTimePicker@3x.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/Default-568h@2x.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/DockLayout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/DockLayout.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/DockLayout@1,5x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/DockLayout@1,5x.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/DockLayout@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/DockLayout@2x.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/DockLayout@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/DockLayout@3x.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/Entry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/Entry.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/Entry@1,5x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/Entry@1,5x.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/Entry@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/Entry@2x.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/Entry@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/Entry@3x.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/Expander.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/Expander.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/Expander@1,5x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/Expander@1,5x.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/Expander@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/Expander@2x.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/Expander@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/Expander@3x.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/Gauge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/Gauge.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/Gauge@1,5x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/Gauge@1,5x.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/Gauge@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/Gauge@2x.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/Gauge@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/Gauge@3x.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/HamburgerMenu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/HamburgerMenu.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/HamburgerMenu@1,5x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/HamburgerMenu@1,5x.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/HamburgerMenu@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/HamburgerMenu@2x.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/HamburgerMenu@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/HamburgerMenu@3x.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/ImageEditor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/ImageEditor.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/ImageEditor@1,5x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/ImageEditor@1,5x.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/ImageEditor@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/ImageEditor@2x.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/ImageEditor@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/ImageEditor@3x.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/ListPicker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/ListPicker.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/ListPicker@1,5x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/ListPicker@1,5x.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/ListPicker@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/ListPicker@2x.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/ListPicker@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/ListPicker@3x.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/ListView.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/ListView.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/ListView@1,5x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/ListView@1,5x.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/ListView@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/ListView@2x.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/ListView@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/ListView@3x.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/Logo.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/Logo@1,5x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/Logo@1,5x.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/Logo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/Logo@2x.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/Logo@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/Logo@3x.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/Map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/Map.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/Map@1,5x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/Map@1,5x.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/Map@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/Map@2x.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/Map@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/Map@3x.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/MaskedInput.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/MaskedInput.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/MaskedInput@1,5x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/MaskedInput@1,5x.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/MaskedInput@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/MaskedInput@2x.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/MaskedInput@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/MaskedInput@3x.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/NumericInput.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/NumericInput.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/NumericInput@1,5x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/NumericInput@1,5x.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/NumericInput@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/NumericInput@2x.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/NumericInput@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/NumericInput@3x.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/Path.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/Path.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/Path@1,5x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/Path@1,5x.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/Path@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/Path@2x.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/Path@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/Path@3x.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/PdfViewer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/PdfViewer.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/PdfViewer@1,5x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/PdfViewer@1,5x.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/PdfViewer@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/PdfViewer@2x.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/PdfViewer@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/PdfViewer@3x.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/Popup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/Popup.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/Popup@1,5x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/Popup@1,5x.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/Popup@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/Popup@2x.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/Popup@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/Popup@3x.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/ProgressBar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/ProgressBar.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/ProgressBar@1,5x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/ProgressBar@1,5x.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/ProgressBar@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/ProgressBar@2x.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/ProgressBar@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/ProgressBar@3x.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/Rating.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/Rating.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/Rating@1,5x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/Rating@1,5x.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/Rating@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/Rating@2x.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/Rating@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/Rating@3x.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/RichTextEditor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/RichTextEditor.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/RichTextEditor@1,5x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/RichTextEditor@1,5x.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/RichTextEditor@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/RichTextEditor@2x.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/RichTextEditor@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/RichTextEditor@3x.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/Segmented.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/Segmented.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/Segmented@1,5x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/Segmented@1,5x.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/Segmented@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/Segmented@2x.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/Segmented@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/Segmented@3x.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/Shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/Shadow.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/Shadow@1,5x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/Shadow@1,5x.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/Shadow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/Shadow@2x.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/Shadow@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/Shadow@3x.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/SideDrawer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/SideDrawer.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/SideDrawer@1,5x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/SideDrawer@1,5x.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/SideDrawer@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/SideDrawer@2x.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/SideDrawer@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/SideDrawer@3x.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/SignaturePad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/SignaturePad.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/SignaturePad@1,5x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/SignaturePad@1,5x.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/SignaturePad@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/SignaturePad@2x.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/SignaturePad@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/SignaturePad@3x.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/SlideView.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/SlideView.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/SlideView@1,5x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/SlideView@1,5x.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/SlideView@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/SlideView@2x.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/SlideView@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/SlideView@3x.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/Splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/Splash.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/Splash@1,5x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/Splash@1,5x.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/Splash@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/Splash@2x.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/Splash@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/Splash@3x.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/Spreadsheet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/Spreadsheet.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/Spreadsheet@1,5x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/Spreadsheet@1,5x.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/Spreadsheet@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/Spreadsheet@2x.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/Spreadsheet@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/Spreadsheet@3x.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/TabView.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/TabView.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/TabView@1,5x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/TabView@1,5x.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/TabView@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/TabView@2x.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/TabView@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/TabView@3x.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/TelerikChatAuthor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/TelerikChatAuthor.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/TelerikChatAuthor@1,5x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/TelerikChatAuthor@1,5x.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/TelerikChatAuthor@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/TelerikChatAuthor@2x.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/TelerikChatAuthor@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/TelerikChatAuthor@3x.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/TelerikSendMessage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/TelerikSendMessage.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/TelerikSendMessage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/TelerikSendMessage@2x.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/TelerikSendMessage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/TelerikSendMessage@3x.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/TemplatedPicker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/TemplatedPicker.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/TemplatedPicker@1,5x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/TemplatedPicker@1,5x.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/TemplatedPicker@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/TemplatedPicker@2x.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/TemplatedPicker@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/TemplatedPicker@3x.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/TimePicker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/TimePicker.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/TimePicker@1,5x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/TimePicker@1,5x.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/TimePicker@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/TimePicker@2x.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/TimePicker@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/TimePicker@3x.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/TimeSpanPicker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/TimeSpanPicker.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/TimeSpanPicker@1,5x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/TimeSpanPicker@1,5x.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/TimeSpanPicker@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/TimeSpanPicker@2x.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/TimeSpanPicker@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/TimeSpanPicker@3x.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/TreeView.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/TreeView.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/TreeView@1,5x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/TreeView@1,5x.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/TreeView@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/TreeView@2x.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/TreeView@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/TreeView@3x.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/TreeView_Flag_China.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/TreeView_Flag_China.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/TreeView_Flag_Germany.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/TreeView_Flag_Germany.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/TreeView_Flag_India.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/TreeView_Flag_India.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/TreeView_Flag_Italy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/TreeView_Flag_Italy.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/TreeView_Flag_USA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/TreeView_Flag_USA.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/XamarinIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/XamarinIcon.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/Zip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/Zip.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/Zip@1,5x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/Zip@1,5x.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/Zip@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/Zip@2x.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/Zip@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/Zip@3x.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/available.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/available.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/available32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/available32.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/away.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/away.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/away32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/away32.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/busy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/busy.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/busy32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/busy32.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/button_backgroundImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/button_backgroundImage.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/cat4.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/cat4.jpeg -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/custom_toolbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/custom_toolbar.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/image.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/image@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/image@2x.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/sampleAvatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/sampleAvatar.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/sampleBot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/Resources/sampleBot.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/iTunesArtwork: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/iTunesArtwork -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser.iOS/iTunesArtwork@2x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser.iOS/iTunesArtwork@2x -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser/Common/Constants.cs: -------------------------------------------------------------------------------- 1 | namespace SDKBrowser.Common 2 | { 3 | public static class Constants 4 | { 5 | public const string TelerikName = "Telerik"; 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser/Examples/DataGridControl/Gender.cs: -------------------------------------------------------------------------------- 1 | namespace SDKBrowser.Examples.DataGridControl 2 | { 3 | public enum Gender 4 | { 5 | Male, 6 | Female, 7 | Other 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser/Examples/MapControl/world.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser/Examples/MapControl/world.dbf -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser/Examples/MapControl/world.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser/Examples/MapControl/world.shp -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser/Images/cat4.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser/Images/cat4.jpeg -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser/Images/custom_toolbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser/Images/custom_toolbar.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser/Images/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser/Images/delete.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser/Images/fail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser/Images/fail.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser/Images/favourite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser/Images/favourite.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser/Images/success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser/Images/success.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser/Images/unread.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/SDKBrowser/SDKBrowser/Images/unread.png -------------------------------------------------------------------------------- /XamarinSDK/SDKBrowser/SDKBrowser/Services/ISettingsService.cs: -------------------------------------------------------------------------------- 1 | namespace SDKBrowser.Services 2 | { 3 | public interface ISettingsService 4 | { 5 | bool IsSplashVisible { get; set; } 6 | } 7 | } -------------------------------------------------------------------------------- /XamarinSDK/Telerik-UI-For-Xamarin-SDK-Image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/xamarin-forms-sdk/0525629a3b86d122e3db86dbd394050e863e1f38/XamarinSDK/Telerik-UI-For-Xamarin-SDK-Image.png --------------------------------------------------------------------------------