├── .gitattributes ├── .gitignore ├── CallistoLogo.png ├── CallistoMoon.png ├── License.txt ├── SDKManifest.xml ├── Tools └── nuget │ ├── Callisto │ └── Callisto.nuspec │ └── NuGet.exe ├── Win8-locked ├── Callisto-Win8-1.3.1.vsix └── Callisto │ ├── Callisto.pri │ └── themes │ └── Generic.xaml ├── changelog.md ├── contributing.md ├── readme.md └── src ├── Callisto.TestApp ├── App.xaml ├── App.xaml.cs ├── Assets │ ├── Logo.png │ ├── SmallLogo.png │ ├── SplashScreen.png │ └── StoreLogo.png ├── Callisto.TestApp.csproj ├── Callisto.TestApp_TemporaryKey.pfx ├── Common │ └── StandardStyles.xaml ├── Images │ ├── Callisto.png │ ├── CallistoWhite.png │ ├── butterfly.jpg │ └── grasshopper.jpg ├── MainPage.xaml ├── MainPage.xaml.cs ├── ObjectTracker.cs ├── Package.appxmanifest ├── Properties │ └── AssemblyInfo.cs ├── SampleInput.xaml ├── SampleInput.xaml.cs ├── SamplePages │ ├── CustomDialogSample.xaml │ ├── CustomDialogSample.xaml.cs │ ├── DropDownButtonSample.xaml │ ├── DropDownButtonSample.xaml.cs │ ├── DynamicTextBlock.xaml │ ├── DynamicTextBlock.xaml.cs │ ├── FlipViewIndicatorSample.xaml │ ├── FlipViewIndicatorSample.xaml.cs │ ├── FlyoutSample.xaml │ ├── FlyoutSample.xaml.cs │ ├── LiveTileSample.xaml │ ├── LiveTileSample.xaml.cs │ ├── NumericUpDownSample.xaml │ ├── NumericUpDownSample.xaml.cs │ ├── RatingControl.xaml │ ├── RatingControl.xaml.cs │ ├── SettingsContent.xaml │ ├── SettingsContent.xaml.cs │ ├── SettingsSample.xaml │ ├── SettingsSample.xaml.cs │ ├── TiltSample.xaml │ ├── TiltSample.xaml.cs │ ├── WatermarkTextBoxSample.xaml │ ├── WatermarkTextBoxSample.xaml.cs │ ├── WebViewExtension.xaml │ ├── WebViewExtension.xaml.cs │ ├── WrapPanelSample.xaml │ └── WrapPanelSample.xaml.cs ├── StartPage.xaml ├── StartPage.xaml.cs ├── VisualTreeAdapter.cs └── en-US │ └── Resources.resw ├── Callisto.VSIX ├── Callisto.VSIX.csproj ├── Callisto.VSIX.sln ├── Properties │ └── AssemblyInfo.cs └── source.extension.vsixmanifest ├── Callisto ├── Callisto.csproj ├── Callisto.sln ├── Controls │ ├── Common │ │ ├── AppManifestHelper.cs │ │ ├── Clipper.cs │ │ ├── EnumerableFunctions.cs │ │ ├── ExpandDirection.cs │ │ ├── IUpdateVisualState.cs │ │ ├── InteractionHelper.cs │ │ ├── ItemsControlHelper.cs │ │ ├── LinearClipper.cs │ │ └── VisualStates.cs │ ├── CustomDialog │ │ └── CustomDialog.cs │ ├── DropDownButton │ │ └── DropDownButton.cs │ ├── DynamicTextBlock │ │ └── DynamicTextBlock.cs │ ├── FlipViewIndicator │ │ └── FlipViewIndicator.cs │ ├── Flyout │ │ └── Flyout.cs │ ├── LiveTile │ │ └── LiveTile.cs │ ├── Menu │ │ ├── Menu.cs │ │ ├── MenuItem.cs │ │ ├── MenuItemBase.cs │ │ ├── MenuItemSeparator.cs │ │ └── ToggleMenuItem.cs │ ├── NumericUpDown │ │ └── NumericUpDown.cs │ ├── Rating │ │ ├── Rating.cs │ │ ├── RatingItem.cs │ │ ├── RatingSelectionMode.cs │ │ ├── ValueChangedEventArgs.cs │ │ └── ValueChangedEventHandler.cs │ ├── Settings │ │ └── SettingsFlyout.cs │ ├── SettingsManagement │ │ ├── AppSettings.cs │ │ ├── INotifySettingChanged.cs │ │ ├── ISettingsCommandInfo.cs │ │ ├── SettingChangedEventArgs.cs │ │ ├── SettingsCommandInfo.cs │ │ └── SettingsUserControl.cs │ ├── WatermarkTextBox │ │ └── WatermarkTextBox.cs │ └── WrapPanel │ │ ├── OrientedSize.cs │ │ └── WrapPanel.cs ├── Converters │ ├── BooleanToVisibilityConverter.cs │ ├── BrushToColorConverter.cs │ ├── ColorBrightnessConverter.cs │ ├── ColorContrastConverter.cs │ ├── DateTimeFormatHelper.cs │ ├── LengthToBooleanConverter.cs │ └── RelativeTimeConverter.cs ├── Effects │ └── TiltEffect.cs ├── Extensions │ ├── Extensions.cs │ ├── NumericExtensions.cs │ └── WebViewExtension.cs ├── LocalizedStrings │ ├── cs │ │ └── Resources.resw │ ├── da │ │ └── Resources.resw │ ├── de-de │ │ └── Resources.resw │ ├── el │ │ └── Resources.resw │ ├── en-GB │ │ └── Resources.resw │ ├── en-US │ │ └── Resources.resw │ ├── en-ZA │ │ └── Resources.resw │ ├── en │ │ └── Resources.resw │ ├── es-ES │ │ └── Resources.resw │ ├── fi │ │ └── Resources.resw │ ├── fr-FR │ │ └── Resources.resw │ ├── hu │ │ └── Resources.resw │ ├── it-IT │ │ └── Resources.resw │ ├── ja │ │ └── Resources.resw │ ├── ko │ │ └── Resources.resw │ ├── nb-NO │ │ └── Resources.resw │ ├── nl-NL │ │ └── Resources.resw │ ├── pl │ │ └── Resources.resw │ ├── pt-BR │ │ └── Resources.resw │ ├── pt-PT │ │ └── Resources.resw │ ├── ru │ │ └── Resources.resw │ ├── sv-SE │ │ └── Resources.resw │ ├── zh-CN │ │ └── Resources.resw │ └── zh-TW │ │ └── Resources.resw ├── OAuth │ └── OAuthHelper.cs ├── Properties │ └── AssemblyInfo.cs ├── XamlTypeInfoBuildTask.targets └── themes │ └── Generic.xaml └── Design └── Callisto.Design ├── Callisto.Design.csproj ├── Common ├── MetadataRegistrationBase.cs ├── PlatformTypes.cs └── ToolboxCategoryPaths.cs ├── CustomDialogMetadata.cs ├── DynamicTextBlockMetadata.cs ├── FlipViewIndicatorMetadata.cs ├── FlyoutMetadata.cs ├── LiveTileMetadata.cs ├── MenuItemMetadata.cs ├── MenuItemSeparatorMetadata.cs ├── MenuMetadata.cs ├── MetadataRegistration.cs ├── NumericUpDownMetadata.cs ├── Properties ├── AssemblyInfo.cs ├── Callisto.Controls.CustomDialog.icon.png ├── Callisto.Controls.DropDownButton.icon.png ├── Callisto.Controls.DynamicTextBlock.icon.png ├── Callisto.Controls.FlipViewIndicator.icon.png ├── Callisto.Controls.Flyout.icon.png ├── Callisto.Controls.LiveTile.icon.png ├── Callisto.Controls.Menu.icon.png ├── Callisto.Controls.NumericUpDown.icon.png ├── Callisto.Controls.Rating.icon.png ├── Callisto.Controls.SettingsFlyout.icon.png ├── Callisto.Controls.WatermarkTextBox.icon.png ├── Resources.Designer.cs ├── Resources.resx ├── Settings.Designer.cs └── Settings.settings ├── RatingItemMetadata.cs ├── RatingMetadata.cs ├── SettingsFlyoutMetadata.cs ├── Themes └── Generic.xaml ├── ToggleMenuItemMetadata.cs ├── WatermarkTextBoxMetadata.cs └── WrapPanelMetadata.cs /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timheuer/callisto/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timheuer/callisto/HEAD/.gitignore -------------------------------------------------------------------------------- /CallistoLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timheuer/callisto/HEAD/CallistoLogo.png -------------------------------------------------------------------------------- /CallistoMoon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timheuer/callisto/HEAD/CallistoMoon.png -------------------------------------------------------------------------------- /License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timheuer/callisto/HEAD/License.txt -------------------------------------------------------------------------------- /SDKManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timheuer/callisto/HEAD/SDKManifest.xml -------------------------------------------------------------------------------- /Tools/nuget/Callisto/Callisto.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timheuer/callisto/HEAD/Tools/nuget/Callisto/Callisto.nuspec -------------------------------------------------------------------------------- /Tools/nuget/NuGet.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timheuer/callisto/HEAD/Tools/nuget/NuGet.exe -------------------------------------------------------------------------------- /Win8-locked/Callisto-Win8-1.3.1.vsix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timheuer/callisto/HEAD/Win8-locked/Callisto-Win8-1.3.1.vsix -------------------------------------------------------------------------------- /Win8-locked/Callisto/Callisto.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timheuer/callisto/HEAD/Win8-locked/Callisto/Callisto.pri -------------------------------------------------------------------------------- /Win8-locked/Callisto/themes/Generic.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timheuer/callisto/HEAD/Win8-locked/Callisto/themes/Generic.xaml -------------------------------------------------------------------------------- /changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timheuer/callisto/HEAD/changelog.md -------------------------------------------------------------------------------- /contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timheuer/callisto/HEAD/contributing.md -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timheuer/callisto/HEAD/readme.md -------------------------------------------------------------------------------- /src/Callisto.TestApp/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timheuer/callisto/HEAD/src/Callisto.TestApp/App.xaml -------------------------------------------------------------------------------- /src/Callisto.TestApp/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timheuer/callisto/HEAD/src/Callisto.TestApp/App.xaml.cs -------------------------------------------------------------------------------- /src/Callisto.TestApp/Assets/Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timheuer/callisto/HEAD/src/Callisto.TestApp/Assets/Logo.png -------------------------------------------------------------------------------- /src/Callisto.TestApp/Assets/SmallLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timheuer/callisto/HEAD/src/Callisto.TestApp/Assets/SmallLogo.png -------------------------------------------------------------------------------- /src/Callisto.TestApp/Assets/SplashScreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timheuer/callisto/HEAD/src/Callisto.TestApp/Assets/SplashScreen.png -------------------------------------------------------------------------------- /src/Callisto.TestApp/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timheuer/callisto/HEAD/src/Callisto.TestApp/Assets/StoreLogo.png -------------------------------------------------------------------------------- /src/Callisto.TestApp/Callisto.TestApp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timheuer/callisto/HEAD/src/Callisto.TestApp/Callisto.TestApp.csproj -------------------------------------------------------------------------------- /src/Callisto.TestApp/Callisto.TestApp_TemporaryKey.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timheuer/callisto/HEAD/src/Callisto.TestApp/Callisto.TestApp_TemporaryKey.pfx -------------------------------------------------------------------------------- /src/Callisto.TestApp/Common/StandardStyles.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timheuer/callisto/HEAD/src/Callisto.TestApp/Common/StandardStyles.xaml -------------------------------------------------------------------------------- /src/Callisto.TestApp/Images/Callisto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timheuer/callisto/HEAD/src/Callisto.TestApp/Images/Callisto.png -------------------------------------------------------------------------------- /src/Callisto.TestApp/Images/CallistoWhite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timheuer/callisto/HEAD/src/Callisto.TestApp/Images/CallistoWhite.png -------------------------------------------------------------------------------- /src/Callisto.TestApp/Images/butterfly.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timheuer/callisto/HEAD/src/Callisto.TestApp/Images/butterfly.jpg -------------------------------------------------------------------------------- /src/Callisto.TestApp/Images/grasshopper.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timheuer/callisto/HEAD/src/Callisto.TestApp/Images/grasshopper.jpg -------------------------------------------------------------------------------- /src/Callisto.TestApp/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timheuer/callisto/HEAD/src/Callisto.TestApp/MainPage.xaml -------------------------------------------------------------------------------- /src/Callisto.TestApp/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timheuer/callisto/HEAD/src/Callisto.TestApp/MainPage.xaml.cs -------------------------------------------------------------------------------- /src/Callisto.TestApp/ObjectTracker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timheuer/callisto/HEAD/src/Callisto.TestApp/ObjectTracker.cs -------------------------------------------------------------------------------- /src/Callisto.TestApp/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timheuer/callisto/HEAD/src/Callisto.TestApp/Package.appxmanifest -------------------------------------------------------------------------------- /src/Callisto.TestApp/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timheuer/callisto/HEAD/src/Callisto.TestApp/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Callisto.TestApp/SampleInput.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timheuer/callisto/HEAD/src/Callisto.TestApp/SampleInput.xaml -------------------------------------------------------------------------------- /src/Callisto.TestApp/SampleInput.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timheuer/callisto/HEAD/src/Callisto.TestApp/SampleInput.xaml.cs -------------------------------------------------------------------------------- /src/Callisto.TestApp/SamplePages/CustomDialogSample.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timheuer/callisto/HEAD/src/Callisto.TestApp/SamplePages/CustomDialogSample.xaml -------------------------------------------------------------------------------- /src/Callisto.TestApp/SamplePages/CustomDialogSample.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timheuer/callisto/HEAD/src/Callisto.TestApp/SamplePages/CustomDialogSample.xaml.cs -------------------------------------------------------------------------------- /src/Callisto.TestApp/SamplePages/DropDownButtonSample.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timheuer/callisto/HEAD/src/Callisto.TestApp/SamplePages/DropDownButtonSample.xaml -------------------------------------------------------------------------------- /src/Callisto.TestApp/SamplePages/DropDownButtonSample.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timheuer/callisto/HEAD/src/Callisto.TestApp/SamplePages/DropDownButtonSample.xaml.cs -------------------------------------------------------------------------------- /src/Callisto.TestApp/SamplePages/DynamicTextBlock.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timheuer/callisto/HEAD/src/Callisto.TestApp/SamplePages/DynamicTextBlock.xaml -------------------------------------------------------------------------------- /src/Callisto.TestApp/SamplePages/DynamicTextBlock.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timheuer/callisto/HEAD/src/Callisto.TestApp/SamplePages/DynamicTextBlock.xaml.cs -------------------------------------------------------------------------------- /src/Callisto.TestApp/SamplePages/FlipViewIndicatorSample.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timheuer/callisto/HEAD/src/Callisto.TestApp/SamplePages/FlipViewIndicatorSample.xaml -------------------------------------------------------------------------------- /src/Callisto.TestApp/SamplePages/FlipViewIndicatorSample.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timheuer/callisto/HEAD/src/Callisto.TestApp/SamplePages/FlipViewIndicatorSample.xaml.cs -------------------------------------------------------------------------------- /src/Callisto.TestApp/SamplePages/FlyoutSample.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timheuer/callisto/HEAD/src/Callisto.TestApp/SamplePages/FlyoutSample.xaml -------------------------------------------------------------------------------- /src/Callisto.TestApp/SamplePages/FlyoutSample.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timheuer/callisto/HEAD/src/Callisto.TestApp/SamplePages/FlyoutSample.xaml.cs -------------------------------------------------------------------------------- /src/Callisto.TestApp/SamplePages/LiveTileSample.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timheuer/callisto/HEAD/src/Callisto.TestApp/SamplePages/LiveTileSample.xaml -------------------------------------------------------------------------------- /src/Callisto.TestApp/SamplePages/LiveTileSample.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timheuer/callisto/HEAD/src/Callisto.TestApp/SamplePages/LiveTileSample.xaml.cs -------------------------------------------------------------------------------- /src/Callisto.TestApp/SamplePages/NumericUpDownSample.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timheuer/callisto/HEAD/src/Callisto.TestApp/SamplePages/NumericUpDownSample.xaml -------------------------------------------------------------------------------- /src/Callisto.TestApp/SamplePages/NumericUpDownSample.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timheuer/callisto/HEAD/src/Callisto.TestApp/SamplePages/NumericUpDownSample.xaml.cs -------------------------------------------------------------------------------- /src/Callisto.TestApp/SamplePages/RatingControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timheuer/callisto/HEAD/src/Callisto.TestApp/SamplePages/RatingControl.xaml -------------------------------------------------------------------------------- /src/Callisto.TestApp/SamplePages/RatingControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timheuer/callisto/HEAD/src/Callisto.TestApp/SamplePages/RatingControl.xaml.cs -------------------------------------------------------------------------------- /src/Callisto.TestApp/SamplePages/SettingsContent.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timheuer/callisto/HEAD/src/Callisto.TestApp/SamplePages/SettingsContent.xaml -------------------------------------------------------------------------------- /src/Callisto.TestApp/SamplePages/SettingsContent.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timheuer/callisto/HEAD/src/Callisto.TestApp/SamplePages/SettingsContent.xaml.cs -------------------------------------------------------------------------------- /src/Callisto.TestApp/SamplePages/SettingsSample.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timheuer/callisto/HEAD/src/Callisto.TestApp/SamplePages/SettingsSample.xaml -------------------------------------------------------------------------------- /src/Callisto.TestApp/SamplePages/SettingsSample.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timheuer/callisto/HEAD/src/Callisto.TestApp/SamplePages/SettingsSample.xaml.cs -------------------------------------------------------------------------------- /src/Callisto.TestApp/SamplePages/TiltSample.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timheuer/callisto/HEAD/src/Callisto.TestApp/SamplePages/TiltSample.xaml -------------------------------------------------------------------------------- /src/Callisto.TestApp/SamplePages/TiltSample.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timheuer/callisto/HEAD/src/Callisto.TestApp/SamplePages/TiltSample.xaml.cs -------------------------------------------------------------------------------- /src/Callisto.TestApp/SamplePages/WatermarkTextBoxSample.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timheuer/callisto/HEAD/src/Callisto.TestApp/SamplePages/WatermarkTextBoxSample.xaml -------------------------------------------------------------------------------- /src/Callisto.TestApp/SamplePages/WatermarkTextBoxSample.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timheuer/callisto/HEAD/src/Callisto.TestApp/SamplePages/WatermarkTextBoxSample.xaml.cs -------------------------------------------------------------------------------- /src/Callisto.TestApp/SamplePages/WebViewExtension.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timheuer/callisto/HEAD/src/Callisto.TestApp/SamplePages/WebViewExtension.xaml -------------------------------------------------------------------------------- /src/Callisto.TestApp/SamplePages/WebViewExtension.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timheuer/callisto/HEAD/src/Callisto.TestApp/SamplePages/WebViewExtension.xaml.cs -------------------------------------------------------------------------------- /src/Callisto.TestApp/SamplePages/WrapPanelSample.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timheuer/callisto/HEAD/src/Callisto.TestApp/SamplePages/WrapPanelSample.xaml -------------------------------------------------------------------------------- /src/Callisto.TestApp/SamplePages/WrapPanelSample.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timheuer/callisto/HEAD/src/Callisto.TestApp/SamplePages/WrapPanelSample.xaml.cs -------------------------------------------------------------------------------- /src/Callisto.TestApp/StartPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timheuer/callisto/HEAD/src/Callisto.TestApp/StartPage.xaml -------------------------------------------------------------------------------- /src/Callisto.TestApp/StartPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timheuer/callisto/HEAD/src/Callisto.TestApp/StartPage.xaml.cs -------------------------------------------------------------------------------- /src/Callisto.TestApp/VisualTreeAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timheuer/callisto/HEAD/src/Callisto.TestApp/VisualTreeAdapter.cs -------------------------------------------------------------------------------- /src/Callisto.TestApp/en-US/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timheuer/callisto/HEAD/src/Callisto.TestApp/en-US/Resources.resw -------------------------------------------------------------------------------- /src/Callisto.VSIX/Callisto.VSIX.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timheuer/callisto/HEAD/src/Callisto.VSIX/Callisto.VSIX.csproj -------------------------------------------------------------------------------- /src/Callisto.VSIX/Callisto.VSIX.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timheuer/callisto/HEAD/src/Callisto.VSIX/Callisto.VSIX.sln -------------------------------------------------------------------------------- /src/Callisto.VSIX/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timheuer/callisto/HEAD/src/Callisto.VSIX/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Callisto.VSIX/source.extension.vsixmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timheuer/callisto/HEAD/src/Callisto.VSIX/source.extension.vsixmanifest -------------------------------------------------------------------------------- /src/Callisto/Callisto.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timheuer/callisto/HEAD/src/Callisto/Callisto.csproj -------------------------------------------------------------------------------- /src/Callisto/Callisto.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timheuer/callisto/HEAD/src/Callisto/Callisto.sln -------------------------------------------------------------------------------- /src/Callisto/Controls/Common/AppManifestHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timheuer/callisto/HEAD/src/Callisto/Controls/Common/AppManifestHelper.cs -------------------------------------------------------------------------------- /src/Callisto/Controls/Common/Clipper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timheuer/callisto/HEAD/src/Callisto/Controls/Common/Clipper.cs -------------------------------------------------------------------------------- /src/Callisto/Controls/Common/EnumerableFunctions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timheuer/callisto/HEAD/src/Callisto/Controls/Common/EnumerableFunctions.cs -------------------------------------------------------------------------------- /src/Callisto/Controls/Common/ExpandDirection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timheuer/callisto/HEAD/src/Callisto/Controls/Common/ExpandDirection.cs -------------------------------------------------------------------------------- /src/Callisto/Controls/Common/IUpdateVisualState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timheuer/callisto/HEAD/src/Callisto/Controls/Common/IUpdateVisualState.cs -------------------------------------------------------------------------------- /src/Callisto/Controls/Common/InteractionHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timheuer/callisto/HEAD/src/Callisto/Controls/Common/InteractionHelper.cs -------------------------------------------------------------------------------- /src/Callisto/Controls/Common/ItemsControlHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timheuer/callisto/HEAD/src/Callisto/Controls/Common/ItemsControlHelper.cs -------------------------------------------------------------------------------- /src/Callisto/Controls/Common/LinearClipper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timheuer/callisto/HEAD/src/Callisto/Controls/Common/LinearClipper.cs -------------------------------------------------------------------------------- /src/Callisto/Controls/Common/VisualStates.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timheuer/callisto/HEAD/src/Callisto/Controls/Common/VisualStates.cs -------------------------------------------------------------------------------- /src/Callisto/Controls/CustomDialog/CustomDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timheuer/callisto/HEAD/src/Callisto/Controls/CustomDialog/CustomDialog.cs -------------------------------------------------------------------------------- /src/Callisto/Controls/DropDownButton/DropDownButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timheuer/callisto/HEAD/src/Callisto/Controls/DropDownButton/DropDownButton.cs -------------------------------------------------------------------------------- /src/Callisto/Controls/DynamicTextBlock/DynamicTextBlock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timheuer/callisto/HEAD/src/Callisto/Controls/DynamicTextBlock/DynamicTextBlock.cs -------------------------------------------------------------------------------- /src/Callisto/Controls/FlipViewIndicator/FlipViewIndicator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timheuer/callisto/HEAD/src/Callisto/Controls/FlipViewIndicator/FlipViewIndicator.cs -------------------------------------------------------------------------------- /src/Callisto/Controls/Flyout/Flyout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timheuer/callisto/HEAD/src/Callisto/Controls/Flyout/Flyout.cs -------------------------------------------------------------------------------- /src/Callisto/Controls/LiveTile/LiveTile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timheuer/callisto/HEAD/src/Callisto/Controls/LiveTile/LiveTile.cs -------------------------------------------------------------------------------- /src/Callisto/Controls/Menu/Menu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timheuer/callisto/HEAD/src/Callisto/Controls/Menu/Menu.cs -------------------------------------------------------------------------------- /src/Callisto/Controls/Menu/MenuItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timheuer/callisto/HEAD/src/Callisto/Controls/Menu/MenuItem.cs -------------------------------------------------------------------------------- /src/Callisto/Controls/Menu/MenuItemBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timheuer/callisto/HEAD/src/Callisto/Controls/Menu/MenuItemBase.cs -------------------------------------------------------------------------------- /src/Callisto/Controls/Menu/MenuItemSeparator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timheuer/callisto/HEAD/src/Callisto/Controls/Menu/MenuItemSeparator.cs -------------------------------------------------------------------------------- /src/Callisto/Controls/Menu/ToggleMenuItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timheuer/callisto/HEAD/src/Callisto/Controls/Menu/ToggleMenuItem.cs -------------------------------------------------------------------------------- /src/Callisto/Controls/NumericUpDown/NumericUpDown.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timheuer/callisto/HEAD/src/Callisto/Controls/NumericUpDown/NumericUpDown.cs -------------------------------------------------------------------------------- /src/Callisto/Controls/Rating/Rating.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timheuer/callisto/HEAD/src/Callisto/Controls/Rating/Rating.cs -------------------------------------------------------------------------------- /src/Callisto/Controls/Rating/RatingItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timheuer/callisto/HEAD/src/Callisto/Controls/Rating/RatingItem.cs -------------------------------------------------------------------------------- /src/Callisto/Controls/Rating/RatingSelectionMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timheuer/callisto/HEAD/src/Callisto/Controls/Rating/RatingSelectionMode.cs -------------------------------------------------------------------------------- /src/Callisto/Controls/Rating/ValueChangedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timheuer/callisto/HEAD/src/Callisto/Controls/Rating/ValueChangedEventArgs.cs -------------------------------------------------------------------------------- /src/Callisto/Controls/Rating/ValueChangedEventHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timheuer/callisto/HEAD/src/Callisto/Controls/Rating/ValueChangedEventHandler.cs -------------------------------------------------------------------------------- /src/Callisto/Controls/Settings/SettingsFlyout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timheuer/callisto/HEAD/src/Callisto/Controls/Settings/SettingsFlyout.cs -------------------------------------------------------------------------------- /src/Callisto/Controls/SettingsManagement/AppSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timheuer/callisto/HEAD/src/Callisto/Controls/SettingsManagement/AppSettings.cs -------------------------------------------------------------------------------- /src/Callisto/Controls/SettingsManagement/INotifySettingChanged.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timheuer/callisto/HEAD/src/Callisto/Controls/SettingsManagement/INotifySettingChanged.cs -------------------------------------------------------------------------------- /src/Callisto/Controls/SettingsManagement/ISettingsCommandInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timheuer/callisto/HEAD/src/Callisto/Controls/SettingsManagement/ISettingsCommandInfo.cs -------------------------------------------------------------------------------- /src/Callisto/Controls/SettingsManagement/SettingChangedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timheuer/callisto/HEAD/src/Callisto/Controls/SettingsManagement/SettingChangedEventArgs.cs -------------------------------------------------------------------------------- /src/Callisto/Controls/SettingsManagement/SettingsCommandInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timheuer/callisto/HEAD/src/Callisto/Controls/SettingsManagement/SettingsCommandInfo.cs -------------------------------------------------------------------------------- /src/Callisto/Controls/SettingsManagement/SettingsUserControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timheuer/callisto/HEAD/src/Callisto/Controls/SettingsManagement/SettingsUserControl.cs -------------------------------------------------------------------------------- /src/Callisto/Controls/WatermarkTextBox/WatermarkTextBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timheuer/callisto/HEAD/src/Callisto/Controls/WatermarkTextBox/WatermarkTextBox.cs -------------------------------------------------------------------------------- /src/Callisto/Controls/WrapPanel/OrientedSize.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timheuer/callisto/HEAD/src/Callisto/Controls/WrapPanel/OrientedSize.cs -------------------------------------------------------------------------------- /src/Callisto/Controls/WrapPanel/WrapPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timheuer/callisto/HEAD/src/Callisto/Controls/WrapPanel/WrapPanel.cs -------------------------------------------------------------------------------- /src/Callisto/Converters/BooleanToVisibilityConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timheuer/callisto/HEAD/src/Callisto/Converters/BooleanToVisibilityConverter.cs -------------------------------------------------------------------------------- /src/Callisto/Converters/BrushToColorConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timheuer/callisto/HEAD/src/Callisto/Converters/BrushToColorConverter.cs -------------------------------------------------------------------------------- /src/Callisto/Converters/ColorBrightnessConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timheuer/callisto/HEAD/src/Callisto/Converters/ColorBrightnessConverter.cs -------------------------------------------------------------------------------- /src/Callisto/Converters/ColorContrastConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timheuer/callisto/HEAD/src/Callisto/Converters/ColorContrastConverter.cs -------------------------------------------------------------------------------- /src/Callisto/Converters/DateTimeFormatHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timheuer/callisto/HEAD/src/Callisto/Converters/DateTimeFormatHelper.cs -------------------------------------------------------------------------------- /src/Callisto/Converters/LengthToBooleanConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timheuer/callisto/HEAD/src/Callisto/Converters/LengthToBooleanConverter.cs -------------------------------------------------------------------------------- /src/Callisto/Converters/RelativeTimeConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timheuer/callisto/HEAD/src/Callisto/Converters/RelativeTimeConverter.cs -------------------------------------------------------------------------------- /src/Callisto/Effects/TiltEffect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timheuer/callisto/HEAD/src/Callisto/Effects/TiltEffect.cs -------------------------------------------------------------------------------- /src/Callisto/Extensions/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timheuer/callisto/HEAD/src/Callisto/Extensions/Extensions.cs -------------------------------------------------------------------------------- /src/Callisto/Extensions/NumericExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timheuer/callisto/HEAD/src/Callisto/Extensions/NumericExtensions.cs -------------------------------------------------------------------------------- /src/Callisto/Extensions/WebViewExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timheuer/callisto/HEAD/src/Callisto/Extensions/WebViewExtension.cs -------------------------------------------------------------------------------- /src/Callisto/LocalizedStrings/cs/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timheuer/callisto/HEAD/src/Callisto/LocalizedStrings/cs/Resources.resw -------------------------------------------------------------------------------- /src/Callisto/LocalizedStrings/da/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timheuer/callisto/HEAD/src/Callisto/LocalizedStrings/da/Resources.resw -------------------------------------------------------------------------------- /src/Callisto/LocalizedStrings/de-de/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timheuer/callisto/HEAD/src/Callisto/LocalizedStrings/de-de/Resources.resw -------------------------------------------------------------------------------- /src/Callisto/LocalizedStrings/el/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timheuer/callisto/HEAD/src/Callisto/LocalizedStrings/el/Resources.resw -------------------------------------------------------------------------------- /src/Callisto/LocalizedStrings/en-GB/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timheuer/callisto/HEAD/src/Callisto/LocalizedStrings/en-GB/Resources.resw -------------------------------------------------------------------------------- /src/Callisto/LocalizedStrings/en-US/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timheuer/callisto/HEAD/src/Callisto/LocalizedStrings/en-US/Resources.resw -------------------------------------------------------------------------------- /src/Callisto/LocalizedStrings/en-ZA/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timheuer/callisto/HEAD/src/Callisto/LocalizedStrings/en-ZA/Resources.resw -------------------------------------------------------------------------------- /src/Callisto/LocalizedStrings/en/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timheuer/callisto/HEAD/src/Callisto/LocalizedStrings/en/Resources.resw -------------------------------------------------------------------------------- /src/Callisto/LocalizedStrings/es-ES/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timheuer/callisto/HEAD/src/Callisto/LocalizedStrings/es-ES/Resources.resw -------------------------------------------------------------------------------- /src/Callisto/LocalizedStrings/fi/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timheuer/callisto/HEAD/src/Callisto/LocalizedStrings/fi/Resources.resw -------------------------------------------------------------------------------- /src/Callisto/LocalizedStrings/fr-FR/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timheuer/callisto/HEAD/src/Callisto/LocalizedStrings/fr-FR/Resources.resw -------------------------------------------------------------------------------- /src/Callisto/LocalizedStrings/hu/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timheuer/callisto/HEAD/src/Callisto/LocalizedStrings/hu/Resources.resw -------------------------------------------------------------------------------- /src/Callisto/LocalizedStrings/it-IT/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timheuer/callisto/HEAD/src/Callisto/LocalizedStrings/it-IT/Resources.resw -------------------------------------------------------------------------------- /src/Callisto/LocalizedStrings/ja/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timheuer/callisto/HEAD/src/Callisto/LocalizedStrings/ja/Resources.resw -------------------------------------------------------------------------------- /src/Callisto/LocalizedStrings/ko/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timheuer/callisto/HEAD/src/Callisto/LocalizedStrings/ko/Resources.resw -------------------------------------------------------------------------------- /src/Callisto/LocalizedStrings/nb-NO/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timheuer/callisto/HEAD/src/Callisto/LocalizedStrings/nb-NO/Resources.resw -------------------------------------------------------------------------------- /src/Callisto/LocalizedStrings/nl-NL/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timheuer/callisto/HEAD/src/Callisto/LocalizedStrings/nl-NL/Resources.resw -------------------------------------------------------------------------------- /src/Callisto/LocalizedStrings/pl/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timheuer/callisto/HEAD/src/Callisto/LocalizedStrings/pl/Resources.resw -------------------------------------------------------------------------------- /src/Callisto/LocalizedStrings/pt-BR/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timheuer/callisto/HEAD/src/Callisto/LocalizedStrings/pt-BR/Resources.resw -------------------------------------------------------------------------------- /src/Callisto/LocalizedStrings/pt-PT/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timheuer/callisto/HEAD/src/Callisto/LocalizedStrings/pt-PT/Resources.resw -------------------------------------------------------------------------------- /src/Callisto/LocalizedStrings/ru/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timheuer/callisto/HEAD/src/Callisto/LocalizedStrings/ru/Resources.resw -------------------------------------------------------------------------------- /src/Callisto/LocalizedStrings/sv-SE/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timheuer/callisto/HEAD/src/Callisto/LocalizedStrings/sv-SE/Resources.resw -------------------------------------------------------------------------------- /src/Callisto/LocalizedStrings/zh-CN/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timheuer/callisto/HEAD/src/Callisto/LocalizedStrings/zh-CN/Resources.resw -------------------------------------------------------------------------------- /src/Callisto/LocalizedStrings/zh-TW/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timheuer/callisto/HEAD/src/Callisto/LocalizedStrings/zh-TW/Resources.resw -------------------------------------------------------------------------------- /src/Callisto/OAuth/OAuthHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timheuer/callisto/HEAD/src/Callisto/OAuth/OAuthHelper.cs -------------------------------------------------------------------------------- /src/Callisto/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timheuer/callisto/HEAD/src/Callisto/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Callisto/XamlTypeInfoBuildTask.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timheuer/callisto/HEAD/src/Callisto/XamlTypeInfoBuildTask.targets -------------------------------------------------------------------------------- /src/Callisto/themes/Generic.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timheuer/callisto/HEAD/src/Callisto/themes/Generic.xaml -------------------------------------------------------------------------------- /src/Design/Callisto.Design/Callisto.Design.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timheuer/callisto/HEAD/src/Design/Callisto.Design/Callisto.Design.csproj -------------------------------------------------------------------------------- /src/Design/Callisto.Design/Common/MetadataRegistrationBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timheuer/callisto/HEAD/src/Design/Callisto.Design/Common/MetadataRegistrationBase.cs -------------------------------------------------------------------------------- /src/Design/Callisto.Design/Common/PlatformTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timheuer/callisto/HEAD/src/Design/Callisto.Design/Common/PlatformTypes.cs -------------------------------------------------------------------------------- /src/Design/Callisto.Design/Common/ToolboxCategoryPaths.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timheuer/callisto/HEAD/src/Design/Callisto.Design/Common/ToolboxCategoryPaths.cs -------------------------------------------------------------------------------- /src/Design/Callisto.Design/CustomDialogMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timheuer/callisto/HEAD/src/Design/Callisto.Design/CustomDialogMetadata.cs -------------------------------------------------------------------------------- /src/Design/Callisto.Design/DynamicTextBlockMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timheuer/callisto/HEAD/src/Design/Callisto.Design/DynamicTextBlockMetadata.cs -------------------------------------------------------------------------------- /src/Design/Callisto.Design/FlipViewIndicatorMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timheuer/callisto/HEAD/src/Design/Callisto.Design/FlipViewIndicatorMetadata.cs -------------------------------------------------------------------------------- /src/Design/Callisto.Design/FlyoutMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timheuer/callisto/HEAD/src/Design/Callisto.Design/FlyoutMetadata.cs -------------------------------------------------------------------------------- /src/Design/Callisto.Design/LiveTileMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timheuer/callisto/HEAD/src/Design/Callisto.Design/LiveTileMetadata.cs -------------------------------------------------------------------------------- /src/Design/Callisto.Design/MenuItemMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timheuer/callisto/HEAD/src/Design/Callisto.Design/MenuItemMetadata.cs -------------------------------------------------------------------------------- /src/Design/Callisto.Design/MenuItemSeparatorMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timheuer/callisto/HEAD/src/Design/Callisto.Design/MenuItemSeparatorMetadata.cs -------------------------------------------------------------------------------- /src/Design/Callisto.Design/MenuMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timheuer/callisto/HEAD/src/Design/Callisto.Design/MenuMetadata.cs -------------------------------------------------------------------------------- /src/Design/Callisto.Design/MetadataRegistration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timheuer/callisto/HEAD/src/Design/Callisto.Design/MetadataRegistration.cs -------------------------------------------------------------------------------- /src/Design/Callisto.Design/NumericUpDownMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timheuer/callisto/HEAD/src/Design/Callisto.Design/NumericUpDownMetadata.cs -------------------------------------------------------------------------------- /src/Design/Callisto.Design/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timheuer/callisto/HEAD/src/Design/Callisto.Design/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Design/Callisto.Design/Properties/Callisto.Controls.CustomDialog.icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timheuer/callisto/HEAD/src/Design/Callisto.Design/Properties/Callisto.Controls.CustomDialog.icon.png -------------------------------------------------------------------------------- /src/Design/Callisto.Design/Properties/Callisto.Controls.DropDownButton.icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timheuer/callisto/HEAD/src/Design/Callisto.Design/Properties/Callisto.Controls.DropDownButton.icon.png -------------------------------------------------------------------------------- /src/Design/Callisto.Design/Properties/Callisto.Controls.DynamicTextBlock.icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timheuer/callisto/HEAD/src/Design/Callisto.Design/Properties/Callisto.Controls.DynamicTextBlock.icon.png -------------------------------------------------------------------------------- /src/Design/Callisto.Design/Properties/Callisto.Controls.FlipViewIndicator.icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timheuer/callisto/HEAD/src/Design/Callisto.Design/Properties/Callisto.Controls.FlipViewIndicator.icon.png -------------------------------------------------------------------------------- /src/Design/Callisto.Design/Properties/Callisto.Controls.Flyout.icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timheuer/callisto/HEAD/src/Design/Callisto.Design/Properties/Callisto.Controls.Flyout.icon.png -------------------------------------------------------------------------------- /src/Design/Callisto.Design/Properties/Callisto.Controls.LiveTile.icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timheuer/callisto/HEAD/src/Design/Callisto.Design/Properties/Callisto.Controls.LiveTile.icon.png -------------------------------------------------------------------------------- /src/Design/Callisto.Design/Properties/Callisto.Controls.Menu.icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timheuer/callisto/HEAD/src/Design/Callisto.Design/Properties/Callisto.Controls.Menu.icon.png -------------------------------------------------------------------------------- /src/Design/Callisto.Design/Properties/Callisto.Controls.NumericUpDown.icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timheuer/callisto/HEAD/src/Design/Callisto.Design/Properties/Callisto.Controls.NumericUpDown.icon.png -------------------------------------------------------------------------------- /src/Design/Callisto.Design/Properties/Callisto.Controls.Rating.icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timheuer/callisto/HEAD/src/Design/Callisto.Design/Properties/Callisto.Controls.Rating.icon.png -------------------------------------------------------------------------------- /src/Design/Callisto.Design/Properties/Callisto.Controls.SettingsFlyout.icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timheuer/callisto/HEAD/src/Design/Callisto.Design/Properties/Callisto.Controls.SettingsFlyout.icon.png -------------------------------------------------------------------------------- /src/Design/Callisto.Design/Properties/Callisto.Controls.WatermarkTextBox.icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timheuer/callisto/HEAD/src/Design/Callisto.Design/Properties/Callisto.Controls.WatermarkTextBox.icon.png -------------------------------------------------------------------------------- /src/Design/Callisto.Design/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timheuer/callisto/HEAD/src/Design/Callisto.Design/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /src/Design/Callisto.Design/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timheuer/callisto/HEAD/src/Design/Callisto.Design/Properties/Resources.resx -------------------------------------------------------------------------------- /src/Design/Callisto.Design/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timheuer/callisto/HEAD/src/Design/Callisto.Design/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /src/Design/Callisto.Design/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timheuer/callisto/HEAD/src/Design/Callisto.Design/Properties/Settings.settings -------------------------------------------------------------------------------- /src/Design/Callisto.Design/RatingItemMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timheuer/callisto/HEAD/src/Design/Callisto.Design/RatingItemMetadata.cs -------------------------------------------------------------------------------- /src/Design/Callisto.Design/RatingMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timheuer/callisto/HEAD/src/Design/Callisto.Design/RatingMetadata.cs -------------------------------------------------------------------------------- /src/Design/Callisto.Design/SettingsFlyoutMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timheuer/callisto/HEAD/src/Design/Callisto.Design/SettingsFlyoutMetadata.cs -------------------------------------------------------------------------------- /src/Design/Callisto.Design/Themes/Generic.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timheuer/callisto/HEAD/src/Design/Callisto.Design/Themes/Generic.xaml -------------------------------------------------------------------------------- /src/Design/Callisto.Design/ToggleMenuItemMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timheuer/callisto/HEAD/src/Design/Callisto.Design/ToggleMenuItemMetadata.cs -------------------------------------------------------------------------------- /src/Design/Callisto.Design/WatermarkTextBoxMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timheuer/callisto/HEAD/src/Design/Callisto.Design/WatermarkTextBoxMetadata.cs -------------------------------------------------------------------------------- /src/Design/Callisto.Design/WrapPanelMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timheuer/callisto/HEAD/src/Design/Callisto.Design/WrapPanelMetadata.cs --------------------------------------------------------------------------------