├── .vs ├── CODE.Framework │ └── v15 │ │ └── sqlite3 │ │ └── storage.ide └── Supercharger │ ├── BuildPackager │ ├── codemap.dat │ ├── global_history.dat │ └── workbench.dat │ ├── CODE.Framework.Core.Utilities │ ├── codemap.dat │ ├── global_history.dat │ └── workbench.dat │ ├── CODE.Framework.Core │ ├── codemap.dat │ ├── global_history.dat │ └── workbench.dat │ ├── CODE.Framework.Services.Client │ ├── codemap.dat │ ├── global_history.dat │ └── workbench.dat │ ├── CODE.Framework.Services.Contracts │ ├── codemap.dat │ ├── global_history.dat │ └── workbench.dat │ ├── CODE.Framework.Services.Server.WebApi │ ├── codemap.dat │ ├── global_history.dat │ └── workbench.dat │ ├── CODE.Framework.Services.Server │ ├── codemap.dat │ ├── global_history.dat │ └── workbench.dat │ ├── CODE.Framework.Services.Tools │ ├── codemap.dat │ ├── global_history.dat │ └── workbench.dat │ ├── CODE.Framework.Wpf.Documents │ ├── codemap.dat │ ├── global_history.dat │ └── workbench.dat │ ├── CODE.Framework.Wpf.Mvvm │ ├── codemap.dat │ ├── global_history.dat │ └── workbench.dat │ ├── CODE.Framework.Wpf.TestBench │ ├── codemap.dat │ ├── global_history.dat │ └── workbench.dat │ ├── CODE.Framework.Wpf.Theme.Battleship │ ├── codemap.dat │ ├── global_history.dat │ └── workbench.dat │ ├── CODE.Framework.Wpf.Theme.Geek │ ├── codemap.dat │ ├── global_history.dat │ └── workbench.dat │ ├── CODE.Framework.Wpf.Theme.Metro │ ├── codemap.dat │ ├── global_history.dat │ └── workbench.dat │ ├── CODE.Framework.Wpf.Theme.Newsroom │ ├── codemap.dat │ ├── global_history.dat │ └── workbench.dat │ ├── CODE.Framework.Wpf.Theme.Universe │ ├── codemap.dat │ ├── global_history.dat │ └── workbench.dat │ ├── CODE.Framework.Wpf.Theme.Vapor │ ├── codemap.dat │ ├── global_history.dat │ └── workbench.dat │ ├── CODE.Framework.Wpf.Theme.Wildcat │ ├── codemap.dat │ ├── global_history.dat │ └── workbench.dat │ ├── CODE.Framework.Wpf.Theme.Workplace │ ├── codemap.dat │ ├── global_history.dat │ └── workbench.dat │ ├── CODE.Framework.Wpf │ ├── code_marker.dat │ ├── codemap.dat │ ├── global_history.dat │ ├── rich_code_format.dat │ └── workbench.dat │ └── _SharedFiles │ ├── codemap.dat │ ├── global_history.dat │ └── workbench.dat ├── Binaries ├── Debug │ ├── CODE.Framework.Core.Utilities.XML │ ├── CODE.Framework.Core.Utilities.dll │ ├── CODE.Framework.Core.Utilities.pdb │ ├── CODE.Framework.Core.XML │ ├── CODE.Framework.Core.dll │ ├── CODE.Framework.Core.pdb │ ├── CODE.Framework.Services.Client.XML │ ├── CODE.Framework.Services.Client.dll │ ├── CODE.Framework.Services.Client.pdb │ ├── CODE.Framework.Services.Contracts.XML │ ├── CODE.Framework.Services.Contracts.dll │ ├── CODE.Framework.Services.Contracts.pdb │ ├── CODE.Framework.Services.Server.WebApi.XML │ ├── CODE.Framework.Services.Server.WebApi.dll │ ├── CODE.Framework.Services.Server.WebApi.pdb │ ├── CODE.Framework.Services.Server.XML │ ├── CODE.Framework.Services.Server.dll │ ├── CODE.Framework.Services.Server.pdb │ ├── CODE.Framework.Services.Tools.XML │ ├── CODE.Framework.Services.Tools.dll │ ├── CODE.Framework.Services.Tools.pdb │ ├── CODE.Framework.Wpf.Documents.XML │ ├── CODE.Framework.Wpf.Documents.dll │ ├── CODE.Framework.Wpf.Documents.pdb │ ├── CODE.Framework.Wpf.Mvvm.XML │ ├── CODE.Framework.Wpf.Mvvm.dll │ ├── CODE.Framework.Wpf.Mvvm.pdb │ ├── CODE.Framework.Wpf.Theme.Battleship.dll │ ├── CODE.Framework.Wpf.Theme.Battleship.pdb │ ├── CODE.Framework.Wpf.Theme.Battleship.xml │ ├── CODE.Framework.Wpf.Theme.Geek.dll │ ├── CODE.Framework.Wpf.Theme.Geek.pdb │ ├── CODE.Framework.Wpf.Theme.Geek.xml │ ├── CODE.Framework.Wpf.Theme.Metro.dll │ ├── CODE.Framework.Wpf.Theme.Metro.pdb │ ├── CODE.Framework.Wpf.Theme.Metro.xml │ ├── CODE.Framework.Wpf.Theme.Newsroom.XML │ ├── CODE.Framework.Wpf.Theme.Newsroom.dll │ ├── CODE.Framework.Wpf.Theme.Newsroom.pdb │ ├── CODE.Framework.Wpf.Theme.Universe.xml │ ├── CODE.Framework.Wpf.Theme.Vapor.dll │ ├── CODE.Framework.Wpf.Theme.Vapor.pdb │ ├── CODE.Framework.Wpf.Theme.Vapor.xml │ ├── CODE.Framework.Wpf.Theme.Wildcat.dll │ ├── CODE.Framework.Wpf.Theme.Wildcat.pdb │ ├── CODE.Framework.Wpf.Theme.Wildcat.xml │ ├── CODE.Framework.Wpf.Theme.Workplace.dll │ ├── CODE.Framework.Wpf.Theme.Workplace.pdb │ ├── CODE.Framework.Wpf.Theme.Workplace.xml │ ├── CODE.Framework.Wpf.XML │ ├── CODE.Framework.Wpf.dll │ ├── CODE.Framework.Wpf.pdb │ ├── Newtonsoft.Json.xml │ └── System.Net.Http.xml └── Release │ ├── CODE.Framework.Core.Utilities.XML │ ├── CODE.Framework.Core.Utilities.dll │ ├── CODE.Framework.Core.Utilities.pdb │ ├── CODE.Framework.Core.XML │ ├── CODE.Framework.Core.dll │ ├── CODE.Framework.Core.pdb │ ├── CODE.Framework.Services.Client.XML │ ├── CODE.Framework.Services.Client.dll │ ├── CODE.Framework.Services.Client.pdb │ ├── CODE.Framework.Services.Contracts.XML │ ├── CODE.Framework.Services.Contracts.dll │ ├── CODE.Framework.Services.Contracts.pdb │ ├── CODE.Framework.Services.Server.WebApi.XML │ ├── CODE.Framework.Services.Server.WebApi.dll │ ├── CODE.Framework.Services.Server.WebApi.pdb │ ├── CODE.Framework.Services.Server.XML │ ├── CODE.Framework.Services.Server.dll │ ├── CODE.Framework.Services.Server.pdb │ ├── CODE.Framework.Services.Tools.XML │ ├── CODE.Framework.Services.Tools.dll │ ├── CODE.Framework.Services.Tools.pdb │ ├── CODE.Framework.Wpf.Documents.XML │ ├── CODE.Framework.Wpf.Documents.dll │ ├── CODE.Framework.Wpf.Documents.pdb │ ├── CODE.Framework.Wpf.Mvvm.XML │ ├── CODE.Framework.Wpf.Mvvm.dll │ ├── CODE.Framework.Wpf.Mvvm.pdb │ ├── CODE.Framework.Wpf.Theme.Battleship.dll │ ├── CODE.Framework.Wpf.Theme.Battleship.pdb │ ├── CODE.Framework.Wpf.Theme.Battleship.xml │ ├── CODE.Framework.Wpf.Theme.Geek.dll │ ├── CODE.Framework.Wpf.Theme.Geek.pdb │ ├── CODE.Framework.Wpf.Theme.Geek.xml │ ├── CODE.Framework.Wpf.Theme.Metro.dll │ ├── CODE.Framework.Wpf.Theme.Metro.pdb │ ├── CODE.Framework.Wpf.Theme.Metro.xml │ ├── CODE.Framework.Wpf.Theme.Newsroom.XML │ ├── CODE.Framework.Wpf.Theme.Newsroom.dll │ ├── CODE.Framework.Wpf.Theme.Newsroom.pdb │ ├── CODE.Framework.Wpf.Theme.Universe.XML │ ├── CODE.Framework.Wpf.Theme.Vapor.dll │ ├── CODE.Framework.Wpf.Theme.Vapor.pdb │ ├── CODE.Framework.Wpf.Theme.Vapor.xml │ ├── CODE.Framework.Wpf.Theme.Wildcat.dll │ ├── CODE.Framework.Wpf.Theme.Wildcat.pdb │ ├── CODE.Framework.Wpf.Theme.Wildcat.xml │ ├── CODE.Framework.Wpf.Theme.Workplace.dll │ ├── CODE.Framework.Wpf.Theme.Workplace.pdb │ ├── CODE.Framework.Wpf.Theme.Workplace.xml │ ├── CODE.Framework.Wpf.XML │ ├── CODE.Framework.Wpf.dll │ ├── CODE.Framework.Wpf.pdb │ └── Newtonsoft.Json.xml ├── BuildPackager ├── BuildPackager.csproj ├── Program.cs └── Properties │ └── AssemblyInfo.cs ├── BuildPackagerBuildPackager.csproj ├── CODE.Framework.Core.Utilities ├── CODE.Framework.Core.Utilities.csproj ├── ColorHelper.cs ├── Csv │ ├── CachedCsvReader.CsvBindingList.cs │ ├── CachedCsvReader.CsvPropertyDescriptor.cs │ ├── CachedCsvReader.CsvRecordComparer.cs │ ├── CachedCsvReader.cs │ ├── CsvReader.DataReaderValidations.cs │ ├── CsvReader.RecordEnumerator.cs │ ├── CsvReader.cs │ ├── MalformedCsvException.cs │ ├── MissingFieldAction.cs │ ├── MissingFieldCsvException.cs │ ├── ParseErrorAction.cs │ └── ParseErrorEventArgs.cs ├── DataHelper.cs ├── EmailHelper.cs ├── EmailLogger.cs ├── Extensions │ ├── ColorExtensions.cs │ ├── ImageExtensions.cs │ └── MarkupExtensions.cs ├── ImageHelper.cs ├── Mapper.cs ├── MarkupHelper.cs ├── NetworkHelper.cs ├── PowerHelper.cs └── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ └── Resources.resx ├── CODE.Framework.Core ├── CODE.Framework.Core.csproj ├── ComponentModel │ ├── DataBindingInterfaces.cs │ ├── DataLoadController.cs │ ├── DataLoaderInterfaces.cs │ ├── EditDataLoader.cs │ ├── FilterableInterface.cs │ └── SortableInterface.cs ├── Configuration │ ├── ConfigurationSettings.cs │ ├── ConfigurationSettingsSourcesCollection.cs │ ├── ConfigurationSource.cs │ ├── ConfigurationSourceMemorySettings.cs │ ├── ConfigurationSourceSetting.cs │ ├── DotNetConfigurationFile.cs │ ├── IConfigurationSource.cs │ ├── MemorySettings.cs │ ├── SecureConfigurationFile.cs │ ├── SettingNotSupportedException.cs │ ├── SettingReadOnlyException.cs │ ├── Settings.cs │ └── SourcesCollection.cs ├── Exceptions │ ├── IndexOutOfBounds.cs │ ├── MissingConfigurationSetting.cs │ └── NullReferenceException.cs ├── Newtonsoft │ ├── Bson │ │ ├── BsonBinaryType.cs │ │ ├── BsonBinaryWriter.cs │ │ ├── BsonObjectId.cs │ │ ├── BsonReader.cs │ │ ├── BsonToken.cs │ │ ├── BsonType.cs │ │ └── BsonWriter.cs │ ├── ConstructorHandling.cs │ ├── Converters │ │ ├── BinaryConverter.cs │ │ ├── BsonObjectIdConverter.cs │ │ ├── DataSetConverter.cs │ │ ├── DataTableConverter.cs │ │ ├── DateTimeConverterBase.cs │ │ ├── DiscriminatedUnionConverter.cs │ │ ├── EntityKeyMemberConverter.cs │ │ ├── ExpandoObjectConverter.cs │ │ ├── JavaScriptDateTimeConverter.cs │ │ ├── KeyValuePairConverter.cs │ │ ├── RegexConverter.cs │ │ └── XmlNodeConverter.cs │ ├── DateFormatHandling.cs │ ├── DateParseHandling.cs │ ├── DateTimeZoneHandling.cs │ ├── DefaultValueHandling.cs │ ├── FloatFormatHandling.cs │ ├── FloatParseHandling.cs │ ├── Formatting.cs │ ├── IArrayPool.cs │ ├── IJsonLineInfo.cs │ ├── JsonArrayAttribute.cs │ ├── JsonConstructorAttribute.cs │ ├── JsonContainerAttribute.cs │ ├── JsonConvert.cs │ ├── JsonConverter.cs │ ├── JsonConverterAttribute.cs │ ├── JsonConverterCollection.cs │ ├── JsonDictionaryAttribute.cs │ ├── JsonException.cs │ ├── JsonExtensionDataAttribute.cs │ ├── JsonIgnoreAttribute.cs │ ├── JsonObjectAttribute.cs │ ├── JsonPosition.cs │ ├── JsonPropertyAttribute.cs │ ├── JsonReader.cs │ ├── JsonReaderException.cs │ ├── JsonSerializationException.cs │ ├── JsonSerializer.cs │ ├── JsonSerializerSettings.cs │ ├── JsonTextReader.cs │ ├── JsonTextWriter.cs │ ├── JsonToken.cs │ ├── JsonWriter.cs │ ├── JsonWriterException.cs │ ├── Linq │ │ ├── CommentHandling.cs │ │ ├── Enums.cs │ │ ├── Extensions.cs │ │ ├── IJEnumerable.cs │ │ ├── JArray.cs │ │ ├── JConstructor.cs │ │ ├── JContainer.cs │ │ ├── JEnumerable.cs │ │ ├── JObject.cs │ │ ├── JProperty.cs │ │ ├── JPropertyDescriptor.cs │ │ ├── JPropertyKeyedCollection.cs │ │ ├── JRaw.cs │ │ ├── JToken.cs │ │ ├── JTokenEqualityComparer.cs │ │ ├── JTokenReader.cs │ │ ├── JTokenWriter.cs │ │ ├── JValue.cs │ │ ├── JsonLoadSettings.cs │ │ ├── JsonMergeSettings.cs │ │ ├── JsonPath │ │ │ ├── ArrayIndexFilter.cs │ │ │ ├── ArrayMultipleIndexFilter.cs │ │ │ ├── ArraySliceFilter.cs │ │ │ ├── FieldFilter.cs │ │ │ ├── FieldMultipleFilter.cs │ │ │ ├── JPath.cs │ │ │ ├── PathFilter.cs │ │ │ ├── QueryExpression.cs │ │ │ ├── QueryFilter.cs │ │ │ ├── QueryScanFilter.cs │ │ │ ├── RootFilter.cs │ │ │ ├── ScanFilter.cs │ │ │ └── ScanMultipleFilter.cs │ │ └── MergeNullValueHandling.cs │ ├── MemberSerialization.cs │ ├── MetaPropertyHandling.cs │ ├── MissingMemberHandling.cs │ ├── NullValueHandling.cs │ ├── ObjectCreationHandling.cs │ ├── PreserveReferencesHandling.cs │ ├── ReferenceLoopHandling.cs │ ├── Required.cs │ ├── Schema │ │ ├── JsonSchema.cs │ │ ├── JsonSchemaBuilder.cs │ │ ├── JsonSchemaConstants.cs │ │ ├── JsonSchemaResolver.cs │ │ ├── JsonSchemaType.cs │ │ └── JsonSchemaWriter.cs │ ├── Serialization │ │ ├── CachedAttributeGetter.cs │ │ ├── CamelCaseNamingStrategy.cs │ │ ├── CamelCasePropertyNamesContractResolver.cs │ │ ├── DefaultContractResolver.cs │ │ ├── DefaultReferenceResolver.cs │ │ ├── DefaultSerializationBinder.cs │ │ ├── DynamicValueProvider.cs │ │ ├── ErrorContext.cs │ │ ├── ErrorEventArgs.cs │ │ ├── IAttributeProvider.cs │ │ ├── IContractResolver.cs │ │ ├── IReferenceResolver.cs │ │ ├── ISerializationBinder.cs │ │ ├── JsonArrayContract.cs │ │ ├── JsonContainerContract.cs │ │ ├── JsonContract.cs │ │ ├── JsonDictionaryContract.cs │ │ ├── JsonDynamicContract.cs │ │ ├── JsonFormatterConverter.cs │ │ ├── JsonISerializableContract.cs │ │ ├── JsonLinqContract.cs │ │ ├── JsonObjectContract.cs │ │ ├── JsonPrimitiveContract.cs │ │ ├── JsonProperty.cs │ │ ├── JsonPropertyCollection.cs │ │ ├── JsonSerializerInternalBase.cs │ │ ├── JsonSerializerInternalReader.cs │ │ ├── JsonSerializerInternalWriter.cs │ │ ├── JsonSerializerProxy.cs │ │ ├── JsonStringContract.cs │ │ ├── JsonTypeReflector.cs │ │ ├── NamingStrategy.cs │ │ ├── ObjectConstructor.cs │ │ ├── OnErrorAttribute.cs │ │ ├── ReflectionAttributeProvider.cs │ │ ├── ReflectionValueProvider.cs │ │ ├── SerializationBinderAdapter.cs │ │ ├── TraceJsonReader.cs │ │ ├── TraceJsonWriter.cs │ │ ├── TraceWriter.cs │ │ └── ValueProvider.cs │ ├── StringEscapeHandling.cs │ ├── TypeNameAssemblyFormatHandling.cs │ ├── TypeNameHandling.cs │ ├── Utilities │ │ ├── Base64Encoder.cs │ │ ├── BidirectionalDictionary.cs │ │ ├── CollectionUtils.cs │ │ ├── CollectionWrapper.cs │ │ ├── ConvertUtils.cs │ │ ├── DateTimeParser.cs │ │ ├── DateTimeUtils.cs │ │ ├── DictionaryWrapper.cs │ │ ├── DynamicProxy.cs │ │ ├── DynamicProxyMetaObject.cs │ │ ├── DynamicReflectionDelegateFactory.cs │ │ ├── DynamicUtils.cs │ │ ├── EnumUtils.cs │ │ ├── EnumValue.cs │ │ ├── FSharpUtils.cs │ │ ├── ILGeneratorExtensions.cs │ │ ├── ImmutableCollectionUtils.cs │ │ ├── JavaScriptUtils.cs │ │ ├── JsonTokenUtils.cs │ │ ├── LateBoundReflectionGeneratorFactory.cs │ │ ├── MathUtils.cs │ │ ├── MethodCall.cs │ │ ├── MiscellaneousUtils.cs │ │ ├── PropertyNameTable.cs │ │ ├── ReflectionDelegateFactory.cs │ │ ├── ReflectionObject.cs │ │ ├── ReflectionUtils.cs │ │ ├── StringBuffer.cs │ │ ├── StringReference.cs │ │ ├── StringUtils.cs │ │ ├── ThreadSafeStore.cs │ │ ├── TypeExtensions.cs │ │ └── ValidationUtils.cs │ └── WriteState.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ └── Resources.resx └── Utilities │ ├── EnumHelper.cs │ ├── ExceptionHelper.cs │ ├── Extensions │ └── StringExtensions.cs │ ├── HttpHelper.cs │ ├── If.cs │ ├── JsonHelper.cs │ ├── Logger.cs │ ├── LoggingMediator.cs │ ├── ObjectHelper.cs │ ├── SecurityHelper.cs │ ├── SettingsManager.cs │ ├── StreamHelper.cs │ ├── StringHelper.cs │ ├── TransparentProxyGenerator.cs │ ├── XmlHelper.cs │ └── Zip.cs ├── CODE.Framework.Services.Client ├── CODE.Framework.Services.Client.csproj ├── Enums.cs ├── Properties │ └── AssemblyInfo.cs ├── RestHelper.cs ├── RestProxyHandler.cs ├── ServiceClient.cs ├── ServiceGardenLocal.cs └── ServiceHelper.cs ├── CODE.Framework.Services.Contracts ├── CODE.Framework.Services.Contracts.csproj ├── Properties │ └── AssemblyInfo.cs └── RestAttribute.cs ├── CODE.Framework.Services.Server.WebApi ├── CODE.Framework.Services.Server.WebApi.csproj ├── Properties │ └── AssemblyInfo.cs ├── ServiceHostController.cs └── packages.config ├── CODE.Framework.Services.Server ├── CODE.Framework.Services.Server.csproj ├── Contracts │ └── ClientAccessPolicy.cs ├── CrossDomainScriptBehavior.cs ├── JsonBehavior.cs ├── Properties │ └── AssemblyInfo.cs ├── RESTAtrributes.cs ├── STAOperation.cs ├── ServiceGarden.cs └── ServiceHelper.cs ├── CODE.Framework.Services.Tools ├── CODE.Framework.Services.Tools.csproj ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ └── Resources.resx ├── Resources │ └── CodeFramework_Logo160.png ├── Windows │ ├── ServiceTestHarness.cs │ ├── ServiceTestHarness.designer.cs │ ├── ServiceTestHarness.resx │ ├── ServiceTestHarnessUI.xaml │ ├── ServiceTestHarnessUI.xaml.cs │ ├── ShowDataContract.cs │ ├── ShowDataContract.designer.cs │ ├── ShowDataContract.resx │ ├── TestServiceHost.cs │ ├── TestServiceHost.designer.cs │ └── TestServiceHost.resx └── comments.xml ├── CODE.Framework.Wpf.Documents ├── CODE.Framework.Wpf.Documents.csproj ├── DocEx.cs ├── DocumentDataTemplate.cs ├── DocumentFragment.cs ├── DocumentMultiFragment.cs ├── DocumentPaginatorEx.cs ├── FlowDocumentEx.cs ├── HtmlParagraph.cs ├── HtmlSection.cs ├── HtmlTextBlock.cs ├── HtmlToXamlHelper.cs ├── PageCount.cs ├── PrintHelper.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings └── RepeatingSection.cs ├── CODE.Framework.Wpf.Layout ├── CODE.Framework.Wpf.Layout.csproj ├── MetroTiles.cs └── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── CODE.Framework.Wpf.Mvvm ├── ActionGrid.cs ├── Actions.cs ├── ApplicationEx.cs ├── AsyncLoader.cs ├── Behaviors.cs ├── CODE.Framework.Wpf.Mvvm.csproj ├── Controller.cs ├── IAttachableObject.cs ├── IHaveViewInformation.cs ├── IModelStatus.cs ├── IThemeStandardFeatures.cs ├── IViewInformation.cs ├── ModelStatusGrid.cs ├── ObservableCollectionHelper.cs ├── PartialView.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── Shell.cs ├── ShellLauncher.cs ├── StandardActions.cs ├── StandardLayouts.cs ├── StandardViewModel.cs ├── StandardViewPlaceholder.cs ├── ThemeIcon.cs ├── Tools │ ├── ViewVisualizer.xaml │ └── ViewVisualizer.xaml.cs ├── Universe-Control-PasswordBox.xaml ├── View.cs ├── ViewActionAndOpenViewSelector.cs ├── ViewActionHelper.cs ├── ViewActionItemsControl.cs ├── ViewActionMenu.cs ├── ViewActionMenuButton.cs ├── ViewActionPolicy.cs ├── ViewActionRibbon.cs ├── ViewActionStackPanel.cs ├── ViewActionTabPanel.cs ├── ViewActionToolbar.cs ├── ViewContentControl.cs ├── ViewEngine.cs ├── ViewHostTabControl.cs └── ViewModel.cs ├── CODE.Framework.Wpf.TestBench ├── App.config ├── App.xaml ├── App.xaml.cs ├── AsyncTest.xaml ├── AsyncTest.xaml.cs ├── AutoCompleteTest.xaml ├── AutoCompleteTest.xaml.cs ├── BiStackTest.xaml ├── BiStackTest.xaml.cs ├── BiStackTest2.xaml ├── BiStackTest2.xaml.cs ├── BladeTest.xaml ├── BladeTest.xaml.cs ├── ButtonMenuTest.xaml ├── ButtonMenuTest.xaml.cs ├── CODE.Framework.Wpf.TestBench.csproj ├── CalendarTest.xaml ├── CalendarTest.xaml.cs ├── CanExecuteChangedTest.xaml ├── CanExecuteChangedTest.xaml.cs ├── CapsLockTest.xaml ├── CapsLockTest.xaml.cs ├── ColumnComboBox.xaml ├── ColumnComboBox.xaml.cs ├── ColumnListBox.xaml ├── ColumnListBox.xaml.cs ├── CustomBehaviorWindow.xaml ├── CustomBehaviorWindow.xaml.cs ├── Disclaimer.xaml ├── Disclaimer.xaml.cs ├── DockContainerTest.xaml ├── DockContainerTest.xaml.cs ├── EditFormTest.xaml ├── EditFormTest.xaml.cs ├── EventCommandTest.xaml ├── EventCommandTest.xaml.cs ├── ExampleListInRibbon.xaml ├── ExampleListInRibbon.xaml.cs ├── FileIcon.xaml ├── FlowDocumentReaderTest.xaml ├── FlowDocumentReaderTest.xaml.cs ├── FlowFormTest.xaml ├── FlowFormTest.xaml.cs ├── FolderIcon.xaml ├── FontControls.xaml ├── FontControls.xaml.cs ├── LazyList.xaml ├── LazyList.xaml.cs ├── ListBoxGrid.xaml ├── ListBoxGrid.xaml.cs ├── ListBoxGridReadOnly.xaml ├── ListBoxGridReadOnly.xaml.cs ├── ListDependencyProperties.xaml ├── ListDependencyProperties.xaml.cs ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── MetroControls.xaml ├── MetroControls.xaml.cs ├── MetroListBoxes.xaml ├── MetroListBoxes.xaml.cs ├── MultiPanelTest.xaml ├── MultiPanelTest.xaml.cs ├── ObjectHelperTest.xaml ├── ObjectHelperTest.xaml.cs ├── PanelSizeAndVisibilityTest.xaml ├── PanelSizeAndVisibilityTest.xaml.cs ├── PanoramaTest.xaml ├── PanoramaTest.xaml.cs ├── PrimarySecondaryHorizontalTest.xaml ├── PrimarySecondaryHorizontaltest.xaml.cs ├── ProgressAnimations.xaml ├── ProgressAnimations.xaml.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── PropertySheetTest.xaml ├── PropertySheetTest.xaml.cs ├── RangeSliderTest.xaml ├── RangeSliderTest.xaml.cs ├── RibbonTest.xaml ├── RibbonTest.xaml.cs ├── SaveWindowSettingsTest.xaml ├── SaveWindowSettingsTest.xaml.cs ├── ScaleSliderTest.xaml ├── ScaleSliderTest.xaml.cs ├── SettingsTest.xaml ├── SettingsTest.xaml.cs ├── SizeAwareContentTest.xaml ├── SizeAwareContentTest.xaml.cs ├── SizeCalcEx.xaml ├── SizeCalcEx.xaml.cs ├── SliderTest.xaml ├── SliderTest.xaml.cs ├── SpellCheck.xaml ├── SpellCheck.xaml.cs ├── StandardIcons.xaml ├── StandardIcons.xaml.cs ├── StickyNoteTest.xaml ├── StickyNoteTest.xaml.cs ├── SyncCollectionTest.xaml ├── SyncCollectionTest.xaml.cs ├── SystemMetricsTests.xaml ├── SystemMetricsTests.xaml.cs ├── TabItemsPanelTest.xaml ├── TabItemsPanelTest.xaml.cs ├── TextBlockExTest.xaml ├── TextBlockExTest.xaml.cs ├── TextBoxTest.xaml ├── TextBoxTest.xaml.cs ├── TreeViewTest.xaml ├── TreeViewTest.xaml.cs ├── ViewActionItemsControlTest.xaml ├── ViewActionItemsControlTest.xaml.cs ├── ViewActionMenuTest.xaml └── ViewActionMenuTest.xaml.cs ├── CODE.Framework.Wpf.Theme.Battleship ├── Battleship-Control-Button.xaml ├── Battleship-Control-CapsLockWarning.xaml ├── Battleship-Control-ComboBox.xaml ├── Battleship-Control-FlowDocumentReader.xaml ├── Battleship-Control-Label.xaml ├── Battleship-Control-ListBox.xaml ├── Battleship-Control-Menu.xaml ├── Battleship-Control-PasswordBox.xaml ├── Battleship-Control-ScrollBar.xaml ├── Battleship-Control-TabControl.xaml ├── Battleship-Control-TextBlock.xaml ├── Battleship-Control-Textbox.xaml ├── Battleship-Icon-Standard.xaml ├── Battleship-Layout-BladePanel.xaml ├── Battleship-Layout-EditForm.xaml ├── Battleship-Layout-FlowForm.xaml ├── Battleship-Layout-MultiPanel.xaml ├── Battleship-Layout-OneToManyPanel.xaml ├── Battleship-Layout-PrimarySecondaryForm.xaml ├── Battleship-Layout-SimpleForm.xaml ├── Battleship-Layout-StandardForm.xaml ├── Battleship-Layout-Tabs.xaml ├── Battleship-MessageBox-Icon-Asterisk.xaml ├── Battleship-MessageBox-Icon-Error.xaml ├── Battleship-MessageBox-Icon-Exclamation.xaml ├── Battleship-MessageBox-Icon-Hand.xaml ├── Battleship-MessageBox-Icon-Information.xaml ├── Battleship-MessageBox-Icon-Question.xaml ├── Battleship-MessageBox-Icon-Stop.xaml ├── Battleship-MessageBox-Icon-Warning.xaml ├── Battleship-Print.xaml ├── Battleship-Shell.xaml ├── Battleship-StandardDataTemplates.xaml ├── Battleship-StandardTypes.xaml ├── CODE.Framework.Wpf.Theme.Battleship.csproj ├── Classes │ └── BattleshipStandardFeatures.cs ├── Colors.xaml ├── Controls │ └── BattleshipMenu.cs ├── Fonts.xaml ├── Properties │ └── AssemblyInfo.cs ├── Standard │ ├── Notification.xaml │ └── Notification.xaml.cs ├── ThemeRoot.xaml ├── ejujw1od.tmp_proj └── html │ └── M-CODE.Framework.Services.Server.WebApi.ServiceHostController-1.ExecuteAsync.htm ├── CODE.Framework.Wpf.Theme.Geek ├── CODE.Framework.Wpf.Theme.Geek.csproj ├── Classes │ └── GeekStandardFeatures.cs ├── Colors.xaml ├── Controls │ ├── CloseNotificationsButton.cs │ ├── GeekPrimarySecondary.cs │ └── GeekShellZoomSlider.cs ├── Fonts.xaml ├── Geek-Control-Button.xaml ├── Geek-Control-CapsLockWarning.xaml ├── Geek-Control-ComboBox.xaml ├── Geek-Control-FlowDocumentReader.xaml ├── Geek-Control-Label.xaml ├── Geek-Control-ListBox.xaml ├── Geek-Control-Menu.xaml ├── Geek-Control-PasswordBox.xaml ├── Geek-Control-TextBlock.xaml ├── Geek-Control-Textbox.xaml ├── Geek-Control-ZoomSlider.xaml ├── Geek-Icon-Standard.xaml ├── Geek-Layout-BladePanel.xaml ├── Geek-Layout-EditForm.xaml ├── Geek-Layout-FlowForm.xaml ├── Geek-Layout-MultiPanel.xaml ├── Geek-Layout-OneToManyPanel.xaml ├── Geek-Layout-PrimarySecondaryForm.xaml ├── Geek-Layout-SimpleForm.xaml ├── Geek-Layout-StandardForm.xaml ├── Geek-Layout-Tabs.xaml ├── Geek-MessageBox-Icon-Asterisk.xaml ├── Geek-MessageBox-Icon-Error.xaml ├── Geek-MessageBox-Icon-Exclamation.xaml ├── Geek-MessageBox-Icon-Hand.xaml ├── Geek-MessageBox-Icon-Information.xaml ├── Geek-MessageBox-Icon-Question.xaml ├── Geek-MessageBox-Icon-Stop.xaml ├── Geek-MessageBox-Icon-Warning.xaml ├── Geek-Print.xaml ├── Geek-Shell.xaml ├── Geek-StandardDataTemplates.xaml ├── Geek-StandardTypes.xaml ├── Properties │ └── AssemblyInfo.cs ├── Standard │ ├── Notification.xaml │ └── Notification.xaml.cs ├── ThemeRoot.xaml ├── comments.xml └── hs3lkqko.tmp_proj ├── CODE.Framework.Wpf.Theme.Metro ├── CODE.Framework.Wpf.Theme.Metro.csproj ├── Classes │ ├── AvailabilityToVisibilityConverter.cs │ ├── ContextBindingDummy.cs │ ├── HorizontalScrollEnabledToVisibilityConverter.cs │ ├── MetroStandardFeatures.cs │ ├── PointingDeviceInputModeToMarginConverter.cs │ └── TileTemplateSelector.cs ├── Colors.xaml ├── Controls │ ├── CircularProgressAnimation.cs │ ├── LinearProgressAnimation.cs │ ├── MetroScrollViewer.cs │ ├── PeekAnimationContainer.cs │ ├── ShellMetroTiles.cs │ ├── ShellTabControl.cs │ └── SizeAwareContentControl.cs ├── Fonts.xaml ├── Metro-ApplicationLogos.xaml ├── Metro-Control-AppBarButton.xaml ├── Metro-Control-Button.xaml ├── Metro-Control-Calendar.xaml ├── Metro-Control-CapsLockWarning.xaml ├── Metro-Control-Checkbox.xaml ├── Metro-Control-ComboBox.xaml ├── Metro-Control-DatePicker.xaml ├── Metro-Control-FlowDocumentReader.xaml ├── Metro-Control-GroupBox.xaml ├── Metro-Control-Label.xaml ├── Metro-Control-ListBox.xaml ├── Metro-Control-Menu.xaml ├── Metro-Control-MetroTiles.xaml ├── Metro-Control-PasswordBox.xaml ├── Metro-Control-RadioButton.xaml ├── Metro-Control-RichTextBox.xaml ├── Metro-Control-ScrollBar.xaml ├── Metro-Control-Slider.xaml ├── Metro-Control-TabControl.xaml ├── Metro-Control-Textblock.xaml ├── Metro-Control-Textbox.xaml ├── Metro-Control-ViewActionItemsControl.xaml ├── Metro-Icon-Arrow.xaml ├── Metro-Icon-Standard.xaml ├── Metro-Layout-BladePanel.xaml ├── Metro-Layout-EditForm.xaml ├── Metro-Layout-FlowForm.xaml ├── Metro-Layout-MultiPanel.xaml ├── Metro-Layout-OneToManyPanel.xaml ├── Metro-Layout-PrimarySecondaryForm.xaml ├── Metro-Layout-SimpleForm.xaml ├── Metro-Layout-StandardForm.xaml ├── Metro-Layout-Tabs.xaml ├── Metro-MessageBox-Icon-Asterisk.xaml ├── Metro-MessageBox-Icon-Error.xaml ├── Metro-MessageBox-Icon-Exclamation.xaml ├── Metro-MessageBox-Icon-Hand.xaml ├── Metro-MessageBox-Icon-Information.xaml ├── Metro-MessageBox-Icon-Question.xaml ├── Metro-MessageBox-Icon-Stop.xaml ├── Metro-MessageBox-Icon-Warning.xaml ├── Metro-Print.xaml ├── Metro-Shell.xaml ├── Metro-StandardDataTemplates.xaml ├── Metro-StandardTypes.xaml ├── Properties │ └── AssemblyInfo.cs ├── StandardViews │ ├── Block.xaml │ ├── Block.xaml.cs │ ├── Components │ │ ├── LogoNameAndCount.xaml │ │ └── LogoNameAndCount.xaml.cs │ ├── Data01.xaml │ ├── Data01.xaml.cs │ ├── Data02.xaml │ ├── Data02.xaml.cs │ ├── Data03.xaml │ ├── Data03.xaml.cs │ ├── DataAndImage01.xaml │ ├── DataAndImage01.xaml.cs │ ├── DataAndImage02.xaml │ ├── DataAndImage02.xaml.cs │ ├── DataAndImage03.xaml │ ├── DataAndImage03.xaml.cs │ ├── DataRowAndImage01.xaml │ ├── DataRowAndImage01.xaml.cs │ ├── DataSmall01.xaml │ ├── DataSmall01.xaml.cs │ ├── DataSmall02.xaml │ ├── DataSmall02.xaml.cs │ ├── DataSmall03.xaml │ ├── DataSmall03.xaml.cs │ ├── Fallback.xaml │ ├── Fallback.xaml.cs │ ├── Image.xaml │ ├── Image.xaml.cs │ ├── LargeBlockAndText01.xaml │ ├── LargeBlockAndText01.xaml.cs │ ├── LargeBlockAndText02.xaml │ ├── LargeBlockAndText02.xaml.cs │ ├── LargeImage.xaml │ ├── LargeImage.xaml.cs │ ├── LargeImageAndText01.xaml │ ├── LargeImageAndText01.xaml.cs │ ├── LargeImageAndText02.xaml │ ├── LargeImageAndText02.xaml.cs │ ├── LargeImageCollection.xaml │ ├── LargeImageCollection.xaml.cs │ ├── LargePeekImageAndText01.xaml │ ├── LargePeekImageAndText01.xaml.cs │ ├── LargePeekImageAndText02.xaml │ ├── LargePeekImageAndText02.xaml.cs │ ├── LargePeekImageAndText03.xaml │ ├── LargePeekImageAndText03.xaml.cs │ ├── LargePeekImageAndText04.xaml │ ├── LargePeekImageAndText04.xaml.cs │ ├── LargePeekImageAndText05.xaml │ ├── LargePeekImageAndText05.xaml.cs │ ├── LargePeekImageAndText06.xaml │ ├── LargePeekImageAndText06.xaml.cs │ ├── LargePeekImageCollection01.xaml │ ├── LargePeekImageCollection01.xaml.cs │ ├── LargePeekImageCollection02.xaml │ ├── LargePeekImageCollection02.xaml.cs │ ├── LargePeekImageCollection03.xaml │ ├── LargePeekImageCollection03.xaml.cs │ ├── LargePeekImageCollection04.xaml │ ├── LargePeekImageCollection04.xaml.cs │ ├── LargePeekImageCollection05.xaml │ ├── LargePeekImageCollection05.xaml.cs │ ├── LargePeekImageCollection06.xaml │ ├── LargePeekImageCollection06.xaml.cs │ ├── LargeSmallImageAndText01.xaml │ ├── LargeSmallImageAndText01.xaml.cs │ ├── LargeSmallImageAndText02.xaml │ ├── LargeSmallImageAndText02.xaml.cs │ ├── LargeSmallImageAndText03.xaml │ ├── LargeSmallImageAndText03.xaml.cs │ ├── LargeSmallImageAndText04.xaml │ ├── LargeSmallImageAndText04.xaml.cs │ ├── LargeSmallImageAndText05.xaml │ ├── LargeSmallImageAndText05.xaml.cs │ ├── LargeSmallImageAndText06.xaml │ ├── LargeSmallImageAndText06.xaml.cs │ ├── LargeSmallImageAndText07.xaml │ ├── LargeSmallImageAndText07.xaml.cs │ ├── LargeText01.xaml │ ├── LargeText01.xaml.cs │ ├── LargeText02.xaml │ ├── LargeText02.xaml.cs │ ├── LargeText03.xaml │ ├── LargeText03.xaml.cs │ ├── LargeText04.xaml │ ├── LargeText04.xaml.cs │ ├── LargeText05.xaml │ ├── LargeText05.xaml.cs │ ├── LargeText06.xaml │ ├── LargeText06.xaml.cs │ ├── LargeText07.xaml │ ├── LargeText07.xaml.cs │ ├── LargeText08.xaml │ ├── LargeText08.xaml.cs │ ├── LargeText09.xaml │ ├── LargeText09.xaml.cs │ ├── LargeText10.xaml │ ├── LargeText10.xaml.cs │ ├── LargeText11.xaml │ ├── LargeText11.xaml.cs │ ├── PeekImageAndText01.xaml │ ├── PeekImageAndText01.xaml.cs │ ├── PeekImageAndText02.xaml │ ├── PeekImageAndText02.xaml.cs │ ├── PeekImageAndText03.xaml │ ├── PeekImageAndText03.xaml.cs │ ├── PeekImageAndText04.xaml │ ├── PeekImageAndText04.xaml.cs │ ├── PeekImageAndText05.xaml │ ├── PeekImageAndText05.xaml.cs │ ├── Text01.xaml │ ├── Text01.xaml.cs │ ├── Text02.xaml │ ├── Text02.xaml.cs │ ├── Text03.xaml │ ├── Text03.xaml.cs │ ├── Text04.xaml │ ├── Text04.xaml.cs │ ├── Text05.xaml │ ├── Text05.xaml.cs │ ├── TileNarrow.xaml │ ├── TileNarrow.xaml.cs │ ├── TileNarrow1Image.xaml │ ├── TileNarrow1Image.xaml.cs │ ├── TileTiny.xaml │ ├── TileTiny.xaml.cs │ ├── TileTiny1Image.xaml │ ├── TileTiny1Image.xaml.cs │ ├── TileWide.xaml │ ├── TileWide.xaml.cs │ ├── TileWide1Image.xaml │ ├── TileWide1Image.xaml.cs │ ├── TileWide5Images.xaml │ ├── TileWide5Images.xaml.cs │ ├── TileWideSquare.xaml │ ├── TileWideSquare.xaml.cs │ ├── TileWideSquare1Image.xaml │ ├── TileWideSquare1Image.xaml.cs │ ├── TileWideSquare5Images.xaml │ └── TileWideSquare5Images.xaml.cs ├── ThemeRoot.xaml ├── comments.xml └── nljnk3z4.tmp_proj ├── CODE.Framework.Wpf.Theme.Newsroom ├── CODE.Framework.Wpf.Theme.Newsroom.csproj ├── Classes │ ├── AvailabilityToVisibilityConverter.cs │ ├── ContextBindingDummy.cs │ ├── HorizontalScrollEnabledToVisibilityConverter.cs │ └── NewsroomStandardFeatures.cs ├── Colors.xaml ├── Controls │ ├── CircularProgressAnimation.cs │ ├── LinearProgressAnimation.cs │ ├── NewsroomScrollViewer.cs │ ├── PeekAnimationContainer.cs │ ├── ShellMetroTiles.cs │ ├── ShellNewsroomTiles.cs │ ├── ShellTabControl.cs │ └── SizeAwareContentControl.cs ├── Fonts.xaml ├── Newsroom-ApplicationLogos.xaml ├── Newsroom-Control-Button.xaml ├── Newsroom-Control-CapsLockWarning.xaml ├── Newsroom-Control-CheckBox.xaml ├── Newsroom-Control-ComboBox.xaml ├── Newsroom-Control-FlowDocumentReader.xaml ├── Newsroom-Control-GroupBox.xaml ├── Newsroom-Control-Label.xaml ├── Newsroom-Control-ListBox.xaml ├── Newsroom-Control-Menu.xaml ├── Newsroom-Control-MetroTiles.xaml ├── Newsroom-Control-PasswordBox.xaml ├── Newsroom-Control-RadioButton.xaml ├── Newsroom-Control-RichTextBox.xaml ├── Newsroom-Control-ScrollBar.xaml ├── Newsroom-Control-Slider.xaml ├── Newsroom-Control-TabControl.xaml ├── Newsroom-Control-Textblock.xaml ├── Newsroom-Control-Textbox.xaml ├── Newsroom-Icon-Arrow.xaml ├── Newsroom-Icon-Standard.xaml ├── Newsroom-Layout-BladePanel.xaml ├── Newsroom-Layout-EditForm.xaml ├── Newsroom-Layout-FlowForm.xaml ├── Newsroom-Layout-MultiPanel.xaml ├── Newsroom-Layout-OneToManyPanel.xaml ├── Newsroom-Layout-PrimarySecondaryForm.xaml ├── Newsroom-Layout-SimpleForm.xaml ├── Newsroom-Layout-StandardForm.xaml ├── Newsroom-Layout-Tabs.xaml ├── Newsroom-MessageBox-Icon-Asterisk.xaml ├── Newsroom-MessageBox-Icon-Error.xaml ├── Newsroom-MessageBox-Icon-Exclamation.xaml ├── Newsroom-MessageBox-Icon-Hand.xaml ├── Newsroom-MessageBox-Icon-Information.xaml ├── Newsroom-MessageBox-Icon-Question.xaml ├── Newsroom-MessageBox-Icon-Stop.xaml ├── Newsroom-MessageBox-Icon-Warning.xaml ├── Newsroom-Print.xaml ├── Newsroom-Shell.xaml ├── Newsroom-StandardDataTemplates.xaml ├── Newsroom-StandardTypes.xaml ├── Properties │ └── AssemblyInfo.cs ├── StandardViews │ ├── Block.xaml │ ├── Block.xaml.cs │ ├── Components │ │ ├── LogoAndNameCount.xaml │ │ └── LogoAndNameCount.xaml.cs │ ├── Data01.xaml │ ├── Data01.xaml.cs │ ├── Data02.xaml │ ├── Data02.xaml.cs │ ├── Data03.xaml │ ├── Data03.xaml.cs │ ├── DataAndImage01.xaml │ ├── DataAndImage01.xaml.cs │ ├── DataAndImage02.xaml │ ├── DataAndImage02.xaml.cs │ ├── DataAndImage03.xaml │ ├── DataAndImage03.xaml.cs │ ├── DataRowAndImage01.xaml │ ├── DataRowAndImage01.xaml.cs │ ├── DataSmall01.xaml │ ├── DataSmall01.xaml.cs │ ├── DataSmall02.xaml │ ├── DataSmall02.xaml.cs │ ├── DataSmall03.xaml │ ├── DataSmall03.xaml.cs │ ├── Fallback.xaml │ ├── Fallback.xaml.cs │ ├── Image.xaml │ ├── Image.xaml.cs │ ├── LargeBlockAndText01.xaml │ ├── LargeBlockAndText01.xaml.cs │ ├── LargeBlockAndText02.xaml │ ├── LargeBlockAndText02.xaml.cs │ ├── LargeImage.xaml │ ├── LargeImage.xaml.cs │ ├── LargeImageAndText01.xaml │ ├── LargeImageAndText01.xaml.cs │ ├── LargeImageAndText02.xaml │ ├── LargeImageAndText02.xaml.cs │ ├── LargeImageCollection.xaml │ ├── LargeImageCollection.xaml.cs │ ├── LargePeekImageAndText01.xaml │ ├── LargePeekImageAndText01.xaml.cs │ ├── LargePeekImageAndText02.xaml │ ├── LargePeekImageAndText02.xaml.cs │ ├── LargePeekImageAndText03.xaml │ ├── LargePeekImageAndText03.xaml.cs │ ├── LargePeekImageAndText04.xaml │ ├── LargePeekImageAndText04.xaml.cs │ ├── LargePeekImageAndText05.xaml │ ├── LargePeekImageAndText05.xaml.cs │ ├── LargePeekImageAndText06.xaml │ ├── LargePeekImageAndText06.xaml.cs │ ├── LargePeekImageCollection01.xaml │ ├── LargePeekImageCollection01.xaml.cs │ ├── LargePeekImageCollection02.xaml │ ├── LargePeekImageCollection02.xaml.cs │ ├── LargePeekImageCollection03.xaml │ ├── LargePeekImageCollection03.xaml.cs │ ├── LargePeekImageCollection04.xaml │ ├── LargePeekImageCollection04.xaml.cs │ ├── LargePeekImageCollection05.xaml │ ├── LargePeekImageCollection05.xaml.cs │ ├── LargePeekImageCollection06.xaml │ ├── LargePeekImageCollection06.xaml.cs │ ├── LargeSmallImageAndText01.xaml │ ├── LargeSmallImageAndText01.xaml.cs │ ├── LargeSmallImageAndText02.xaml │ ├── LargeSmallImageAndText02.xaml.cs │ ├── LargeSmallImageAndText03.xaml │ ├── LargeSmallImageAndText03.xaml.cs │ ├── LargeSmallImageAndText04.xaml │ ├── LargeSmallImageAndText04.xaml.cs │ ├── LargeSmallImageAndText05.xaml │ ├── LargeSmallImageAndText05.xaml.cs │ ├── LargeSmallImageAndText06.xaml │ ├── LargeSmallImageAndText06.xaml.cs │ ├── LargeSmallImageAndText07.xaml │ ├── LargeSmallImageAndText07.xaml.cs │ ├── LargeText01.xaml │ ├── LargeText01.xaml.cs │ ├── LargeText02.xaml │ ├── LargeText02.xaml.cs │ ├── LargeText03.xaml │ ├── LargeText03.xaml.cs │ ├── LargeText04.xaml │ ├── LargeText04.xaml.cs │ ├── LargeText05.xaml │ ├── LargeText05.xaml.cs │ ├── LargeText06.xaml │ ├── LargeText06.xaml.cs │ ├── LargeText07.xaml │ ├── LargeText07.xaml.cs │ ├── LargeText08.xaml │ ├── LargeText08.xaml.cs │ ├── LargeText09.xaml │ ├── LargeText09.xaml.cs │ ├── LargeText10.xaml │ ├── LargeText10.xaml.cs │ ├── LargeText11.xaml │ ├── LargeText11.xaml.cs │ ├── Notifications.xaml │ ├── Notifications.xaml.cs │ ├── PeekImageAndText01.xaml │ ├── PeekImageAndText01.xaml.cs │ ├── PeekImageAndText02.xaml │ ├── PeekImageAndText02.xaml.cs │ ├── PeekImageAndText03.xaml │ ├── PeekImageAndText03.xaml.cs │ ├── PeekImageAndText04.xaml │ ├── PeekImageAndText04.xaml.cs │ ├── PeekImageAndText05.xaml │ ├── PeekImageAndText05.xaml.cs │ ├── Text01.xaml │ ├── Text01.xaml.cs │ ├── Text02.xaml │ ├── Text02.xaml.cs │ ├── Text03.xaml │ ├── Text03.xaml.cs │ ├── Text04.xaml │ ├── Text04.xaml.cs │ ├── Text05.xaml │ ├── Text05.xaml.cs │ ├── TileNarrow.xaml │ ├── TileNarrow.xaml.cs │ ├── TileTiny.xaml │ ├── TileTiny.xaml.cs │ ├── TileWide.xaml │ ├── TileWide.xaml.cs │ ├── TileWideSquare.xaml │ └── TileWideSquare.xaml.cs ├── ThemeRoot.xaml └── Universe-Control-PasswordBox.xaml ├── CODE.Framework.Wpf.Theme.Universe ├── CODE.Framework.Wpf.Theme.Universe.csproj ├── Classes │ ├── PointingDeviceInputModeToMarginConverter.cs │ └── UniverseStandardFeatures.cs ├── Colors.xaml ├── Controls │ ├── CircularProgressAnimation.cs │ ├── SelectOpenViewButton.cs │ ├── ShellTabControl.cs │ └── ViewActionHamburgerMenu.cs ├── Fonts.xaml ├── Properties │ └── AssemblyInfo.cs ├── StandardViews │ ├── Notification.xaml │ └── Notification.xaml.cs ├── ThemeRoot.xaml ├── Universe-Control-Button.xaml ├── Universe-Control-Calendar.xaml ├── Universe-Control-CapsLockWarning.xaml ├── Universe-Control-CheckBox.xaml ├── Universe-Control-ComboBox.xaml ├── Universe-Control-DatePicker.xaml ├── Universe-Control-Expander.xaml ├── Universe-Control-GroupBox.xaml ├── Universe-Control-Label.xaml ├── Universe-Control-ListBox.xaml ├── Universe-Control-Menu.xaml ├── Universe-Control-PasswordBox.xaml ├── Universe-Control-RadioButton.xaml ├── Universe-Control-RichTextBox.xaml ├── Universe-Control-ScrollBar.xaml ├── Universe-Control-Slider.xaml ├── Universe-Control-TextBox.xaml ├── Universe-Control-Textblock.xaml ├── Universe-Control-Tiles.xaml ├── Universe-Control-ViewActionItemsControl.xaml ├── Universe-Icon-Arrow.xaml ├── Universe-Icon-Standard.xaml ├── Universe-Layout-BladePanel.xaml ├── Universe-Layout-EditForm.xaml ├── Universe-Layout-FlowForm.xaml ├── Universe-Layout-MultiPanel.xaml ├── Universe-Layout-OneToManyPanel.xaml ├── Universe-Layout-PrimarySecondaryForm.xaml ├── Universe-Layout-SimpleForm.xaml ├── Universe-Layout-StandardForm.xaml ├── Universe-Layout-Tabs.xaml ├── Universe-Print.xaml ├── Universe-Shell.xaml ├── Universe-StandardDataTemplates.xaml ├── Universe-StandardTypes.xaml ├── c3wa5tri.tmp_proj ├── deneo13n.tmp_proj └── yqgpcj0l.tmp_proj ├── CODE.Framework.Wpf.Theme.Vapor ├── CODE.Framework.Wpf.Theme.Vapor.csproj ├── Classes │ └── VaporStandardFeatures.cs ├── Colors.xaml ├── Fonts.xaml ├── Properties │ └── AssemblyInfo.cs ├── Standard │ ├── LargeImage.xaml │ ├── LargeImage.xaml.cs │ ├── Notification.xaml │ └── Notification.xaml.cs ├── ThemeRoot.xaml ├── Vapor-Control-Button.xaml ├── Vapor-Control-CapsLockWarning.xaml ├── Vapor-Control-CheckBox.xaml ├── Vapor-Control-ComboBox.xaml ├── Vapor-Control-FlowDocumentReader.xaml ├── Vapor-Control-Label.xaml ├── Vapor-Control-ListBox.xaml ├── Vapor-Control-Menu.xaml ├── Vapor-Control-PasswordBox.xaml ├── Vapor-Control-RadioButton.xaml ├── Vapor-Control-ScrollBar.xaml ├── Vapor-Control-TabControl.xaml ├── Vapor-Control-TextBlock.xaml ├── Vapor-Control-TextBox.xaml ├── Vapor-Icon-Standard.xaml ├── Vapor-Layout-BladePanel.xaml ├── Vapor-Layout-EditForm.xaml ├── Vapor-Layout-FlowForm.xaml ├── Vapor-Layout-MultiPanel.xaml ├── Vapor-Layout-OneToManyPanel.xaml ├── Vapor-Layout-PrimarySecondaryForm.xaml ├── Vapor-Layout-SimpleForm.xaml ├── Vapor-Layout-StandardForm.xaml ├── Vapor-Layout-Tabs.xaml ├── Vapor-MessageBox-Icon-Asterisk.xaml ├── Vapor-MessageBox-Icon-Error.xaml ├── Vapor-MessageBox-Icon-Exclamation.xaml ├── Vapor-MessageBox-Icon-Hand.xaml ├── Vapor-MessageBox-Icon-Information.xaml ├── Vapor-MessageBox-Icon-Question.xaml ├── Vapor-MessageBox-Icon-Stop.xaml ├── Vapor-MessageBox-Icon-Warning.xaml ├── Vapor-Print.xaml ├── Vapor-Shell.xaml ├── Vapor-StandardDataTemplates.xaml └── Vapor-StandardTypes.xaml ├── CODE.Framework.Wpf.Theme.Wildcat ├── CODE.Framework.Wpf.Theme.Wildcat.csproj ├── Classes │ ├── SelfCenteringPopup.cs │ ├── StickyNotePanel.cs │ ├── ThemeColorConverter.cs │ ├── ViewIconConverter.cs │ ├── WildcatActionItemsControl.cs │ ├── WildcatButton.cs │ └── WildcatStandardFeatures.cs ├── Colors.xaml ├── Fonts.xaml ├── Properties │ └── AssemblyInfo.cs ├── StandardViews │ ├── Notification.xaml │ └── Notification.xaml.cs ├── ThemeRoot.xaml ├── Wildcat-Control-Button.xaml ├── Wildcat-Control-CapsLockWarning.xaml ├── Wildcat-Control-ComboBox.xaml ├── Wildcat-Control-Label.xaml ├── Wildcat-Control-ListBox.xaml ├── Wildcat-Control-Menu.xaml ├── Wildcat-Control-PasswordBox.xaml ├── Wildcat-Control-Scrollbar.xaml ├── Wildcat-Control-TabControl.xaml ├── Wildcat-Control-TextBox.xaml ├── Wildcat-Icon-Standard.xaml ├── Wildcat-Layout-BladePanel.xaml ├── Wildcat-Layout-EditForm.xaml ├── Wildcat-Layout-FlowForm.xaml ├── Wildcat-Layout-MultiPanel.xaml ├── Wildcat-Layout-OneToManyPanel.xaml ├── Wildcat-Layout-PrimarySecondaryForm.xaml ├── Wildcat-Layout-SimpleForm.xaml ├── Wildcat-Layout-StandardForm.xaml ├── Wildcat-Layout-Tabs.xaml ├── Wildcat-MessageBox-Icon-Asterisk.xaml ├── Wildcat-MessageBox-Icon-Error.xaml ├── Wildcat-MessageBox-Icon-Exclamation.xaml ├── Wildcat-MessageBox-Icon-Hand.xaml ├── Wildcat-MessageBox-Icon-Information.xaml ├── Wildcat-MessageBox-Icon-Question.xaml ├── Wildcat-MessageBox-Icon-Stop.xaml ├── Wildcat-MessageBox-Icon-Warning.xaml ├── Wildcat-Shell-BackgroundPattern.xaml ├── Wildcat-Shell.xaml ├── Wildcat-Shell.zip ├── Wildcat-StandardDataTemplates.xaml └── Wildcat-StandardTypes.xaml ├── CODE.Framework.Wpf.Theme.Workplace ├── CODE.Framework.Wpf.Theme.Workplace.csproj ├── Classes │ ├── ClearTextButton.cs │ ├── ScrollButtons.cs │ ├── ToUpperTextConverter.cs │ └── WorkplaceStandardFeatures.cs ├── Colors.xaml ├── Controls │ └── LinearProgressAnimation.cs ├── Fonts.xaml ├── Properties │ └── AssemblyInfo.cs ├── StandardViews │ ├── LargePeekImageAndText06.xaml │ ├── LargePeekImageAndText06.xaml.cs │ ├── Notification.xaml │ └── Notification.xaml.cs ├── ThemeRoot.xaml ├── Workplace-Control-Button.xaml ├── Workplace-Control-Calendar.xaml ├── Workplace-Control-CapsLockWarning.xaml ├── Workplace-Control-ComboBox.xaml ├── Workplace-Control-DatePicker.xaml ├── Workplace-Control-DockHost.xaml ├── Workplace-Control-Expander.xaml ├── Workplace-Control-FloatingDockWindow.xaml ├── Workplace-Control-Label.xaml ├── Workplace-Control-ListBox.xaml ├── Workplace-Control-Menu.xaml ├── Workplace-Control-PasswordBox.xaml ├── Workplace-Control-Ribbon.xaml ├── Workplace-Control-ScrollBar.xaml ├── Workplace-Control-TextBlock.xaml ├── Workplace-Control-TextBox.xaml ├── Workplace-Control-Window.xaml ├── Workplace-Icon-MessagetBox.xaml ├── Workplace-Icon-Standard.xaml ├── Workplace-Layout-BladePanel.xaml ├── Workplace-Layout-EditForm.xaml ├── Workplace-Layout-FlowForm.xaml ├── Workplace-Layout-MultiPanel.xaml ├── Workplace-Layout-OneToManyPanel.xaml ├── Workplace-Layout-PrimarySecondaryForm.xaml ├── Workplace-Layout-PropertySheet.xaml ├── Workplace-Layout-SimpleForm.xaml ├── Workplace-Layout-StandardForm.xaml ├── Workplace-Layout-Tabs.xaml ├── Workplace-Print.xaml ├── Workplace-Shell.xaml ├── Workplace-StandardDataTemplates.xaml └── Workplace-StandardTypes.xaml ├── CODE.Framework.Wpf ├── Behavior │ ├── AttachedObject.cs │ └── Behavior.cs ├── BindingConverters │ ├── BooleanToVisibleConverter.cs │ ├── ColorToBrushWithFallbackConverter.cs │ ├── IsNullConverter.cs │ ├── LitBrushConverter.cs │ ├── LitColorConverter.cs │ ├── NullToVisibleConverter.cs │ ├── ReplaceBrushConverter.cs │ ├── StringToVisibleConverter.cs │ ├── TransparentBrushConverter.cs │ └── TransparentColorConverter.cs ├── CODE.Framework.Wpf.csproj ├── Controls │ ├── AutoComplete.cs │ ├── BorderEx.cs │ ├── CapsLockWarning.cs │ ├── ClearTextButton.cs │ ├── ContentTextDisplay.cs │ ├── DockHost.cs │ ├── Ex.cs │ ├── GridEx.cs │ ├── LabelEx.cs │ ├── ListBoxEx.cs │ ├── ListBoxFastGridHeader.cs │ ├── ListBoxFastSmartDataTemplate.cs │ ├── ListBoxGridFooter.cs │ ├── ListBoxGridHeader.cs │ ├── ListBoxItemEx.cs │ ├── ListBoxSmartDataTemplate.cs │ ├── ListEx.cs │ ├── PasswordBoxEx.cs │ ├── RangeSlider.cs │ ├── RichTextBoxEx.cs │ ├── SortOrderIndicator.cs │ ├── TextBlockEx.cs │ ├── TextBoxEx - Copy.cs │ ├── TextBoxEx.cs │ ├── TouchEx.cs │ ├── TreeViewEx.cs │ ├── WindowButtons.cs │ ├── WindowEx.cs │ └── ZoomSlider.cs ├── Interfaces │ ├── IHorizontalOffset.cs │ ├── IInvalidated.cs │ ├── ILazyLoad.cs │ ├── ISourceInformation.cs │ ├── ITitle.cs │ └── IUserInterfaceActivation.cs ├── Layout │ ├── BidirectionalStackPanel - Copy.cs │ ├── BidirectionalStackPanel.cs │ ├── BladePanel.cs │ ├── ColumnPanel.cs │ ├── DockContainer.cs │ ├── EditForm.cs │ ├── FlowForm.cs │ ├── GridPrimarySecondary.cs │ ├── LazyLoadStackPanel.cs │ ├── MetroTiles.cs │ ├── MultiPanel.cs │ ├── OneToManyPanel.cs │ ├── PanoramaPanel.cs │ ├── PrimarySecondaryHorizontalPanel.cs │ ├── PropertySheet.cs │ ├── ScrollAwareItemsPresenter.cs │ ├── TabItemsPanel.cs │ └── View.cs ├── MarkupExtensions │ ├── AttributeBinding.cs │ └── Bind.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── Security │ ├── Security.cs │ └── SecurityAttribute.cs ├── Styles │ ├── MultiColumnList.xaml │ └── RangeSlider.xaml ├── Utilities │ ├── AutoLayoutHeaderRenderer.cs │ ├── ElementHelper.cs │ ├── FocusHelper.cs │ ├── GeometryHelper.cs │ ├── GlobalKeyboardHookHelper.cs │ ├── ImageHelper.cs │ ├── ObservableResourceDictionary.cs │ ├── ResourceHelper.cs │ ├── SpellCheckHelper.cs │ ├── SystemMetricsHelper.cs │ ├── VisualHelper.cs │ └── WindowPositionSettingsSerializer.cs └── Validation │ └── InputValidation.cs ├── CODE.Framework.sln ├── Documentation └── CODE.Framework.chm ├── Help └── CODE.Framework.chm ├── README.md └── _SharedFiles ├── Properties └── AssemblyInfoShared.cs └── _SharedFiles.csproj /.vs/CODE.Framework/v15/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkusEggerInc/CODEFramework/f076c7e643c950482b07b39aa5887abe51a5d615/.vs/CODE.Framework/v15/sqlite3/storage.ide -------------------------------------------------------------------------------- /.vs/Supercharger/BuildPackager/workbench.dat: -------------------------------------------------------------------------------- 1 | BuildPackager -------------------------------------------------------------------------------- /.vs/Supercharger/CODE.Framework.Core.Utilities/workbench.dat: -------------------------------------------------------------------------------- 1 | CODE.Framework.Core.Utilities -------------------------------------------------------------------------------- /.vs/Supercharger/CODE.Framework.Core/workbench.dat: -------------------------------------------------------------------------------- 1 | CODE.Framework.Core -------------------------------------------------------------------------------- /.vs/Supercharger/CODE.Framework.Services.Client/workbench.dat: -------------------------------------------------------------------------------- 1 | CODE.Framework.Services.Client -------------------------------------------------------------------------------- /.vs/Supercharger/CODE.Framework.Services.Contracts/workbench.dat: -------------------------------------------------------------------------------- 1 | CODE.Framework.Services.Contracts -------------------------------------------------------------------------------- /.vs/Supercharger/CODE.Framework.Services.Server.WebApi/workbench.dat: -------------------------------------------------------------------------------- 1 | CODE.Framework.Services.Server.WebApi -------------------------------------------------------------------------------- /.vs/Supercharger/CODE.Framework.Services.Server/workbench.dat: -------------------------------------------------------------------------------- 1 | CODE.Framework.Services.Server -------------------------------------------------------------------------------- /.vs/Supercharger/CODE.Framework.Services.Tools/global_history.dat: -------------------------------------------------------------------------------- 1 | CODE.Framework.Services.Tools -------------------------------------------------------------------------------- /.vs/Supercharger/CODE.Framework.Services.Tools/workbench.dat: -------------------------------------------------------------------------------- 1 | CODE.Framework.Services.Tools -------------------------------------------------------------------------------- /.vs/Supercharger/CODE.Framework.Wpf.Documents/global_history.dat: -------------------------------------------------------------------------------- 1 | CODE.Framework.Wpf.Documents -------------------------------------------------------------------------------- /.vs/Supercharger/CODE.Framework.Wpf.Documents/workbench.dat: -------------------------------------------------------------------------------- 1 | CODE.Framework.Wpf.Documents -------------------------------------------------------------------------------- /.vs/Supercharger/CODE.Framework.Wpf.Mvvm/workbench.dat: -------------------------------------------------------------------------------- 1 | CODE.Framework.Wpf.Mvvm -------------------------------------------------------------------------------- /.vs/Supercharger/CODE.Framework.Wpf.TestBench/workbench.dat: -------------------------------------------------------------------------------- 1 | CODE.Framework.Wpf.TestBench -------------------------------------------------------------------------------- /.vs/Supercharger/CODE.Framework.Wpf.Theme.Battleship/global_history.dat: -------------------------------------------------------------------------------- 1 | CODE.Framework.Wpf.Theme.Battleship -------------------------------------------------------------------------------- /.vs/Supercharger/CODE.Framework.Wpf.Theme.Battleship/workbench.dat: -------------------------------------------------------------------------------- 1 | CODE.Framework.Wpf.Theme.Battleship -------------------------------------------------------------------------------- /.vs/Supercharger/CODE.Framework.Wpf.Theme.Geek/global_history.dat: -------------------------------------------------------------------------------- 1 | CODE.Framework.Wpf.Theme.Geek -------------------------------------------------------------------------------- /.vs/Supercharger/CODE.Framework.Wpf.Theme.Geek/workbench.dat: -------------------------------------------------------------------------------- 1 | CODE.Framework.Wpf.Theme.Geek -------------------------------------------------------------------------------- /.vs/Supercharger/CODE.Framework.Wpf.Theme.Metro/global_history.dat: -------------------------------------------------------------------------------- 1 | CODE.Framework.Wpf.Theme.Metro -------------------------------------------------------------------------------- /.vs/Supercharger/CODE.Framework.Wpf.Theme.Metro/workbench.dat: -------------------------------------------------------------------------------- 1 | CODE.Framework.Wpf.Theme.Metro -------------------------------------------------------------------------------- /.vs/Supercharger/CODE.Framework.Wpf.Theme.Newsroom/global_history.dat: -------------------------------------------------------------------------------- 1 | CODE.Framework.Wpf.Theme.Newsroom -------------------------------------------------------------------------------- /.vs/Supercharger/CODE.Framework.Wpf.Theme.Newsroom/workbench.dat: -------------------------------------------------------------------------------- 1 | CODE.Framework.Wpf.Theme.Newsroom -------------------------------------------------------------------------------- /.vs/Supercharger/CODE.Framework.Wpf.Theme.Universe/global_history.dat: -------------------------------------------------------------------------------- 1 | CODE.Framework.Wpf.Theme.Universe -------------------------------------------------------------------------------- /.vs/Supercharger/CODE.Framework.Wpf.Theme.Universe/workbench.dat: -------------------------------------------------------------------------------- 1 | CODE.Framework.Wpf.Theme.Universe -------------------------------------------------------------------------------- /.vs/Supercharger/CODE.Framework.Wpf.Theme.Vapor/global_history.dat: -------------------------------------------------------------------------------- 1 | CODE.Framework.Wpf.Theme.Vapor -------------------------------------------------------------------------------- /.vs/Supercharger/CODE.Framework.Wpf.Theme.Vapor/workbench.dat: -------------------------------------------------------------------------------- 1 | CODE.Framework.Wpf.Theme.Vapor -------------------------------------------------------------------------------- /.vs/Supercharger/CODE.Framework.Wpf.Theme.Wildcat/global_history.dat: -------------------------------------------------------------------------------- 1 | CODE.Framework.Wpf.Theme.Wildcat -------------------------------------------------------------------------------- /.vs/Supercharger/CODE.Framework.Wpf.Theme.Wildcat/workbench.dat: -------------------------------------------------------------------------------- 1 | CODE.Framework.Wpf.Theme.Wildcat -------------------------------------------------------------------------------- /.vs/Supercharger/CODE.Framework.Wpf.Theme.Workplace/workbench.dat: -------------------------------------------------------------------------------- 1 | CODE.Framework.Wpf.Theme.Workplace -------------------------------------------------------------------------------- /.vs/Supercharger/CODE.Framework.Wpf/code_marker.dat: -------------------------------------------------------------------------------- 1 | CODE.Framework.Wpf -------------------------------------------------------------------------------- /.vs/Supercharger/CODE.Framework.Wpf/rich_code_format.dat: -------------------------------------------------------------------------------- 1 | CODE.Framework.Wpf -------------------------------------------------------------------------------- /.vs/Supercharger/CODE.Framework.Wpf/workbench.dat: -------------------------------------------------------------------------------- 1 | CODE.Framework.Wpf -------------------------------------------------------------------------------- /.vs/Supercharger/_SharedFiles/global_history.dat: -------------------------------------------------------------------------------- 1 | _SharedFiles -------------------------------------------------------------------------------- /.vs/Supercharger/_SharedFiles/workbench.dat: -------------------------------------------------------------------------------- 1 | _SharedFiles -------------------------------------------------------------------------------- /Binaries/Debug/CODE.Framework.Core.Utilities.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkusEggerInc/CODEFramework/f076c7e643c950482b07b39aa5887abe51a5d615/Binaries/Debug/CODE.Framework.Core.Utilities.dll -------------------------------------------------------------------------------- /Binaries/Debug/CODE.Framework.Core.Utilities.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkusEggerInc/CODEFramework/f076c7e643c950482b07b39aa5887abe51a5d615/Binaries/Debug/CODE.Framework.Core.Utilities.pdb -------------------------------------------------------------------------------- /Binaries/Debug/CODE.Framework.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkusEggerInc/CODEFramework/f076c7e643c950482b07b39aa5887abe51a5d615/Binaries/Debug/CODE.Framework.Core.dll -------------------------------------------------------------------------------- /Binaries/Debug/CODE.Framework.Core.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkusEggerInc/CODEFramework/f076c7e643c950482b07b39aa5887abe51a5d615/Binaries/Debug/CODE.Framework.Core.pdb -------------------------------------------------------------------------------- /Binaries/Debug/CODE.Framework.Services.Client.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkusEggerInc/CODEFramework/f076c7e643c950482b07b39aa5887abe51a5d615/Binaries/Debug/CODE.Framework.Services.Client.dll -------------------------------------------------------------------------------- /Binaries/Debug/CODE.Framework.Services.Client.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkusEggerInc/CODEFramework/f076c7e643c950482b07b39aa5887abe51a5d615/Binaries/Debug/CODE.Framework.Services.Client.pdb -------------------------------------------------------------------------------- /Binaries/Debug/CODE.Framework.Services.Contracts.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkusEggerInc/CODEFramework/f076c7e643c950482b07b39aa5887abe51a5d615/Binaries/Debug/CODE.Framework.Services.Contracts.dll -------------------------------------------------------------------------------- /Binaries/Debug/CODE.Framework.Services.Contracts.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkusEggerInc/CODEFramework/f076c7e643c950482b07b39aa5887abe51a5d615/Binaries/Debug/CODE.Framework.Services.Contracts.pdb -------------------------------------------------------------------------------- /Binaries/Debug/CODE.Framework.Services.Server.WebApi.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkusEggerInc/CODEFramework/f076c7e643c950482b07b39aa5887abe51a5d615/Binaries/Debug/CODE.Framework.Services.Server.WebApi.dll -------------------------------------------------------------------------------- /Binaries/Debug/CODE.Framework.Services.Server.WebApi.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkusEggerInc/CODEFramework/f076c7e643c950482b07b39aa5887abe51a5d615/Binaries/Debug/CODE.Framework.Services.Server.WebApi.pdb -------------------------------------------------------------------------------- /Binaries/Debug/CODE.Framework.Services.Server.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkusEggerInc/CODEFramework/f076c7e643c950482b07b39aa5887abe51a5d615/Binaries/Debug/CODE.Framework.Services.Server.dll -------------------------------------------------------------------------------- /Binaries/Debug/CODE.Framework.Services.Server.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkusEggerInc/CODEFramework/f076c7e643c950482b07b39aa5887abe51a5d615/Binaries/Debug/CODE.Framework.Services.Server.pdb -------------------------------------------------------------------------------- /Binaries/Debug/CODE.Framework.Services.Tools.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkusEggerInc/CODEFramework/f076c7e643c950482b07b39aa5887abe51a5d615/Binaries/Debug/CODE.Framework.Services.Tools.dll -------------------------------------------------------------------------------- /Binaries/Debug/CODE.Framework.Services.Tools.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkusEggerInc/CODEFramework/f076c7e643c950482b07b39aa5887abe51a5d615/Binaries/Debug/CODE.Framework.Services.Tools.pdb -------------------------------------------------------------------------------- /Binaries/Debug/CODE.Framework.Wpf.Documents.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkusEggerInc/CODEFramework/f076c7e643c950482b07b39aa5887abe51a5d615/Binaries/Debug/CODE.Framework.Wpf.Documents.dll -------------------------------------------------------------------------------- /Binaries/Debug/CODE.Framework.Wpf.Documents.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkusEggerInc/CODEFramework/f076c7e643c950482b07b39aa5887abe51a5d615/Binaries/Debug/CODE.Framework.Wpf.Documents.pdb -------------------------------------------------------------------------------- /Binaries/Debug/CODE.Framework.Wpf.Mvvm.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkusEggerInc/CODEFramework/f076c7e643c950482b07b39aa5887abe51a5d615/Binaries/Debug/CODE.Framework.Wpf.Mvvm.dll -------------------------------------------------------------------------------- /Binaries/Debug/CODE.Framework.Wpf.Mvvm.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkusEggerInc/CODEFramework/f076c7e643c950482b07b39aa5887abe51a5d615/Binaries/Debug/CODE.Framework.Wpf.Mvvm.pdb -------------------------------------------------------------------------------- /Binaries/Debug/CODE.Framework.Wpf.Theme.Battleship.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkusEggerInc/CODEFramework/f076c7e643c950482b07b39aa5887abe51a5d615/Binaries/Debug/CODE.Framework.Wpf.Theme.Battleship.dll -------------------------------------------------------------------------------- /Binaries/Debug/CODE.Framework.Wpf.Theme.Battleship.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkusEggerInc/CODEFramework/f076c7e643c950482b07b39aa5887abe51a5d615/Binaries/Debug/CODE.Framework.Wpf.Theme.Battleship.pdb -------------------------------------------------------------------------------- /Binaries/Debug/CODE.Framework.Wpf.Theme.Geek.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkusEggerInc/CODEFramework/f076c7e643c950482b07b39aa5887abe51a5d615/Binaries/Debug/CODE.Framework.Wpf.Theme.Geek.dll -------------------------------------------------------------------------------- /Binaries/Debug/CODE.Framework.Wpf.Theme.Geek.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkusEggerInc/CODEFramework/f076c7e643c950482b07b39aa5887abe51a5d615/Binaries/Debug/CODE.Framework.Wpf.Theme.Geek.pdb -------------------------------------------------------------------------------- /Binaries/Debug/CODE.Framework.Wpf.Theme.Metro.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkusEggerInc/CODEFramework/f076c7e643c950482b07b39aa5887abe51a5d615/Binaries/Debug/CODE.Framework.Wpf.Theme.Metro.dll -------------------------------------------------------------------------------- /Binaries/Debug/CODE.Framework.Wpf.Theme.Metro.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkusEggerInc/CODEFramework/f076c7e643c950482b07b39aa5887abe51a5d615/Binaries/Debug/CODE.Framework.Wpf.Theme.Metro.pdb -------------------------------------------------------------------------------- /Binaries/Debug/CODE.Framework.Wpf.Theme.Newsroom.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkusEggerInc/CODEFramework/f076c7e643c950482b07b39aa5887abe51a5d615/Binaries/Debug/CODE.Framework.Wpf.Theme.Newsroom.dll -------------------------------------------------------------------------------- /Binaries/Debug/CODE.Framework.Wpf.Theme.Newsroom.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkusEggerInc/CODEFramework/f076c7e643c950482b07b39aa5887abe51a5d615/Binaries/Debug/CODE.Framework.Wpf.Theme.Newsroom.pdb -------------------------------------------------------------------------------- /Binaries/Debug/CODE.Framework.Wpf.Theme.Vapor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkusEggerInc/CODEFramework/f076c7e643c950482b07b39aa5887abe51a5d615/Binaries/Debug/CODE.Framework.Wpf.Theme.Vapor.dll -------------------------------------------------------------------------------- /Binaries/Debug/CODE.Framework.Wpf.Theme.Vapor.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkusEggerInc/CODEFramework/f076c7e643c950482b07b39aa5887abe51a5d615/Binaries/Debug/CODE.Framework.Wpf.Theme.Vapor.pdb -------------------------------------------------------------------------------- /Binaries/Debug/CODE.Framework.Wpf.Theme.Wildcat.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkusEggerInc/CODEFramework/f076c7e643c950482b07b39aa5887abe51a5d615/Binaries/Debug/CODE.Framework.Wpf.Theme.Wildcat.dll -------------------------------------------------------------------------------- /Binaries/Debug/CODE.Framework.Wpf.Theme.Wildcat.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkusEggerInc/CODEFramework/f076c7e643c950482b07b39aa5887abe51a5d615/Binaries/Debug/CODE.Framework.Wpf.Theme.Wildcat.pdb -------------------------------------------------------------------------------- /Binaries/Debug/CODE.Framework.Wpf.Theme.Workplace.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkusEggerInc/CODEFramework/f076c7e643c950482b07b39aa5887abe51a5d615/Binaries/Debug/CODE.Framework.Wpf.Theme.Workplace.dll -------------------------------------------------------------------------------- /Binaries/Debug/CODE.Framework.Wpf.Theme.Workplace.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkusEggerInc/CODEFramework/f076c7e643c950482b07b39aa5887abe51a5d615/Binaries/Debug/CODE.Framework.Wpf.Theme.Workplace.pdb -------------------------------------------------------------------------------- /Binaries/Debug/CODE.Framework.Wpf.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkusEggerInc/CODEFramework/f076c7e643c950482b07b39aa5887abe51a5d615/Binaries/Debug/CODE.Framework.Wpf.dll -------------------------------------------------------------------------------- /Binaries/Debug/CODE.Framework.Wpf.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkusEggerInc/CODEFramework/f076c7e643c950482b07b39aa5887abe51a5d615/Binaries/Debug/CODE.Framework.Wpf.pdb -------------------------------------------------------------------------------- /Binaries/Release/CODE.Framework.Core.Utilities.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkusEggerInc/CODEFramework/f076c7e643c950482b07b39aa5887abe51a5d615/Binaries/Release/CODE.Framework.Core.Utilities.dll -------------------------------------------------------------------------------- /Binaries/Release/CODE.Framework.Core.Utilities.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkusEggerInc/CODEFramework/f076c7e643c950482b07b39aa5887abe51a5d615/Binaries/Release/CODE.Framework.Core.Utilities.pdb -------------------------------------------------------------------------------- /Binaries/Release/CODE.Framework.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkusEggerInc/CODEFramework/f076c7e643c950482b07b39aa5887abe51a5d615/Binaries/Release/CODE.Framework.Core.dll -------------------------------------------------------------------------------- /Binaries/Release/CODE.Framework.Core.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkusEggerInc/CODEFramework/f076c7e643c950482b07b39aa5887abe51a5d615/Binaries/Release/CODE.Framework.Core.pdb -------------------------------------------------------------------------------- /Binaries/Release/CODE.Framework.Services.Client.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkusEggerInc/CODEFramework/f076c7e643c950482b07b39aa5887abe51a5d615/Binaries/Release/CODE.Framework.Services.Client.dll -------------------------------------------------------------------------------- /Binaries/Release/CODE.Framework.Services.Client.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkusEggerInc/CODEFramework/f076c7e643c950482b07b39aa5887abe51a5d615/Binaries/Release/CODE.Framework.Services.Client.pdb -------------------------------------------------------------------------------- /Binaries/Release/CODE.Framework.Services.Contracts.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkusEggerInc/CODEFramework/f076c7e643c950482b07b39aa5887abe51a5d615/Binaries/Release/CODE.Framework.Services.Contracts.dll -------------------------------------------------------------------------------- /Binaries/Release/CODE.Framework.Services.Contracts.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkusEggerInc/CODEFramework/f076c7e643c950482b07b39aa5887abe51a5d615/Binaries/Release/CODE.Framework.Services.Contracts.pdb -------------------------------------------------------------------------------- /Binaries/Release/CODE.Framework.Services.Server.WebApi.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkusEggerInc/CODEFramework/f076c7e643c950482b07b39aa5887abe51a5d615/Binaries/Release/CODE.Framework.Services.Server.WebApi.dll -------------------------------------------------------------------------------- /Binaries/Release/CODE.Framework.Services.Server.WebApi.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkusEggerInc/CODEFramework/f076c7e643c950482b07b39aa5887abe51a5d615/Binaries/Release/CODE.Framework.Services.Server.WebApi.pdb -------------------------------------------------------------------------------- /Binaries/Release/CODE.Framework.Services.Server.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkusEggerInc/CODEFramework/f076c7e643c950482b07b39aa5887abe51a5d615/Binaries/Release/CODE.Framework.Services.Server.dll -------------------------------------------------------------------------------- /Binaries/Release/CODE.Framework.Services.Server.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkusEggerInc/CODEFramework/f076c7e643c950482b07b39aa5887abe51a5d615/Binaries/Release/CODE.Framework.Services.Server.pdb -------------------------------------------------------------------------------- /Binaries/Release/CODE.Framework.Services.Tools.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkusEggerInc/CODEFramework/f076c7e643c950482b07b39aa5887abe51a5d615/Binaries/Release/CODE.Framework.Services.Tools.dll -------------------------------------------------------------------------------- /Binaries/Release/CODE.Framework.Services.Tools.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkusEggerInc/CODEFramework/f076c7e643c950482b07b39aa5887abe51a5d615/Binaries/Release/CODE.Framework.Services.Tools.pdb -------------------------------------------------------------------------------- /Binaries/Release/CODE.Framework.Wpf.Documents.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkusEggerInc/CODEFramework/f076c7e643c950482b07b39aa5887abe51a5d615/Binaries/Release/CODE.Framework.Wpf.Documents.dll -------------------------------------------------------------------------------- /Binaries/Release/CODE.Framework.Wpf.Documents.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkusEggerInc/CODEFramework/f076c7e643c950482b07b39aa5887abe51a5d615/Binaries/Release/CODE.Framework.Wpf.Documents.pdb -------------------------------------------------------------------------------- /Binaries/Release/CODE.Framework.Wpf.Mvvm.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkusEggerInc/CODEFramework/f076c7e643c950482b07b39aa5887abe51a5d615/Binaries/Release/CODE.Framework.Wpf.Mvvm.dll -------------------------------------------------------------------------------- /Binaries/Release/CODE.Framework.Wpf.Mvvm.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkusEggerInc/CODEFramework/f076c7e643c950482b07b39aa5887abe51a5d615/Binaries/Release/CODE.Framework.Wpf.Mvvm.pdb -------------------------------------------------------------------------------- /Binaries/Release/CODE.Framework.Wpf.Theme.Battleship.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkusEggerInc/CODEFramework/f076c7e643c950482b07b39aa5887abe51a5d615/Binaries/Release/CODE.Framework.Wpf.Theme.Battleship.dll -------------------------------------------------------------------------------- /Binaries/Release/CODE.Framework.Wpf.Theme.Battleship.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkusEggerInc/CODEFramework/f076c7e643c950482b07b39aa5887abe51a5d615/Binaries/Release/CODE.Framework.Wpf.Theme.Battleship.pdb -------------------------------------------------------------------------------- /Binaries/Release/CODE.Framework.Wpf.Theme.Geek.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkusEggerInc/CODEFramework/f076c7e643c950482b07b39aa5887abe51a5d615/Binaries/Release/CODE.Framework.Wpf.Theme.Geek.dll -------------------------------------------------------------------------------- /Binaries/Release/CODE.Framework.Wpf.Theme.Geek.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkusEggerInc/CODEFramework/f076c7e643c950482b07b39aa5887abe51a5d615/Binaries/Release/CODE.Framework.Wpf.Theme.Geek.pdb -------------------------------------------------------------------------------- /Binaries/Release/CODE.Framework.Wpf.Theme.Metro.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkusEggerInc/CODEFramework/f076c7e643c950482b07b39aa5887abe51a5d615/Binaries/Release/CODE.Framework.Wpf.Theme.Metro.dll -------------------------------------------------------------------------------- /Binaries/Release/CODE.Framework.Wpf.Theme.Metro.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkusEggerInc/CODEFramework/f076c7e643c950482b07b39aa5887abe51a5d615/Binaries/Release/CODE.Framework.Wpf.Theme.Metro.pdb -------------------------------------------------------------------------------- /Binaries/Release/CODE.Framework.Wpf.Theme.Newsroom.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkusEggerInc/CODEFramework/f076c7e643c950482b07b39aa5887abe51a5d615/Binaries/Release/CODE.Framework.Wpf.Theme.Newsroom.dll -------------------------------------------------------------------------------- /Binaries/Release/CODE.Framework.Wpf.Theme.Newsroom.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkusEggerInc/CODEFramework/f076c7e643c950482b07b39aa5887abe51a5d615/Binaries/Release/CODE.Framework.Wpf.Theme.Newsroom.pdb -------------------------------------------------------------------------------- /Binaries/Release/CODE.Framework.Wpf.Theme.Vapor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkusEggerInc/CODEFramework/f076c7e643c950482b07b39aa5887abe51a5d615/Binaries/Release/CODE.Framework.Wpf.Theme.Vapor.dll -------------------------------------------------------------------------------- /Binaries/Release/CODE.Framework.Wpf.Theme.Vapor.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkusEggerInc/CODEFramework/f076c7e643c950482b07b39aa5887abe51a5d615/Binaries/Release/CODE.Framework.Wpf.Theme.Vapor.pdb -------------------------------------------------------------------------------- /Binaries/Release/CODE.Framework.Wpf.Theme.Wildcat.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkusEggerInc/CODEFramework/f076c7e643c950482b07b39aa5887abe51a5d615/Binaries/Release/CODE.Framework.Wpf.Theme.Wildcat.dll -------------------------------------------------------------------------------- /Binaries/Release/CODE.Framework.Wpf.Theme.Wildcat.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkusEggerInc/CODEFramework/f076c7e643c950482b07b39aa5887abe51a5d615/Binaries/Release/CODE.Framework.Wpf.Theme.Wildcat.pdb -------------------------------------------------------------------------------- /Binaries/Release/CODE.Framework.Wpf.Theme.Workplace.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkusEggerInc/CODEFramework/f076c7e643c950482b07b39aa5887abe51a5d615/Binaries/Release/CODE.Framework.Wpf.Theme.Workplace.dll -------------------------------------------------------------------------------- /Binaries/Release/CODE.Framework.Wpf.Theme.Workplace.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkusEggerInc/CODEFramework/f076c7e643c950482b07b39aa5887abe51a5d615/Binaries/Release/CODE.Framework.Wpf.Theme.Workplace.pdb -------------------------------------------------------------------------------- /Binaries/Release/CODE.Framework.Wpf.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkusEggerInc/CODEFramework/f076c7e643c950482b07b39aa5887abe51a5d615/Binaries/Release/CODE.Framework.Wpf.dll -------------------------------------------------------------------------------- /Binaries/Release/CODE.Framework.Wpf.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkusEggerInc/CODEFramework/f076c7e643c950482b07b39aa5887abe51a5d615/Binaries/Release/CODE.Framework.Wpf.pdb -------------------------------------------------------------------------------- /BuildPackager/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | 3 | [assembly: AssemblyTitle("BuildPackager")] 4 | [assembly: AssemblyDescription("")] 5 | [assembly: AssemblyConfiguration("")] 6 | [assembly: AssemblyCulture("")] 7 | -------------------------------------------------------------------------------- /CODE.Framework.Core.Utilities/Csv/MissingFieldAction.cs: -------------------------------------------------------------------------------- 1 | namespace CODE.Framework.Core.Utilities.Csv 2 | { 3 | /// 4 | /// Specifies the action to take when a field is missing. 5 | /// 6 | public enum MissingFieldAction 7 | { 8 | /// 9 | /// Treat as a parsing error. 10 | /// 11 | ParseError = 0, 12 | 13 | /// 14 | /// Replaces by an empty value. 15 | /// 16 | ReplaceByEmpty = 1, 17 | 18 | /// 19 | /// Replaces by a null value (). 20 | /// 21 | ReplaceByNull = 2, 22 | } 23 | } -------------------------------------------------------------------------------- /CODE.Framework.Core.Utilities/Csv/ParseErrorAction.cs: -------------------------------------------------------------------------------- 1 | namespace CODE.Framework.Core.Utilities.Csv 2 | { 3 | /// 4 | /// Specifies the action to take when a parsing error has occured. 5 | /// 6 | public enum ParseErrorAction 7 | { 8 | /// 9 | /// Raises the event. 10 | /// 11 | RaiseEvent = 0, 12 | 13 | /// 14 | /// Tries to advance to next line. 15 | /// 16 | AdvanceToNextLine = 1, 17 | 18 | /// 19 | /// Throws an exception. 20 | /// 21 | ThrowException = 2, 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /CODE.Framework.Core.Utilities/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Reflection; 3 | using System.Runtime.InteropServices; 4 | 5 | // Information specific to this project/assembly 6 | [assembly: AssemblyTitle("CODE Framework - Utilities")] 7 | [assembly: AssemblyDescription("CODE Framework Utility Components")] 8 | [assembly: AssemblyConfiguration("")] 9 | [assembly: AssemblyCulture("")] 10 | 11 | // Setting ComVisible to false makes the types in this assembly not visible 12 | // to COM components. If you need to access a type in this assembly from 13 | // COM, set the ComVisible attribute to true on that type. 14 | [assembly: ComVisible(false)] 15 | [assembly: CLSCompliant(true)] 16 | -------------------------------------------------------------------------------- /CODE.Framework.Core/ComponentModel/DataBindingInterfaces.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace CODE.Framework.Core.ComponentModel 4 | { 5 | /// 6 | /// Interface to be implemented by data sources that may 7 | /// send update messages to bound controls. 8 | /// 9 | public interface IDataBindingRefresher 10 | { 11 | /// 12 | /// Event that is to be raised when source updates 13 | /// 14 | event EventHandler DataSourceChanged; 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /CODE.Framework.Core/Newtonsoft/Linq/JsonPath/ArrayMultipleIndexFilter.cs: -------------------------------------------------------------------------------- 1 | using System.Collections.Generic; 2 | 3 | namespace CODE.Framework.Core.Newtonsoft.Linq.JsonPath 4 | { 5 | internal class ArrayMultipleIndexFilter : PathFilter 6 | { 7 | public List Indexes { get; set; } 8 | 9 | public override IEnumerable ExecuteFilter(JToken root, IEnumerable current, bool errorWhenNoMatch) 10 | { 11 | foreach (var t in current) 12 | foreach (var i in Indexes) 13 | { 14 | var v = GetTokenIndex(t, errorWhenNoMatch, i); 15 | 16 | if (v != null) 17 | yield return v; 18 | } 19 | } 20 | } 21 | } -------------------------------------------------------------------------------- /CODE.Framework.Core/Newtonsoft/Linq/JsonPath/QueryFilter.cs: -------------------------------------------------------------------------------- 1 | using System.Collections.Generic; 2 | 3 | namespace CODE.Framework.Core.Newtonsoft.Linq.JsonPath 4 | { 5 | internal class QueryFilter : PathFilter 6 | { 7 | public QueryExpression Expression { get; set; } 8 | 9 | public override IEnumerable ExecuteFilter(JToken root, IEnumerable current, bool errorWhenNoMatch) 10 | { 11 | foreach (var t in current) 12 | foreach (var v in t) 13 | if (Expression.IsMatch(root, v)) 14 | yield return v; 15 | } 16 | } 17 | } -------------------------------------------------------------------------------- /CODE.Framework.Core/Newtonsoft/Linq/JsonPath/RootFilter.cs: -------------------------------------------------------------------------------- 1 | using System.Collections.Generic; 2 | 3 | namespace CODE.Framework.Core.Newtonsoft.Linq.JsonPath 4 | { 5 | internal class RootFilter : PathFilter 6 | { 7 | public static readonly RootFilter Instance = new RootFilter(); 8 | 9 | private RootFilter() 10 | { 11 | } 12 | 13 | public override IEnumerable ExecuteFilter(JToken root, IEnumerable current, bool errorWhenNoMatch) 14 | { 15 | return new[] {root}; 16 | } 17 | } 18 | } -------------------------------------------------------------------------------- /CODE.Framework.Core/Newtonsoft/Linq/MergeNullValueHandling.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace CODE.Framework.Core.Newtonsoft.Linq 4 | { 5 | /// 6 | /// Specifies how null value properties are merged. 7 | /// 8 | [Flags] 9 | public enum MergeNullValueHandling 10 | { 11 | /// 12 | /// The content's null value properties will be ignored during merging. 13 | /// 14 | Ignore = 0, 15 | 16 | /// 17 | /// The content's null value properties will be merged. 18 | /// 19 | Merge = 1 20 | } 21 | } -------------------------------------------------------------------------------- /CODE.Framework.Core/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Reflection; 3 | using System.Runtime.InteropServices; 4 | 5 | // Information specific to this project/assembly 6 | [assembly: AssemblyTitle("CODE Framework - Core")] 7 | [assembly: AssemblyDescription("CODE Framework Core Components")] 8 | [assembly: AssemblyConfiguration("")] 9 | [assembly: AssemblyCulture("")] 10 | 11 | // Setting ComVisible to false makes the types in this assembly not visible 12 | // to COM components. If you need to access a type in this assembly from 13 | // COM, set the ComVisible attribute to true on that type. 14 | [assembly: ComVisible(false)] 15 | [assembly: CLSCompliant(true)] 16 | -------------------------------------------------------------------------------- /CODE.Framework.Services.Client/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Reflection; 3 | using System.Runtime.InteropServices; 4 | 5 | // Information specific to this project/assembly 6 | [assembly: AssemblyTitle("CODE Framework - Service Client")] 7 | [assembly: AssemblyDescription("CODE Framework Service Client Components")] 8 | [assembly: AssemblyConfiguration("")] 9 | [assembly: AssemblyCulture("")] 10 | 11 | // Setting ComVisible to false makes the types in this assembly not visible 12 | // to COM components. If you need to access a type in this assembly from 13 | // COM, set the ComVisible attribute to true on that type. 14 | [assembly: ComVisible(false)] 15 | [assembly: CLSCompliant(true)] 16 | -------------------------------------------------------------------------------- /CODE.Framework.Services.Contracts/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Reflection; 3 | using System.Runtime.InteropServices; 4 | 5 | // Information specific to this project/assembly 6 | [assembly: AssemblyTitle("CODE Framework - Service Contracts")] 7 | [assembly: AssemblyDescription("CODE Framework Service Contract Components")] 8 | [assembly: AssemblyConfiguration("")] 9 | [assembly: AssemblyCulture("")] 10 | 11 | // Setting ComVisible to false makes the types in this assembly not visible 12 | // to COM components. If you need to access a type in this assembly from 13 | // COM, set the ComVisible attribute to true on that type. 14 | [assembly: ComVisible(false)] 15 | [assembly: CLSCompliant(true)] 16 | -------------------------------------------------------------------------------- /CODE.Framework.Services.Server.WebApi/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Reflection; 3 | using System.Runtime.InteropServices; 4 | 5 | // Information specific to this project/assembly 6 | [assembly: AssemblyTitle("CODE Framework - WebApi Service Components")] 7 | [assembly: AssemblyDescription("CODE Framework WebApi Service Components")] 8 | [assembly: AssemblyConfiguration("")] 9 | [assembly: AssemblyCulture("")] 10 | 11 | // Setting ComVisible to false makes the types in this assembly not visible 12 | // to COM components. If you need to access a type in this assembly from 13 | // COM, set the ComVisible attribute to true on that type. 14 | [assembly: ComVisible(false)] 15 | [assembly: CLSCompliant(true)] -------------------------------------------------------------------------------- /CODE.Framework.Services.Server.WebApi/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /CODE.Framework.Services.Server/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Reflection; 3 | using System.Runtime.InteropServices; 4 | 5 | // Information specific to this project/assembly 6 | [assembly: AssemblyTitle("CODE Framework - Service")] 7 | [assembly: AssemblyDescription("CODE Framework Service Server Components")] 8 | [assembly: AssemblyConfiguration("")] 9 | [assembly: AssemblyCulture("")] 10 | 11 | // Setting ComVisible to false makes the types in this assembly not visible 12 | // to COM components. If you need to access a type in this assembly from 13 | // COM, set the ComVisible attribute to true on that type. 14 | [assembly: ComVisible(false)] 15 | [assembly: CLSCompliant(true)] 16 | -------------------------------------------------------------------------------- /CODE.Framework.Services.Tools/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Reflection; 3 | using System.Runtime.InteropServices; 4 | 5 | // Information specific to this project/assembly 6 | [assembly: AssemblyTitle("CODE Framework - Service Tools")] 7 | [assembly: AssemblyDescription("CODE Framework Service Tools Components")] 8 | [assembly: AssemblyConfiguration("")] 9 | [assembly: AssemblyCulture("")] 10 | 11 | // Setting ComVisible to false makes the types in this assembly not visible 12 | // to COM components. If you need to access a type in this assembly from 13 | // COM, set the ComVisible attribute to true on that type. 14 | [assembly: ComVisible(false)] 15 | [assembly: CLSCompliant(true)] 16 | -------------------------------------------------------------------------------- /CODE.Framework.Services.Tools/Resources/CodeFramework_Logo160.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkusEggerInc/CODEFramework/f076c7e643c950482b07b39aa5887abe51a5d615/CODE.Framework.Services.Tools/Resources/CodeFramework_Logo160.png -------------------------------------------------------------------------------- /CODE.Framework.Wpf.Documents/PageCount.cs: -------------------------------------------------------------------------------- 1 | using System.Windows.Documents; 2 | 3 | namespace CODE.Framework.Wpf.Documents 4 | { 5 | /// Whenever this type of Run object is used within a text element, it shows the total page count 6 | public class PageCount : Run 7 | { 8 | } 9 | 10 | /// Whenever this type of Run object is used within a text element, it shows the current page 11 | public class CurrentPage : Run 12 | { 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.Documents/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Reflection; 3 | using System.Runtime.InteropServices; 4 | 5 | // Information specific to this project/assembly 6 | [assembly: AssemblyTitle("CODE Framework - WPF Documents")] 7 | [assembly: AssemblyDescription("CODE Framework WPF Document Components")] 8 | [assembly: AssemblyConfiguration("")] 9 | [assembly: AssemblyCulture("")] 10 | 11 | // Setting ComVisible to false makes the types in this assembly not visible 12 | // to COM components. If you need to access a type in this assembly from 13 | // COM, set the ComVisible attribute to true on that type. 14 | [assembly: ComVisible(false)] 15 | [assembly: CLSCompliant(true)] 16 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.Documents/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.Layout/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Reflection; 3 | using System.Runtime.InteropServices; 4 | 5 | // Information specific to this project/assembly 6 | [assembly: AssemblyTitle("CODE Framework - WPF Layout")] 7 | [assembly: AssemblyDescription("CODE Framework WPF Layout Components")] 8 | [assembly: AssemblyConfiguration("")] 9 | [assembly: AssemblyCulture("")] 10 | 11 | // Setting ComVisible to false makes the types in this assembly not visible 12 | // to COM components. If you need to access a type in this assembly from 13 | // COM, set the ComVisible attribute to true on that type. 14 | [assembly: ComVisible(false)] 15 | [assembly: CLSCompliant(true)] 16 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.Layout/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.Mvvm/IHaveViewInformation.cs: -------------------------------------------------------------------------------- 1 | using System.Windows; 2 | 3 | namespace CODE.Framework.Wpf.Mvvm 4 | { 5 | /// Indicates that the object implementing this interface can provide a reference to an associated view 6 | public interface IHaveViewInformation 7 | { 8 | /// Reference to the associated view object 9 | UIElement AssociatedView { get; set; } 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.Mvvm/IViewInformation.cs: -------------------------------------------------------------------------------- 1 | namespace CODE.Framework.Wpf.Mvvm 2 | { 3 | /// 4 | /// Provides information about a launched view 5 | /// 6 | public interface IViewInformation 7 | { 8 | /// 9 | /// Location this view was originally loaded from 10 | /// 11 | string OriginalViewLoadLocation { get; set; } 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.Mvvm/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Reflection; 3 | using System.Runtime.InteropServices; 4 | 5 | // Information specific to this project/assembly 6 | [assembly: AssemblyTitle("CODE Framework - WPF-MVVM")] 7 | [assembly: AssemblyDescription("CODE Framework WPF MVVM Components")] 8 | [assembly: AssemblyConfiguration("")] 9 | [assembly: AssemblyCulture("")] 10 | 11 | // Setting ComVisible to false makes the types in this assembly not visible 12 | // to COM components. If you need to access a type in this assembly from 13 | // COM, set the ComVisible attribute to true on that type. 14 | [assembly: ComVisible(false)] 15 | [assembly: CLSCompliant(true)] 16 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.Mvvm/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.TestBench/App.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.TestBench/App.xaml.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Configuration; 4 | using System.Data; 5 | using System.Linq; 6 | using System.Windows; 7 | 8 | namespace CODE.Framework.Wpf.TestBench 9 | { 10 | /// 11 | /// Interaction logic for App.xaml 12 | /// 13 | public partial class App : Application 14 | { 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.TestBench/AsyncTest.xaml: -------------------------------------------------------------------------------- 1 |  5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.TestBench/BladeTest.xaml.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Windows; 6 | using System.Windows.Controls; 7 | using System.Windows.Data; 8 | using System.Windows.Documents; 9 | using System.Windows.Input; 10 | using System.Windows.Media; 11 | using System.Windows.Media.Imaging; 12 | using System.Windows.Shapes; 13 | 14 | namespace CODE.Framework.Wpf.TestBench 15 | { 16 | /// 17 | /// Interaction logic for BladeTest.xaml 18 | /// 19 | public partial class BladeTest : Window 20 | { 21 | public BladeTest() 22 | { 23 | InitializeComponent(); 24 | } 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.TestBench/ButtonMenuTest.xaml: -------------------------------------------------------------------------------- 1 |  6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.TestBench/ColumnComboBox.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows; 2 | 3 | namespace CODE.Framework.Wpf.TestBench 4 | { 5 | /// 6 | /// Interaction logic for ColumnComboBox.xaml 7 | /// 8 | public partial class ColumnComboBox : Window 9 | { 10 | public ColumnComboBox() 11 | { 12 | InitializeComponent(); 13 | 14 | var model = new MyModel(25); 15 | DataContext = model; 16 | combo.ItemsSource = model.OtherModels; 17 | } 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.TestBench/EditFormTest.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows; 2 | using System.Windows.Input; 3 | using CODE.Framework.Wpf.Layout; 4 | 5 | namespace CODE.Framework.Wpf.TestBench 6 | { 7 | /// 8 | /// Interaction logic for EditFormTest.xaml 9 | /// 10 | public partial class EditFormTest : Window 11 | { 12 | public EditFormTest() 13 | { 14 | InitializeComponent(); 15 | } 16 | 17 | private void Window_MouseDoubleClick(object sender, MouseButtonEventArgs e) 18 | { 19 | edit1.LabelPosition = edit1.LabelPosition == EditFormLabelPositions.Left ? EditFormLabelPositions.Top : EditFormLabelPositions.Left; 20 | } 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.TestBench/FlowFormTest.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows; 2 | 3 | namespace CODE.Framework.Wpf.TestBench 4 | { 5 | /// 6 | /// Interaction logic for FlowFormTest.xaml 7 | /// 8 | public partial class FlowFormTest : Window 9 | { 10 | public FlowFormTest() 11 | { 12 | InitializeComponent(); 13 | DataContext = new TestContext(); 14 | } 15 | } 16 | 17 | public class TestContext 18 | { 19 | public string Name { get; set; } 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.TestBench/ObjectHelperTest.xaml: -------------------------------------------------------------------------------- 1 |  5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.TestBench/PanelSizeAndVisibilityTest.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows; 2 | 3 | namespace CODE.Framework.Wpf.TestBench 4 | { 5 | /// 6 | /// Interaction logic for PanelSizeAndVisibilityTest.xaml 7 | /// 8 | public partial class PanelSizeAndVisibilityTest : Window 9 | { 10 | public PanelSizeAndVisibilityTest() 11 | { 12 | InitializeComponent(); 13 | } 14 | 15 | private void ToggleVisibility(object sender, RoutedEventArgs e) 16 | { 17 | visiblePanel.Visibility = visiblePanel.Visibility == Visibility.Visible ? Visibility.Collapsed : Visibility.Visible; 18 | } 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.TestBench/PrimarySecondaryHorizontaltest.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows; 2 | 3 | namespace CODE.Framework.Wpf.TestBench 4 | { 5 | /// 6 | /// Interaction logic for PrimarySecondaryHorizontaltest.xaml 7 | /// 8 | public partial class PrimarySecondaryHorizontalTest : Window 9 | { 10 | public PrimarySecondaryHorizontalTest() 11 | { 12 | InitializeComponent(); 13 | } 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.TestBench/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.TestBench/SizeAwareContentTest.xaml: -------------------------------------------------------------------------------- 1 |  6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.TestBench/SizeCalcEx.xaml.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Windows; 6 | using System.Windows.Controls; 7 | using System.Windows.Data; 8 | using System.Windows.Documents; 9 | using System.Windows.Input; 10 | using System.Windows.Media; 11 | using System.Windows.Media.Imaging; 12 | using System.Windows.Shapes; 13 | 14 | namespace CODE.Framework.Wpf.TestBench 15 | { 16 | /// 17 | /// Interaction logic for SizeCalcEx.xaml 18 | /// 19 | public partial class SizeCalcEx : Window 20 | { 21 | public SizeCalcEx() 22 | { 23 | InitializeComponent(); 24 | } 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.TestBench/SliderTest.xaml.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Windows; 6 | using System.Windows.Controls; 7 | using System.Windows.Data; 8 | using System.Windows.Documents; 9 | using System.Windows.Input; 10 | using System.Windows.Media; 11 | using System.Windows.Media.Imaging; 12 | using System.Windows.Shapes; 13 | 14 | namespace CODE.Framework.Wpf.TestBench 15 | { 16 | /// 17 | /// Interaction logic for SliderTest.xaml 18 | /// 19 | public partial class SliderTest : Window 20 | { 21 | public SliderTest() 22 | { 23 | InitializeComponent(); 24 | } 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.TestBench/SystemMetricsTests.xaml: -------------------------------------------------------------------------------- 1 |  5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.TestBench/TabItemsPanelTest.xaml.cs: -------------------------------------------------------------------------------- 1 | namespace CODE.Framework.Wpf.TestBench 2 | { 3 | /// 4 | /// Interaction logic for TabItemsPanelTest.xaml 5 | /// 6 | public partial class TabItemsPanelTest 7 | { 8 | public TabItemsPanelTest() 9 | { 10 | InitializeComponent(); 11 | } 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.Theme.Battleship/Battleship-Control-FlowDocumentReader.xaml: -------------------------------------------------------------------------------- 1 |  3 | 4 | 8 | 9 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.Theme.Battleship/Battleship-Control-Label.xaml: -------------------------------------------------------------------------------- 1 |  3 | 4 | 9 | 10 | 8 | 9 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.Theme.Battleship/Battleship-Control-TextBlock.xaml: -------------------------------------------------------------------------------- 1 |  3 | 4 | 7 | 8 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.Theme.Battleship/Battleship-Layout-StandardForm.xaml: -------------------------------------------------------------------------------- 1 |  3 | 4 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.Theme.Battleship/Battleship-Layout-Tabs.xaml: -------------------------------------------------------------------------------- 1 |  4 | 5 | 14 | 15 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.Theme.Battleship/Battleship-StandardTypes.xaml: -------------------------------------------------------------------------------- 1 |  4 | 5 | CODE.Framework.Wpf.Theme.Battleship.Classes.BattleshipStandardFeatures 6 | CODE.Framework.Wpf.Theme.Battleship 7 | 8 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.Theme.Battleship/Controls/BattleshipMenu.cs: -------------------------------------------------------------------------------- 1 | using CODE.Framework.Wpf.Mvvm; 2 | 3 | namespace CODE.Framework.Wpf.Theme.Battleship.Controls 4 | { 5 | /// 6 | /// Special menu object used in Battleship-style applications 7 | /// 8 | public class BattleshipMenu : ViewActionMenu 9 | { 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.Theme.Battleship/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Reflection; 3 | using System.Runtime.InteropServices; 4 | 5 | // Information specific to this project/assembly 6 | [assembly: AssemblyTitle("CODE Framework - WPF Battleship Theme")] 7 | [assembly: AssemblyDescription("CODE Framework WPF Battleship Theme")] 8 | [assembly: AssemblyConfiguration("")] 9 | [assembly: AssemblyCulture("")] 10 | 11 | // Setting ComVisible to false makes the types in this assembly not visible 12 | // to COM components. If you need to access a type in this assembly from 13 | // COM, set the ComVisible attribute to true on that type. 14 | [assembly: ComVisible(false)] 15 | [assembly: CLSCompliant(true)] 16 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.Theme.Battleship/Standard/Notification.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows.Controls; 2 | 3 | namespace CODE.Framework.Wpf.Theme.Battleship.Standard 4 | { 5 | /// 6 | /// Interaction logic for UserControl1.xaml 7 | /// 8 | public partial class Notification : Grid 9 | { 10 | /// 11 | /// Initializes a new instance of the class. 12 | /// 13 | public Notification() 14 | { 15 | InitializeComponent(); 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.Theme.Geek/Controls/CloseNotificationsButton.cs: -------------------------------------------------------------------------------- 1 | using System.Windows.Controls; 2 | using CODE.Framework.Wpf.Mvvm; 3 | 4 | namespace CODE.Framework.Wpf.Theme.Geek.Controls 5 | { 6 | /// 7 | /// Special button to close notifications 8 | /// 9 | public class CloseNotificationsButton : Button 10 | { 11 | /// 12 | /// Called when a is clicked. 13 | /// 14 | protected override void OnClick() 15 | { 16 | base.OnClick(); 17 | 18 | Shell.Current.ClearNotifications(); 19 | } 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.Theme.Geek/Controls/GeekShellZoomSlider.cs: -------------------------------------------------------------------------------- 1 | using CODE.Framework.Wpf.Controls; 2 | using CODE.Framework.Wpf.Mvvm; 3 | 4 | namespace CODE.Framework.Wpf.Theme.Geek.Controls 5 | { 6 | /// 7 | /// Special zoom slider class used by the Geek shell 8 | /// 9 | public class GeekShellZoomSlider : ZoomSlider 10 | { 11 | /// 12 | /// Called when the zoom factor changes 13 | /// 14 | protected override void OnZoomFactorChanged() 15 | { 16 | Shell.Current.DesiredContentZoomFactor = Zoom; 17 | } 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.Theme.Geek/Geek-Control-FlowDocumentReader.xaml: -------------------------------------------------------------------------------- 1 |  3 | 4 | 9 | 10 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.Theme.Geek/Geek-Control-Label.xaml: -------------------------------------------------------------------------------- 1 |  3 | 4 | 9 | 10 | 8 | 9 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.Theme.Geek/Geek-Layout-OneToManyPanel.xaml: -------------------------------------------------------------------------------- 1 |  4 | 5 | 10 | 11 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.Theme.Geek/Geek-Layout-StandardForm.xaml: -------------------------------------------------------------------------------- 1 |  3 | 4 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.Theme.Geek/Geek-Layout-Tabs.xaml: -------------------------------------------------------------------------------- 1 |  4 | 5 | 14 | 15 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.Theme.Geek/Geek-StandardTypes.xaml: -------------------------------------------------------------------------------- 1 |  4 | 5 | CODE.Framework.Wpf.Theme.Geek.Classes.GeekStandardFeatures 6 | CODE.Framework.Wpf.Theme.Geek 7 | 8 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.Theme.Geek/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Reflection; 3 | using System.Runtime.InteropServices; 4 | 5 | // Information specific to this project/assembly 6 | [assembly: AssemblyTitle("CODE Framework - WPF Geek Theme")] 7 | [assembly: AssemblyDescription("CODE Framework WPF Geek Theme")] 8 | [assembly: AssemblyConfiguration("")] 9 | [assembly: AssemblyCulture("")] 10 | 11 | // Setting ComVisible to false makes the types in this assembly not visible 12 | // to COM components. If you need to access a type in this assembly from 13 | // COM, set the ComVisible attribute to true on that type. 14 | [assembly: ComVisible(false)] 15 | [assembly: CLSCompliant(true)] 16 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.Theme.Geek/Standard/Notification.xaml.cs: -------------------------------------------------------------------------------- 1 | using CODE.Framework.Wpf.Controls; 2 | 3 | namespace CODE.Framework.Wpf.Theme.Geek.Standard 4 | { 5 | /// 6 | /// Interaction logic for Notification.xaml 7 | /// 8 | public partial class Notification : ListBoxSmartDataTemplate 9 | { 10 | /// 11 | /// Initializes a new instance of the class. 12 | /// 13 | public Notification() 14 | { 15 | InitializeComponent(); 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.Theme.Geek/comments.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | CODE.Framework.Services.Client 5 | 6 | 7 | 8 | 9 | Helper class that provides methods that make it easier to talk to services 10 | 11 | 12 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.Theme.Metro/Metro-Control-Label.xaml: -------------------------------------------------------------------------------- 1 |  3 | 4 | 9 | 10 | 9 | 10 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.Theme.Metro/Metro-Control-Textblock.xaml: -------------------------------------------------------------------------------- 1 |  3 | 4 | 8 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.Theme.Metro/Metro-Layout-StandardForm.xaml: -------------------------------------------------------------------------------- 1 |  3 | 4 | 14 | 15 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.Theme.Metro/Metro-Layout-Tabs.xaml: -------------------------------------------------------------------------------- 1 |  4 | 5 | 14 | 15 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.Theme.Metro/Metro-StandardTypes.xaml: -------------------------------------------------------------------------------- 1 |  4 | 5 | CODE.Framework.Wpf.Theme.Metro.Classes.MetroStandardFeatures 6 | CODE.Framework.Wpf.Theme.Metro 7 | 8 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.Theme.Metro/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Reflection; 3 | using System.Runtime.InteropServices; 4 | 5 | // Information specific to this project/assembly 6 | [assembly: AssemblyTitle("CODE Framework - WPF Metro Theme")] 7 | [assembly: AssemblyDescription("CODE Framework WPF Metro Theme")] 8 | [assembly: AssemblyConfiguration("")] 9 | [assembly: AssemblyCulture("")] 10 | 11 | // Setting ComVisible to false makes the types in this assembly not visible 12 | // to COM components. If you need to access a type in this assembly from 13 | // COM, set the ComVisible attribute to true on that type. 14 | [assembly: ComVisible(false)] 15 | [assembly: CLSCompliant(true)] 16 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.Theme.Metro/StandardViews/Block.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows.Controls; 2 | 3 | namespace CODE.Framework.Wpf.Theme.Metro.StandardViews 4 | { 5 | /// 6 | /// Interaction logic for Block.xaml 7 | /// 8 | public partial class Block : Grid 9 | { 10 | /// 11 | /// Initializes a new instance of the class. 12 | /// 13 | public Block() 14 | { 15 | InitializeComponent(); 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.Theme.Metro/StandardViews/Components/LogoNameAndCount.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows.Controls; 2 | 3 | namespace CODE.Framework.Wpf.Theme.Metro.StandardViews.Components 4 | { 5 | /// 6 | /// Interaction logic for LogoNameAndCount.xaml 7 | /// 8 | public partial class LogoNameAndCount : Grid 9 | { 10 | /// 11 | /// Initializes a new instance of the class. 12 | /// 13 | public LogoNameAndCount() 14 | { 15 | InitializeComponent(); 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.Theme.Metro/StandardViews/Data01.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows.Controls; 2 | 3 | namespace CODE.Framework.Wpf.Theme.Metro.StandardViews 4 | { 5 | /// 6 | /// Interaction logic for Data01.xaml 7 | /// 8 | public partial class Data01 : Grid 9 | { 10 | /// 11 | /// Initializes a new instance of the class. 12 | /// 13 | public Data01() 14 | { 15 | InitializeComponent(); 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.Theme.Metro/StandardViews/Data02.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows.Controls; 2 | 3 | namespace CODE.Framework.Wpf.Theme.Metro.StandardViews 4 | { 5 | /// 6 | /// Interaction logic for Data02.xaml 7 | /// 8 | public partial class Data02 : Grid 9 | { 10 | /// 11 | /// Initializes a new instance of the class. 12 | /// 13 | public Data02() 14 | { 15 | InitializeComponent(); 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.Theme.Metro/StandardViews/Data03.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows.Controls; 2 | 3 | namespace CODE.Framework.Wpf.Theme.Metro.StandardViews 4 | { 5 | /// 6 | /// Interaction logic for Data03.xaml 7 | /// 8 | public partial class Data03 : Grid 9 | { 10 | /// 11 | /// Initializes a new instance of the class. 12 | /// 13 | public Data03() 14 | { 15 | InitializeComponent(); 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.Theme.Metro/StandardViews/DataAndImage01.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows.Controls; 2 | 3 | namespace CODE.Framework.Wpf.Theme.Metro.StandardViews 4 | { 5 | /// 6 | /// Interaction logic for DataAndImage01.xaml 7 | /// 8 | public partial class DataAndImage01 : Grid 9 | { 10 | /// 11 | /// Initializes a new instance of the class. 12 | /// 13 | public DataAndImage01() 14 | { 15 | InitializeComponent(); 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.Theme.Metro/StandardViews/DataAndImage02.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows.Controls; 2 | 3 | namespace CODE.Framework.Wpf.Theme.Metro.StandardViews 4 | { 5 | /// 6 | /// Interaction logic for DataAndImage02.xaml 7 | /// 8 | public partial class DataAndImage02 : Grid 9 | { 10 | /// 11 | /// Initializes a new instance of the class. 12 | /// 13 | public DataAndImage02() 14 | { 15 | InitializeComponent(); 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.Theme.Metro/StandardViews/DataAndImage03.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows.Controls; 2 | 3 | namespace CODE.Framework.Wpf.Theme.Metro.StandardViews 4 | { 5 | /// 6 | /// Interaction logic for DataAndImage03.xaml 7 | /// 8 | public partial class DataAndImage03 : Grid 9 | { 10 | /// 11 | /// Initializes a new instance of the class. 12 | /// 13 | public DataAndImage03() 14 | { 15 | InitializeComponent(); 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.Theme.Metro/StandardViews/DataRowAndImage01.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows.Controls; 2 | using CODE.Framework.Wpf.Controls; 3 | 4 | namespace CODE.Framework.Wpf.Theme.Metro.StandardViews 5 | { 6 | /// 7 | /// Interaction logic for DataRowAndImage01.xaml 8 | /// 9 | public partial class DataRowAndImage01 : GridEx 10 | { 11 | /// 12 | /// Initializes a new instance of the class. 13 | /// 14 | public DataRowAndImage01() 15 | { 16 | InitializeComponent(); 17 | } 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.Theme.Metro/StandardViews/DataSmall01.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows.Controls; 2 | 3 | namespace CODE.Framework.Wpf.Theme.Metro.StandardViews 4 | { 5 | /// 6 | /// Interaction logic for DataSmall01.xaml 7 | /// 8 | public partial class DataSmall01 : Grid 9 | { 10 | /// 11 | /// Initializes a new instance of the class. 12 | /// 13 | public DataSmall01() 14 | { 15 | InitializeComponent(); 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.Theme.Metro/StandardViews/DataSmall02.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows.Controls; 2 | 3 | namespace CODE.Framework.Wpf.Theme.Metro.StandardViews 4 | { 5 | /// 6 | /// Interaction logic for DataSmall02.xaml 7 | /// 8 | public partial class DataSmall02 : Grid 9 | { 10 | /// 11 | /// Initializes a new instance of the class. 12 | /// 13 | public DataSmall02() 14 | { 15 | InitializeComponent(); 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.Theme.Metro/StandardViews/DataSmall03.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows.Controls; 2 | 3 | namespace CODE.Framework.Wpf.Theme.Metro.StandardViews 4 | { 5 | /// 6 | /// Interaction logic for DataSmall03.xaml 7 | /// 8 | public partial class DataSmall03 : Grid 9 | { 10 | /// 11 | /// Initializes a new instance of the class. 12 | /// 13 | public DataSmall03() 14 | { 15 | InitializeComponent(); 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.Theme.Metro/StandardViews/Fallback.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows.Controls; 2 | 3 | namespace CODE.Framework.Wpf.Theme.Metro.StandardViews 4 | { 5 | /// 6 | /// Metro fallback standard view, which is used in case a desired standard view can't be found 7 | /// 8 | public partial class Fallback : Grid 9 | { 10 | /// 11 | /// Initializes a new instance of the class. 12 | /// 13 | public Fallback() 14 | { 15 | InitializeComponent(); 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.Theme.Metro/StandardViews/Image.xaml: -------------------------------------------------------------------------------- 1 |  8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.Theme.Metro/StandardViews/Image.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows.Controls; 2 | 3 | namespace CODE.Framework.Wpf.Theme.Metro.StandardViews 4 | { 5 | /// 6 | /// Interaction logic for Image.xaml 7 | /// 8 | public partial class Image : Grid 9 | { 10 | /// 11 | /// Initializes a new instance of the class. 12 | /// 13 | public Image() 14 | { 15 | InitializeComponent(); 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.Theme.Metro/StandardViews/LargeBlockAndText01.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows.Controls; 2 | 3 | namespace CODE.Framework.Wpf.Theme.Metro.StandardViews 4 | { 5 | /// 6 | /// Interaction logic for LargeBlockAndText01.xaml 7 | /// 8 | public partial class LargeBlockAndText01 : Grid 9 | { 10 | /// 11 | /// Initializes a new instance of the class. 12 | /// 13 | public LargeBlockAndText01() 14 | { 15 | InitializeComponent(); 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.Theme.Metro/StandardViews/LargeBlockAndText02.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows.Controls; 2 | 3 | namespace CODE.Framework.Wpf.Theme.Metro.StandardViews 4 | { 5 | /// 6 | /// Interaction logic for LargeBlockAndTexct02.xaml 7 | /// 8 | public partial class LargeBlockAndText02 : Grid 9 | { 10 | /// 11 | /// Initializes a new instance of the class. 12 | /// 13 | public LargeBlockAndText02() 14 | { 15 | InitializeComponent(); 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.Theme.Metro/StandardViews/LargeImage.xaml: -------------------------------------------------------------------------------- 1 |  8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.Theme.Metro/StandardViews/LargeImage.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows.Controls; 2 | 3 | namespace CODE.Framework.Wpf.Theme.Metro.StandardViews 4 | { 5 | /// 6 | /// Interaction logic for LargeImage.xaml 7 | /// 8 | public partial class LargeImage : Grid 9 | { 10 | /// 11 | /// Initializes a new instance of the class. 12 | /// 13 | public LargeImage() 14 | { 15 | InitializeComponent(); 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.Theme.Metro/StandardViews/LargeImageAndText01.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows.Controls; 2 | 3 | namespace CODE.Framework.Wpf.Theme.Metro.StandardViews 4 | { 5 | /// 6 | /// Interaction logic for LargeImageAndText01.xaml 7 | /// 8 | public partial class LargeImageAndText01 : Grid 9 | { 10 | /// 11 | /// Initializes a new instance of the class. 12 | /// 13 | public LargeImageAndText01() 14 | { 15 | InitializeComponent(); 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.Theme.Metro/StandardViews/LargeImageAndText02.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows.Controls; 2 | 3 | namespace CODE.Framework.Wpf.Theme.Metro.StandardViews 4 | { 5 | /// 6 | /// Interaction logic for LargeImageAndText02.xaml 7 | /// 8 | public partial class LargeImageAndText02 : Grid 9 | { 10 | /// 11 | /// Initializes a new instance of the class. 12 | /// 13 | public LargeImageAndText02() 14 | { 15 | InitializeComponent(); 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.Theme.Metro/StandardViews/LargeImageCollection.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows.Controls; 2 | 3 | namespace CODE.Framework.Wpf.Theme.Metro.StandardViews 4 | { 5 | /// 6 | /// Interaction logic for LargeImageCollection.xaml 7 | /// 8 | public partial class LargeImageCollection : Grid 9 | { 10 | /// 11 | /// Initializes a new instance of the class. 12 | /// 13 | public LargeImageCollection() 14 | { 15 | InitializeComponent(); 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.Theme.Metro/StandardViews/LargePeekImageAndText01.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows.Controls; 2 | 3 | namespace CODE.Framework.Wpf.Theme.Metro.StandardViews 4 | { 5 | /// 6 | /// Interaction logic for LargePeekImageAndText01.xaml 7 | /// 8 | public partial class LargePeekImageAndText01 : Grid 9 | { 10 | /// 11 | /// Initializes a new instance of the class. 12 | /// 13 | public LargePeekImageAndText01() 14 | { 15 | InitializeComponent(); 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.Theme.Metro/StandardViews/LargePeekImageAndText02.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows.Controls; 2 | 3 | namespace CODE.Framework.Wpf.Theme.Metro.StandardViews 4 | { 5 | /// 6 | /// Interaction logic for LargePeekImageAndText02.xaml 7 | /// 8 | public partial class LargePeekImageAndText02 : Grid 9 | { 10 | /// 11 | /// Initializes a new instance of the class. 12 | /// 13 | public LargePeekImageAndText02() 14 | { 15 | InitializeComponent(); 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.Theme.Metro/StandardViews/LargePeekImageAndText03.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows.Controls; 2 | 3 | namespace CODE.Framework.Wpf.Theme.Metro.StandardViews 4 | { 5 | /// 6 | /// Interaction logic for LargePeekImageAndText03.xaml 7 | /// 8 | public partial class LargePeekImageAndText03 : Grid 9 | { 10 | /// 11 | /// Initializes a new instance of the class. 12 | /// 13 | public LargePeekImageAndText03() 14 | { 15 | InitializeComponent(); 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.Theme.Metro/StandardViews/LargePeekImageAndText04.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows.Controls; 2 | 3 | namespace CODE.Framework.Wpf.Theme.Metro.StandardViews 4 | { 5 | /// 6 | /// Interaction logic for LargePeekImageAndText04.xaml 7 | /// 8 | public partial class LargePeekImageAndText04 : Grid 9 | { 10 | /// 11 | /// Initializes a new instance of the class. 12 | /// 13 | public LargePeekImageAndText04() 14 | { 15 | InitializeComponent(); 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.Theme.Metro/StandardViews/LargePeekImageAndText05.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows.Controls; 2 | 3 | namespace CODE.Framework.Wpf.Theme.Metro.StandardViews 4 | { 5 | /// 6 | /// Interaction logic for LargePeekImageAndText05.xaml 7 | /// 8 | public partial class LargePeekImageAndText05 : Grid 9 | { 10 | /// 11 | /// Initializes a new instance of the class. 12 | /// 13 | public LargePeekImageAndText05() 14 | { 15 | InitializeComponent(); 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.Theme.Metro/StandardViews/LargePeekImageAndText06.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows.Controls; 2 | 3 | namespace CODE.Framework.Wpf.Theme.Metro.StandardViews 4 | { 5 | /// 6 | /// Interaction logic for LargePeekImageAndText06.xaml 7 | /// 8 | public partial class LargePeekImageAndText06 : Grid 9 | { 10 | /// 11 | /// Initializes a new instance of the class. 12 | /// 13 | public LargePeekImageAndText06() 14 | { 15 | InitializeComponent(); 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.Theme.Metro/StandardViews/LargePeekImageCollection01.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows.Controls; 2 | 3 | namespace CODE.Framework.Wpf.Theme.Metro.StandardViews 4 | { 5 | /// 6 | /// Interaction logic for LargePeekImageCollection01.xaml 7 | /// 8 | public partial class LargePeekImageCollection01 : Grid 9 | { 10 | /// 11 | /// Initializes a new instance of the class. 12 | /// 13 | public LargePeekImageCollection01() 14 | { 15 | InitializeComponent(); 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.Theme.Metro/StandardViews/LargePeekImageCollection02.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows.Controls; 2 | 3 | namespace CODE.Framework.Wpf.Theme.Metro.StandardViews 4 | { 5 | /// 6 | /// Interaction logic for LargePeekImageCollection02.xaml 7 | /// 8 | public partial class LargePeekImageCollection02 : Grid 9 | { 10 | /// 11 | /// Initializes a new instance of the class. 12 | /// 13 | public LargePeekImageCollection02() 14 | { 15 | InitializeComponent(); 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.Theme.Metro/StandardViews/LargePeekImageCollection03.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows.Controls; 2 | 3 | namespace CODE.Framework.Wpf.Theme.Metro.StandardViews 4 | { 5 | /// 6 | /// Interaction logic for LargePeekImageCollection03.xaml 7 | /// 8 | public partial class LargePeekImageCollection03 : Grid 9 | { 10 | /// 11 | /// Initializes a new instance of the class. 12 | /// 13 | public LargePeekImageCollection03() 14 | { 15 | InitializeComponent(); 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.Theme.Metro/StandardViews/LargePeekImageCollection04.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows.Controls; 2 | 3 | namespace CODE.Framework.Wpf.Theme.Metro.StandardViews 4 | { 5 | /// 6 | /// Interaction logic for LargePeekImageCollection04.xaml 7 | /// 8 | public partial class LargePeekImageCollection04 : Grid 9 | { 10 | /// 11 | /// Initializes a new instance of the class. 12 | /// 13 | public LargePeekImageCollection04() 14 | { 15 | InitializeComponent(); 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.Theme.Metro/StandardViews/LargePeekImageCollection05.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows.Controls; 2 | 3 | namespace CODE.Framework.Wpf.Theme.Metro.StandardViews 4 | { 5 | /// 6 | /// Interaction logic for LargePeekImageCollection05.xaml 7 | /// 8 | public partial class LargePeekImageCollection05 : Grid 9 | { 10 | /// 11 | /// Initializes a new instance of the class. 12 | /// 13 | public LargePeekImageCollection05() 14 | { 15 | InitializeComponent(); 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.Theme.Metro/StandardViews/LargePeekImageCollection06.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows.Controls; 2 | 3 | namespace CODE.Framework.Wpf.Theme.Metro.StandardViews 4 | { 5 | /// 6 | /// Interaction logic for LargePeekImageCollection06.xaml 7 | /// 8 | public partial class LargePeekImageCollection06 : Grid 9 | { 10 | /// 11 | /// Initializes a new instance of the class. 12 | /// 13 | public LargePeekImageCollection06() 14 | { 15 | InitializeComponent(); 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.Theme.Metro/StandardViews/LargeSmallImageAndText01.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows.Controls; 2 | 3 | namespace CODE.Framework.Wpf.Theme.Metro.StandardViews 4 | { 5 | /// 6 | /// Interaction logic for LargeSmallImageAndText01.xaml 7 | /// 8 | public partial class LargeSmallImageAndText01 : Grid 9 | { 10 | /// 11 | /// Initializes a new instance of the class. 12 | /// 13 | public LargeSmallImageAndText01() 14 | { 15 | InitializeComponent(); 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.Theme.Metro/StandardViews/LargeSmallImageAndText02.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows.Controls; 2 | 3 | namespace CODE.Framework.Wpf.Theme.Metro.StandardViews 4 | { 5 | /// 6 | /// Interaction logic for LargeSmallImageAndText02.xaml 7 | /// 8 | public partial class LargeSmallImageAndText02 : Grid 9 | { 10 | /// 11 | /// Initializes a new instance of the class. 12 | /// 13 | public LargeSmallImageAndText02() 14 | { 15 | InitializeComponent(); 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.Theme.Metro/StandardViews/LargeSmallImageAndText03.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows.Controls; 2 | 3 | namespace CODE.Framework.Wpf.Theme.Metro.StandardViews 4 | { 5 | /// 6 | /// Interaction logic for LargeSmallImageAndText03.xaml 7 | /// 8 | public partial class LargeSmallImageAndText03 : Grid 9 | { 10 | /// 11 | /// Initializes a new instance of the class. 12 | /// 13 | public LargeSmallImageAndText03() 14 | { 15 | InitializeComponent(); 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.Theme.Metro/StandardViews/LargeSmallImageAndText04.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows.Controls; 2 | 3 | namespace CODE.Framework.Wpf.Theme.Metro.StandardViews 4 | { 5 | /// 6 | /// Interaction logic for LargeSmallImageAndText04.xaml 7 | /// 8 | public partial class LargeSmallImageAndText04 : Grid 9 | { 10 | /// 11 | /// Initializes a new instance of the class. 12 | /// 13 | public LargeSmallImageAndText04() 14 | { 15 | InitializeComponent(); 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.Theme.Metro/StandardViews/LargeSmallImageAndText05.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows.Controls; 2 | 3 | namespace CODE.Framework.Wpf.Theme.Metro.StandardViews 4 | { 5 | /// 6 | /// Interaction logic for LargeSmallImageAndText05.xaml 7 | /// 8 | public partial class LargeSmallImageAndText05 : Grid 9 | { 10 | /// 11 | /// Initializes a new instance of the class. 12 | /// 13 | public LargeSmallImageAndText05() 14 | { 15 | InitializeComponent(); 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.Theme.Metro/StandardViews/LargeSmallImageAndText06.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows.Controls; 2 | 3 | namespace CODE.Framework.Wpf.Theme.Metro.StandardViews 4 | { 5 | /// 6 | /// Interaction logic for LargeSmallImageAndText06.xaml 7 | /// 8 | public partial class LargeSmallImageAndText06 : Grid 9 | { 10 | /// 11 | /// Initializes a new instance of the class. 12 | /// 13 | public LargeSmallImageAndText06() 14 | { 15 | InitializeComponent(); 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.Theme.Metro/StandardViews/LargeSmallImageAndText07.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows.Controls; 2 | 3 | namespace CODE.Framework.Wpf.Theme.Metro.StandardViews 4 | { 5 | /// 6 | /// Interaction logic for LargeSmallImageAndText07.xaml 7 | /// 8 | public partial class LargeSmallImageAndText07 : Grid 9 | { 10 | /// 11 | /// Initializes a new instance of the class. 12 | /// 13 | public LargeSmallImageAndText07() 14 | { 15 | InitializeComponent(); 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.Theme.Metro/StandardViews/LargeText01.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows.Controls; 2 | 3 | namespace CODE.Framework.Wpf.Theme.Metro.StandardViews 4 | { 5 | /// 6 | /// Interaction logic for LargeText01.xaml 7 | /// 8 | public partial class LargeText01 : Grid 9 | { 10 | /// 11 | /// Initializes a new instance of the class. 12 | /// 13 | public LargeText01() 14 | { 15 | InitializeComponent(); 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.Theme.Metro/StandardViews/LargeText02.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows.Controls; 2 | 3 | namespace CODE.Framework.Wpf.Theme.Metro.StandardViews 4 | { 5 | /// 6 | /// Interaction logic for LargeText02.xaml 7 | /// 8 | public partial class LargeText02 : Grid 9 | { 10 | /// 11 | /// Initializes a new instance of the class. 12 | /// 13 | public LargeText02() 14 | { 15 | InitializeComponent(); 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.Theme.Metro/StandardViews/LargeText03.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows.Controls; 2 | 3 | namespace CODE.Framework.Wpf.Theme.Metro.StandardViews 4 | { 5 | /// 6 | /// Interaction logic for LargeText03.xaml 7 | /// 8 | public partial class LargeText03 : Grid 9 | { 10 | /// 11 | /// Initializes a new instance of the class. 12 | /// 13 | public LargeText03() 14 | { 15 | InitializeComponent(); 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.Theme.Metro/StandardViews/LargeText04.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows.Controls; 2 | 3 | namespace CODE.Framework.Wpf.Theme.Metro.StandardViews 4 | { 5 | /// 6 | /// Interaction logic for LargeText04.xaml 7 | /// 8 | public partial class LargeText04 : Grid 9 | { 10 | /// 11 | /// Initializes a new instance of the class. 12 | /// 13 | public LargeText04() 14 | { 15 | InitializeComponent(); 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.Theme.Metro/StandardViews/LargeText05.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows.Controls; 2 | 3 | namespace CODE.Framework.Wpf.Theme.Metro.StandardViews 4 | { 5 | /// 6 | /// Interaction logic for LargeText05.xaml 7 | /// 8 | public partial class LargeText05 : Grid 9 | { 10 | /// 11 | /// Initializes a new instance of the class. 12 | /// 13 | public LargeText05() 14 | { 15 | InitializeComponent(); 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.Theme.Metro/StandardViews/LargeText06.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows.Controls; 2 | 3 | namespace CODE.Framework.Wpf.Theme.Metro.StandardViews 4 | { 5 | /// 6 | /// Interaction logic for LargeText06.xaml 7 | /// 8 | public partial class LargeText06 : Grid 9 | { 10 | /// 11 | /// Initializes a new instance of the class. 12 | /// 13 | public LargeText06() 14 | { 15 | InitializeComponent(); 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.Theme.Metro/StandardViews/LargeText07.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows.Controls; 2 | 3 | namespace CODE.Framework.Wpf.Theme.Metro.StandardViews 4 | { 5 | /// 6 | /// Interaction logic for LargeText07.xaml 7 | /// 8 | public partial class LargeText07 : Grid 9 | { 10 | /// 11 | /// Initializes a new instance of the class. 12 | /// 13 | public LargeText07() 14 | { 15 | InitializeComponent(); 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.Theme.Metro/StandardViews/LargeText08.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows.Controls; 2 | 3 | namespace CODE.Framework.Wpf.Theme.Metro.StandardViews 4 | { 5 | /// 6 | /// Interaction logic for LargeText08.xaml 7 | /// 8 | public partial class LargeText08 : Grid 9 | { 10 | /// 11 | /// Initializes a new instance of the class. 12 | /// 13 | public LargeText08() 14 | { 15 | InitializeComponent(); 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.Theme.Metro/StandardViews/LargeText09.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows.Controls; 2 | 3 | namespace CODE.Framework.Wpf.Theme.Metro.StandardViews 4 | { 5 | /// 6 | /// Interaction logic for LargeText09.xaml 7 | /// 8 | public partial class LargeText09 : Grid 9 | { 10 | /// 11 | /// Initializes a new instance of the class. 12 | /// 13 | public LargeText09() 14 | { 15 | InitializeComponent(); 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.Theme.Metro/StandardViews/LargeText10.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows.Controls; 2 | 3 | namespace CODE.Framework.Wpf.Theme.Metro.StandardViews 4 | { 5 | /// 6 | /// Interaction logic for LargeText10.xaml 7 | /// 8 | public partial class LargeText10 : Grid 9 | { 10 | /// 11 | /// Initializes a new instance of the class. 12 | /// 13 | public LargeText10() 14 | { 15 | InitializeComponent(); 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.Theme.Metro/StandardViews/LargeText11.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows.Controls; 2 | 3 | namespace CODE.Framework.Wpf.Theme.Metro.StandardViews 4 | { 5 | /// 6 | /// Interaction logic for LargeText11.xaml 7 | /// 8 | public partial class LargeText11 : Grid 9 | { 10 | /// 11 | /// Initializes a new instance of the class. 12 | /// 13 | public LargeText11() 14 | { 15 | InitializeComponent(); 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.Theme.Metro/StandardViews/PeekImageAndText01.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows.Controls; 2 | 3 | namespace CODE.Framework.Wpf.Theme.Metro.StandardViews 4 | { 5 | /// 6 | /// Interaction logic for PeekImageAndText01.xaml 7 | /// 8 | public partial class PeekImageAndText01 : Grid 9 | { 10 | /// 11 | /// Initializes a new instance of the class. 12 | /// 13 | public PeekImageAndText01() 14 | { 15 | InitializeComponent(); 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.Theme.Metro/StandardViews/PeekImageAndText02.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows.Controls; 2 | 3 | namespace CODE.Framework.Wpf.Theme.Metro.StandardViews 4 | { 5 | /// 6 | /// Interaction logic for PeekImageAndText02.xaml 7 | /// 8 | public partial class PeekImageAndText02 : Grid 9 | { 10 | /// 11 | /// Initializes a new instance of the class. 12 | /// 13 | public PeekImageAndText02() 14 | { 15 | InitializeComponent(); 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.Theme.Metro/StandardViews/PeekImageAndText03.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows.Controls; 2 | 3 | namespace CODE.Framework.Wpf.Theme.Metro.StandardViews 4 | { 5 | /// 6 | /// Interaction logic for PeekImageAndText03.xaml 7 | /// 8 | public partial class PeekImageAndText03 : Grid 9 | { 10 | /// 11 | /// Initializes a new instance of the class. 12 | /// 13 | public PeekImageAndText03() 14 | { 15 | InitializeComponent(); 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.Theme.Metro/StandardViews/PeekImageAndText04.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows.Controls; 2 | 3 | namespace CODE.Framework.Wpf.Theme.Metro.StandardViews 4 | { 5 | /// 6 | /// Interaction logic for PeekImageAndText04.xaml 7 | /// 8 | public partial class PeekImageAndText04 : Grid 9 | { 10 | /// 11 | /// Initializes a new instance of the class. 12 | /// 13 | public PeekImageAndText04() 14 | { 15 | InitializeComponent(); 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.Theme.Metro/StandardViews/PeekImageAndText05.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows.Controls; 2 | 3 | namespace CODE.Framework.Wpf.Theme.Metro.StandardViews 4 | { 5 | /// 6 | /// Interaction logic for PeekImageAndText05.xaml 7 | /// 8 | public partial class PeekImageAndText05 : Grid 9 | { 10 | /// 11 | /// Initializes a new instance of the class. 12 | /// 13 | public PeekImageAndText05() 14 | { 15 | InitializeComponent(); 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.Theme.Metro/StandardViews/Text01.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows.Controls; 2 | 3 | namespace CODE.Framework.Wpf.Theme.Metro.StandardViews 4 | { 5 | /// 6 | /// Interaction logic for Text01.xaml 7 | /// 8 | public partial class Text01 : Grid 9 | { 10 | /// 11 | /// Initializes a new instance of the class. 12 | /// 13 | public Text01() 14 | { 15 | InitializeComponent(); 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.Theme.Metro/StandardViews/Text02.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows.Controls; 2 | 3 | namespace CODE.Framework.Wpf.Theme.Metro.StandardViews 4 | { 5 | /// 6 | /// Interaction logic for Text02.xaml 7 | /// 8 | public partial class Text02 : Grid 9 | { 10 | /// 11 | /// Initializes a new instance of the class. 12 | /// 13 | public Text02() 14 | { 15 | InitializeComponent(); 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.Theme.Metro/StandardViews/Text03.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows.Controls; 2 | 3 | namespace CODE.Framework.Wpf.Theme.Metro.StandardViews 4 | { 5 | /// 6 | /// Interaction logic for Text03.xaml 7 | /// 8 | public partial class Text03 : Grid 9 | { 10 | /// 11 | /// Initializes a new instance of the class. 12 | /// 13 | public Text03() 14 | { 15 | InitializeComponent(); 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.Theme.Metro/StandardViews/Text04.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows.Controls; 2 | 3 | namespace CODE.Framework.Wpf.Theme.Metro.StandardViews 4 | { 5 | /// 6 | /// Interaction logic for Text04.xaml 7 | /// 8 | public partial class Text04 : Grid 9 | { 10 | /// 11 | /// Initializes a new instance of the class. 12 | /// 13 | public Text04() 14 | { 15 | InitializeComponent(); 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.Theme.Metro/StandardViews/Text05.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows.Controls; 2 | 3 | namespace CODE.Framework.Wpf.Theme.Metro.StandardViews 4 | { 5 | /// 6 | /// Interaction logic for Text05.xaml 7 | /// 8 | public partial class Text05 : Grid 9 | { 10 | /// 11 | /// Initializes a new instance of the class. 12 | /// 13 | public Text05() 14 | { 15 | InitializeComponent(); 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.Theme.Metro/StandardViews/TileNarrow.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows.Controls; 2 | 3 | namespace CODE.Framework.Wpf.Theme.Metro.StandardViews 4 | { 5 | /// 6 | /// Interaction logic for TileNarrow.xaml 7 | /// 8 | public partial class TileNarrow : Grid 9 | { 10 | /// 11 | /// Initializes a new instance of the class. 12 | /// 13 | public TileNarrow() 14 | { 15 | InitializeComponent(); 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.Theme.Metro/StandardViews/TileNarrow1Image.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows.Controls; 2 | 3 | namespace CODE.Framework.Wpf.Theme.Metro.StandardViews 4 | { 5 | /// 6 | /// Interaction logic for TileNarrow1Image.xaml 7 | /// 8 | public partial class TileNarrow1Image : Grid 9 | { 10 | /// 11 | /// Initializes a new instance of the class. 12 | /// 13 | public TileNarrow1Image() 14 | { 15 | InitializeComponent(); 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.Theme.Metro/StandardViews/TileTiny.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows.Controls; 2 | 3 | namespace CODE.Framework.Wpf.Theme.Metro.StandardViews 4 | { 5 | /// 6 | /// Templates for tiny tiles 7 | /// 8 | public partial class TileTiny : Grid 9 | { 10 | /// 11 | /// Initializes a new instance of the class. 12 | /// 13 | public TileTiny() 14 | { 15 | InitializeComponent(); 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.Theme.Metro/StandardViews/TileTiny1Image.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows.Controls; 2 | 3 | namespace CODE.Framework.Wpf.Theme.Metro.StandardViews 4 | { 5 | /// 6 | /// Interaction logic for TileTiny1Image.xaml 7 | /// 8 | public partial class TileTiny1Image : Grid 9 | { 10 | /// 11 | /// Initializes a new instance of the class. 12 | /// 13 | public TileTiny1Image() 14 | { 15 | InitializeComponent(); 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.Theme.Metro/StandardViews/TileWide.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows.Controls; 2 | 3 | namespace CODE.Framework.Wpf.Theme.Metro.StandardViews 4 | { 5 | /// 6 | /// Interaction logic for TileWide.xaml 7 | /// 8 | public partial class TileWide : Grid 9 | { 10 | /// 11 | /// Initializes a new instance of the class. 12 | /// 13 | public TileWide() 14 | { 15 | InitializeComponent(); 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.Theme.Metro/StandardViews/TileWide1Image.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows.Controls; 2 | 3 | namespace CODE.Framework.Wpf.Theme.Metro.StandardViews 4 | { 5 | /// 6 | /// Interaction logic for TileWide1Image.xaml 7 | /// 8 | public partial class TileWide1Image : Grid 9 | { 10 | /// 11 | /// Initializes a new instance of the class. 12 | /// 13 | public TileWide1Image() 14 | { 15 | InitializeComponent(); 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.Theme.Metro/StandardViews/TileWide5Images.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows.Controls; 2 | 3 | namespace CODE.Framework.Wpf.Theme.Metro.StandardViews 4 | { 5 | /// 6 | /// Interaction logic for TileWide5Images.xaml 7 | /// 8 | public partial class TileWide5Images : Grid 9 | { 10 | /// 11 | /// Initializes a new instance of the class. 12 | /// 13 | public TileWide5Images() 14 | { 15 | InitializeComponent(); 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.Theme.Metro/StandardViews/TileWideSquare.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows.Controls; 2 | 3 | namespace CODE.Framework.Wpf.Theme.Metro.StandardViews 4 | { 5 | /// 6 | /// Tile template for large squares 7 | /// 8 | public partial class TileWideSquare : Grid 9 | { 10 | /// 11 | /// Initializes a new instance of the class. 12 | /// 13 | public TileWideSquare() 14 | { 15 | InitializeComponent(); 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.Theme.Metro/StandardViews/TileWideSquare1Image.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows.Controls; 2 | 3 | namespace CODE.Framework.Wpf.Theme.Metro.StandardViews 4 | { 5 | /// 6 | /// Interaction logic for TileWideSquare1Image.xaml 7 | /// 8 | public partial class TileWideSquare1Image : Grid 9 | { 10 | /// 11 | /// Constructor 12 | /// 13 | public TileWideSquare1Image() 14 | { 15 | InitializeComponent(); 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.Theme.Metro/StandardViews/TileWideSquare5Images.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows.Controls; 2 | 3 | namespace CODE.Framework.Wpf.Theme.Metro.StandardViews 4 | { 5 | /// 6 | /// Interaction logic for TileWideSquare5Images.xaml 7 | /// 8 | public partial class TileWideSquare5Images : Grid 9 | { 10 | /// 11 | /// Constructor 12 | /// 13 | public TileWideSquare5Images() 14 | { 15 | InitializeComponent(); 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.Theme.Newsroom/Newsroom-Control-Label.xaml: -------------------------------------------------------------------------------- 1 |  3 | 4 | 9 | 10 | 9 | 10 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.Theme.Newsroom/Newsroom-Control-Textblock.xaml: -------------------------------------------------------------------------------- 1 |  3 | 4 | 7 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.Theme.Newsroom/Newsroom-Layout-StandardForm.xaml: -------------------------------------------------------------------------------- 1 |  3 | 4 | 14 | 15 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.Theme.Newsroom/Newsroom-Layout-Tabs.xaml: -------------------------------------------------------------------------------- 1 |  4 | 5 | 14 | 15 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.Theme.Newsroom/Newsroom-StandardTypes.xaml: -------------------------------------------------------------------------------- 1 |  4 | 5 | CODE.Framework.Wpf.Theme.Newsroom.Classes.NewsroomStandardFeatures 6 | CODE.Framework.Wpf.Theme.Newsroom 7 | 8 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.Theme.Newsroom/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Reflection; 3 | using System.Runtime.InteropServices; 4 | 5 | // Information specific to this project/assembly 6 | [assembly: AssemblyTitle("CODE Framework - WPF Newsroom Theme")] 7 | [assembly: AssemblyDescription("CODE Framework WPF Newsroom Theme")] 8 | [assembly: AssemblyConfiguration("")] 9 | [assembly: AssemblyCulture("")] 10 | 11 | // Setting ComVisible to false makes the types in this assembly not visible 12 | // to COM components. If you need to access a type in this assembly from 13 | // COM, set the ComVisible attribute to true on that type. 14 | [assembly: ComVisible(false)] 15 | [assembly: CLSCompliant(true)] 16 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.Theme.Newsroom/StandardViews/Block.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows.Controls; 2 | 3 | namespace CODE.Framework.Wpf.Theme.Newsroom.StandardViews 4 | { 5 | /// 6 | /// Interaction logic for Block.xaml 7 | /// 8 | public partial class Block : Grid 9 | { 10 | /// 11 | /// Initializes a new instance of the class. 12 | /// 13 | public Block() 14 | { 15 | InitializeComponent(); 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.Theme.Newsroom/StandardViews/Components/LogoAndNameCount.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows.Controls; 2 | 3 | namespace CODE.Framework.Wpf.Theme.Newsroom.StandardViews.Components 4 | { 5 | /// 6 | /// Interaction logic for LogoNameAndCount.xaml 7 | /// 8 | public partial class LogoNameAndCount : Grid 9 | { 10 | /// 11 | /// Initializes a new instance of the class. 12 | /// 13 | public LogoNameAndCount() 14 | { 15 | InitializeComponent(); 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.Theme.Newsroom/StandardViews/Data01.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows.Controls; 2 | 3 | namespace CODE.Framework.Wpf.Theme.Newsroom.StandardViews 4 | { 5 | /// 6 | /// Interaction logic for Data01.xaml 7 | /// 8 | public partial class Data01 : Grid 9 | { 10 | /// 11 | /// Initializes a new instance of the class. 12 | /// 13 | public Data01() 14 | { 15 | InitializeComponent(); 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.Theme.Newsroom/StandardViews/Data02.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows.Controls; 2 | 3 | namespace CODE.Framework.Wpf.Theme.Newsroom.StandardViews 4 | { 5 | /// 6 | /// Interaction logic for Data02.xaml 7 | /// 8 | public partial class Data02 : Grid 9 | { 10 | /// 11 | /// Initializes a new instance of the class. 12 | /// 13 | public Data02() 14 | { 15 | InitializeComponent(); 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.Theme.Newsroom/StandardViews/Data03.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows.Controls; 2 | 3 | namespace CODE.Framework.Wpf.Theme.Newsroom.StandardViews 4 | { 5 | /// 6 | /// Interaction logic for Data03.xaml 7 | /// 8 | public partial class Data03 : Grid 9 | { 10 | /// 11 | /// Initializes a new instance of the class. 12 | /// 13 | public Data03() 14 | { 15 | InitializeComponent(); 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.Theme.Newsroom/StandardViews/DataAndImage01.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows.Controls; 2 | 3 | namespace CODE.Framework.Wpf.Theme.Newsroom.StandardViews 4 | { 5 | /// 6 | /// Interaction logic for DataAndImage01.xaml 7 | /// 8 | public partial class DataAndImage01 : Grid 9 | { 10 | /// 11 | /// Initializes a new instance of the class. 12 | /// 13 | public DataAndImage01() 14 | { 15 | InitializeComponent(); 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.Theme.Newsroom/StandardViews/DataAndImage02.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows.Controls; 2 | 3 | namespace CODE.Framework.Wpf.Theme.Newsroom.StandardViews 4 | { 5 | /// 6 | /// Interaction logic for DataAndImage02.xaml 7 | /// 8 | public partial class DataAndImage02 : Grid 9 | { 10 | /// 11 | /// Initializes a new instance of the class. 12 | /// 13 | public DataAndImage02() 14 | { 15 | InitializeComponent(); 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.Theme.Newsroom/StandardViews/DataAndImage03.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows.Controls; 2 | 3 | namespace CODE.Framework.Wpf.Theme.Newsroom.StandardViews 4 | { 5 | /// 6 | /// Interaction logic for DataAndImage03.xaml 7 | /// 8 | public partial class DataAndImage03 : Grid 9 | { 10 | /// 11 | /// Initializes a new instance of the class. 12 | /// 13 | public DataAndImage03() 14 | { 15 | InitializeComponent(); 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.Theme.Newsroom/StandardViews/DataRowAndImage01.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows.Controls; 2 | using CODE.Framework.Wpf.Controls; 3 | 4 | namespace CODE.Framework.Wpf.Theme.Newsroom.StandardViews 5 | { 6 | /// 7 | /// Interaction logic for DataRowAndImage01.xaml 8 | /// 9 | public partial class DataRowAndImage01 : GridEx 10 | { 11 | /// 12 | /// Initializes a new instance of the class. 13 | /// 14 | public DataRowAndImage01() 15 | { 16 | InitializeComponent(); 17 | } 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.Theme.Newsroom/StandardViews/DataSmall01.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows.Controls; 2 | 3 | namespace CODE.Framework.Wpf.Theme.Newsroom.StandardViews 4 | { 5 | /// 6 | /// Interaction logic for DataSmall01.xaml 7 | /// 8 | public partial class DataSmall01 : Grid 9 | { 10 | /// 11 | /// Initializes a new instance of the class. 12 | /// 13 | public DataSmall01() 14 | { 15 | InitializeComponent(); 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.Theme.Newsroom/StandardViews/DataSmall02.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows.Controls; 2 | 3 | namespace CODE.Framework.Wpf.Theme.Newsroom.StandardViews 4 | { 5 | /// 6 | /// Interaction logic for DataSmall02.xaml 7 | /// 8 | public partial class DataSmall02 : Grid 9 | { 10 | /// 11 | /// Initializes a new instance of the class. 12 | /// 13 | public DataSmall02() 14 | { 15 | InitializeComponent(); 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.Theme.Newsroom/StandardViews/DataSmall03.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows.Controls; 2 | 3 | namespace CODE.Framework.Wpf.Theme.Newsroom.StandardViews 4 | { 5 | /// 6 | /// Interaction logic for DataSmall03.xaml 7 | /// 8 | public partial class DataSmall03 : Grid 9 | { 10 | /// 11 | /// Initializes a new instance of the class. 12 | /// 13 | public DataSmall03() 14 | { 15 | InitializeComponent(); 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.Theme.Newsroom/StandardViews/Fallback.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows.Controls; 2 | 3 | namespace CODE.Framework.Wpf.Theme.Newsroom.StandardViews 4 | { 5 | /// 6 | /// Metro fallback standard view, which is used in case a desired standard view can't be found 7 | /// 8 | public partial class Fallback : Grid 9 | { 10 | /// 11 | /// Initializes a new instance of the class. 12 | /// 13 | public Fallback() 14 | { 15 | InitializeComponent(); 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.Theme.Newsroom/StandardViews/Image.xaml: -------------------------------------------------------------------------------- 1 |  8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.Theme.Newsroom/StandardViews/Image.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows.Controls; 2 | 3 | namespace CODE.Framework.Wpf.Theme.Newsroom.StandardViews 4 | { 5 | /// 6 | /// Interaction logic for Image.xaml 7 | /// 8 | public partial class Image : Grid 9 | { 10 | /// 11 | /// Initializes a new instance of the class. 12 | /// 13 | public Image() 14 | { 15 | InitializeComponent(); 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.Theme.Newsroom/StandardViews/LargeBlockAndText01.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows.Controls; 2 | 3 | namespace CODE.Framework.Wpf.Theme.Newsroom.StandardViews 4 | { 5 | /// 6 | /// Interaction logic for LargeBlockAndText01.xaml 7 | /// 8 | public partial class LargeBlockAndText01 : Grid 9 | { 10 | /// 11 | /// Initializes a new instance of the class. 12 | /// 13 | public LargeBlockAndText01() 14 | { 15 | InitializeComponent(); 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.Theme.Newsroom/StandardViews/LargeBlockAndText02.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows.Controls; 2 | 3 | namespace CODE.Framework.Wpf.Theme.Newsroom.StandardViews 4 | { 5 | /// 6 | /// Interaction logic for LargeBlockAndTexct02.xaml 7 | /// 8 | public partial class LargeBlockAndText02 : Grid 9 | { 10 | /// 11 | /// Initializes a new instance of the class. 12 | /// 13 | public LargeBlockAndText02() 14 | { 15 | InitializeComponent(); 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.Theme.Newsroom/StandardViews/LargeImage.xaml: -------------------------------------------------------------------------------- 1 |  8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.Theme.Newsroom/StandardViews/LargeImage.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows.Controls; 2 | 3 | namespace CODE.Framework.Wpf.Theme.Newsroom.StandardViews 4 | { 5 | /// 6 | /// Interaction logic for LargeImage.xaml 7 | /// 8 | public partial class LargeImage : Grid 9 | { 10 | /// 11 | /// Initializes a new instance of the class. 12 | /// 13 | public LargeImage() 14 | { 15 | InitializeComponent(); 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.Theme.Newsroom/StandardViews/LargeImageAndText01.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows.Controls; 2 | 3 | namespace CODE.Framework.Wpf.Theme.Newsroom.StandardViews 4 | { 5 | /// 6 | /// Interaction logic for LargeImageAndText01.xaml 7 | /// 8 | public partial class LargeImageAndText01 : Grid 9 | { 10 | /// 11 | /// Initializes a new instance of the class. 12 | /// 13 | public LargeImageAndText01() 14 | { 15 | InitializeComponent(); 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.Theme.Newsroom/StandardViews/LargeImageAndText02.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows.Controls; 2 | 3 | namespace CODE.Framework.Wpf.Theme.Newsroom.StandardViews 4 | { 5 | /// 6 | /// Interaction logic for LargeImageAndText02.xaml 7 | /// 8 | public partial class LargeImageAndText02 : Grid 9 | { 10 | /// 11 | /// Initializes a new instance of the class. 12 | /// 13 | public LargeImageAndText02() 14 | { 15 | InitializeComponent(); 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.Theme.Newsroom/StandardViews/LargeImageCollection.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows.Controls; 2 | 3 | namespace CODE.Framework.Wpf.Theme.Newsroom.StandardViews 4 | { 5 | /// 6 | /// Interaction logic for LargeImageCollection.xaml 7 | /// 8 | public partial class LargeImageCollection : Grid 9 | { 10 | /// 11 | /// Initializes a new instance of the class. 12 | /// 13 | public LargeImageCollection() 14 | { 15 | InitializeComponent(); 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.Theme.Newsroom/StandardViews/LargePeekImageAndText01.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows.Controls; 2 | 3 | namespace CODE.Framework.Wpf.Theme.Newsroom.StandardViews 4 | { 5 | /// 6 | /// Interaction logic for LargePeekImageAndText01.xaml 7 | /// 8 | public partial class LargePeekImageAndText01 : Grid 9 | { 10 | /// 11 | /// Initializes a new instance of the class. 12 | /// 13 | public LargePeekImageAndText01() 14 | { 15 | InitializeComponent(); 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.Theme.Newsroom/StandardViews/LargePeekImageAndText02.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows.Controls; 2 | 3 | namespace CODE.Framework.Wpf.Theme.Newsroom.StandardViews 4 | { 5 | /// 6 | /// Interaction logic for LargePeekImageAndText02.xaml 7 | /// 8 | public partial class LargePeekImageAndText02 : Grid 9 | { 10 | /// 11 | /// Initializes a new instance of the class. 12 | /// 13 | public LargePeekImageAndText02() 14 | { 15 | InitializeComponent(); 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.Theme.Newsroom/StandardViews/LargePeekImageAndText03.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows.Controls; 2 | 3 | namespace CODE.Framework.Wpf.Theme.Newsroom.StandardViews 4 | { 5 | /// 6 | /// Interaction logic for LargePeekImageAndText03.xaml 7 | /// 8 | public partial class LargePeekImageAndText03 : Grid 9 | { 10 | /// 11 | /// Initializes a new instance of the class. 12 | /// 13 | public LargePeekImageAndText03() 14 | { 15 | InitializeComponent(); 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.Theme.Newsroom/StandardViews/LargePeekImageAndText04.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows.Controls; 2 | 3 | namespace CODE.Framework.Wpf.Theme.Newsroom.StandardViews 4 | { 5 | /// 6 | /// Interaction logic for LargePeekImageAndText04.xaml 7 | /// 8 | public partial class LargePeekImageAndText04 : Grid 9 | { 10 | /// 11 | /// Initializes a new instance of the class. 12 | /// 13 | public LargePeekImageAndText04() 14 | { 15 | InitializeComponent(); 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.Theme.Newsroom/StandardViews/LargePeekImageAndText05.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows.Controls; 2 | 3 | namespace CODE.Framework.Wpf.Theme.Newsroom.StandardViews 4 | { 5 | /// 6 | /// Interaction logic for LargePeekImageAndText05.xaml 7 | /// 8 | public partial class LargePeekImageAndText05 : Grid 9 | { 10 | /// 11 | /// Initializes a new instance of the class. 12 | /// 13 | public LargePeekImageAndText05() 14 | { 15 | InitializeComponent(); 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.Theme.Newsroom/StandardViews/LargePeekImageAndText06.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows.Controls; 2 | 3 | namespace CODE.Framework.Wpf.Theme.Newsroom.StandardViews 4 | { 5 | /// 6 | /// Interaction logic for LargePeekImageAndText06.xaml 7 | /// 8 | public partial class LargePeekImageAndText06 : Grid 9 | { 10 | /// 11 | /// Initializes a new instance of the class. 12 | /// 13 | public LargePeekImageAndText06() 14 | { 15 | InitializeComponent(); 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.Theme.Newsroom/StandardViews/LargePeekImageCollection01.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows.Controls; 2 | 3 | namespace CODE.Framework.Wpf.Theme.Newsroom.StandardViews 4 | { 5 | /// 6 | /// Interaction logic for LargePeekImageCollection01.xaml 7 | /// 8 | public partial class LargePeekImageCollection01 : Grid 9 | { 10 | /// 11 | /// Initializes a new instance of the class. 12 | /// 13 | public LargePeekImageCollection01() 14 | { 15 | InitializeComponent(); 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.Theme.Newsroom/StandardViews/LargePeekImageCollection02.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows.Controls; 2 | 3 | namespace CODE.Framework.Wpf.Theme.Newsroom.StandardViews 4 | { 5 | /// 6 | /// Interaction logic for LargePeekImageCollection02.xaml 7 | /// 8 | public partial class LargePeekImageCollection02 : Grid 9 | { 10 | /// 11 | /// Initializes a new instance of the class. 12 | /// 13 | public LargePeekImageCollection02() 14 | { 15 | InitializeComponent(); 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.Theme.Newsroom/StandardViews/LargePeekImageCollection03.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows.Controls; 2 | 3 | namespace CODE.Framework.Wpf.Theme.Newsroom.StandardViews 4 | { 5 | /// 6 | /// Interaction logic for LargePeekImageCollection03.xaml 7 | /// 8 | public partial class LargePeekImageCollection03 : Grid 9 | { 10 | /// 11 | /// Initializes a new instance of the class. 12 | /// 13 | public LargePeekImageCollection03() 14 | { 15 | InitializeComponent(); 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.Theme.Newsroom/StandardViews/LargePeekImageCollection04.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows.Controls; 2 | 3 | namespace CODE.Framework.Wpf.Theme.Newsroom.StandardViews 4 | { 5 | /// 6 | /// Interaction logic for LargePeekImageCollection04.xaml 7 | /// 8 | public partial class LargePeekImageCollection04 : Grid 9 | { 10 | /// 11 | /// Initializes a new instance of the class. 12 | /// 13 | public LargePeekImageCollection04() 14 | { 15 | InitializeComponent(); 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.Theme.Newsroom/StandardViews/LargePeekImageCollection05.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows.Controls; 2 | 3 | namespace CODE.Framework.Wpf.Theme.Newsroom.StandardViews 4 | { 5 | /// 6 | /// Interaction logic for LargePeekImageCollection05.xaml 7 | /// 8 | public partial class LargePeekImageCollection05 : Grid 9 | { 10 | /// 11 | /// Initializes a new instance of the class. 12 | /// 13 | public LargePeekImageCollection05() 14 | { 15 | InitializeComponent(); 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.Theme.Newsroom/StandardViews/LargePeekImageCollection06.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows.Controls; 2 | 3 | namespace CODE.Framework.Wpf.Theme.Newsroom.StandardViews 4 | { 5 | /// 6 | /// Interaction logic for LargePeekImageCollection06.xaml 7 | /// 8 | public partial class LargePeekImageCollection06 : Grid 9 | { 10 | /// 11 | /// Initializes a new instance of the class. 12 | /// 13 | public LargePeekImageCollection06() 14 | { 15 | InitializeComponent(); 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.Theme.Newsroom/StandardViews/LargeSmallImageAndText01.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows.Controls; 2 | 3 | namespace CODE.Framework.Wpf.Theme.Newsroom.StandardViews 4 | { 5 | /// 6 | /// Interaction logic for LargeSmallImageAndText01.xaml 7 | /// 8 | public partial class LargeSmallImageAndText01 : Grid 9 | { 10 | /// 11 | /// Initializes a new instance of the class. 12 | /// 13 | public LargeSmallImageAndText01() 14 | { 15 | InitializeComponent(); 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.Theme.Newsroom/StandardViews/LargeSmallImageAndText02.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows.Controls; 2 | 3 | namespace CODE.Framework.Wpf.Theme.Newsroom.StandardViews 4 | { 5 | /// 6 | /// Interaction logic for LargeSmallImageAndText02.xaml 7 | /// 8 | public partial class LargeSmallImageAndText02 : Grid 9 | { 10 | /// 11 | /// Initializes a new instance of the class. 12 | /// 13 | public LargeSmallImageAndText02() 14 | { 15 | InitializeComponent(); 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.Theme.Newsroom/StandardViews/LargeSmallImageAndText03.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows.Controls; 2 | 3 | namespace CODE.Framework.Wpf.Theme.Newsroom.StandardViews 4 | { 5 | /// 6 | /// Interaction logic for LargeSmallImageAndText03.xaml 7 | /// 8 | public partial class LargeSmallImageAndText03 : Grid 9 | { 10 | /// 11 | /// Initializes a new instance of the class. 12 | /// 13 | public LargeSmallImageAndText03() 14 | { 15 | InitializeComponent(); 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.Theme.Newsroom/StandardViews/LargeSmallImageAndText04.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows.Controls; 2 | 3 | namespace CODE.Framework.Wpf.Theme.Newsroom.StandardViews 4 | { 5 | /// 6 | /// Interaction logic for LargeSmallImageAndText04.xaml 7 | /// 8 | public partial class LargeSmallImageAndText04 : Grid 9 | { 10 | /// 11 | /// Initializes a new instance of the class. 12 | /// 13 | public LargeSmallImageAndText04() 14 | { 15 | InitializeComponent(); 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.Theme.Newsroom/StandardViews/LargeSmallImageAndText05.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows.Controls; 2 | 3 | namespace CODE.Framework.Wpf.Theme.Newsroom.StandardViews 4 | { 5 | /// 6 | /// Interaction logic for LargeSmallImageAndText05.xaml 7 | /// 8 | public partial class LargeSmallImageAndText05 : Grid 9 | { 10 | /// 11 | /// Initializes a new instance of the class. 12 | /// 13 | public LargeSmallImageAndText05() 14 | { 15 | InitializeComponent(); 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.Theme.Newsroom/StandardViews/LargeSmallImageAndText06.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows.Controls; 2 | 3 | namespace CODE.Framework.Wpf.Theme.Newsroom.StandardViews 4 | { 5 | /// 6 | /// Interaction logic for LargeSmallImageAndText06.xaml 7 | /// 8 | public partial class LargeSmallImageAndText06 : Grid 9 | { 10 | /// 11 | /// Initializes a new instance of the class. 12 | /// 13 | public LargeSmallImageAndText06() 14 | { 15 | InitializeComponent(); 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.Theme.Newsroom/StandardViews/LargeSmallImageAndText07.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows.Controls; 2 | 3 | namespace CODE.Framework.Wpf.Theme.Newsroom.StandardViews 4 | { 5 | /// 6 | /// Interaction logic for LargeSmallImageAndText07.xaml 7 | /// 8 | public partial class LargeSmallImageAndText07 : Grid 9 | { 10 | /// 11 | /// Initializes a new instance of the class. 12 | /// 13 | public LargeSmallImageAndText07() 14 | { 15 | InitializeComponent(); 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.Theme.Newsroom/StandardViews/LargeText01.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows.Controls; 2 | 3 | namespace CODE.Framework.Wpf.Theme.Newsroom.StandardViews 4 | { 5 | /// 6 | /// Interaction logic for LargeText01.xaml 7 | /// 8 | public partial class LargeText01 : Grid 9 | { 10 | /// 11 | /// Initializes a new instance of the class. 12 | /// 13 | public LargeText01() 14 | { 15 | InitializeComponent(); 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.Theme.Newsroom/StandardViews/LargeText02.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows.Controls; 2 | 3 | namespace CODE.Framework.Wpf.Theme.Newsroom.StandardViews 4 | { 5 | /// 6 | /// Interaction logic for LargeText02.xaml 7 | /// 8 | public partial class LargeText02 : Grid 9 | { 10 | /// 11 | /// Initializes a new instance of the class. 12 | /// 13 | public LargeText02() 14 | { 15 | InitializeComponent(); 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.Theme.Newsroom/StandardViews/LargeText03.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows.Controls; 2 | 3 | namespace CODE.Framework.Wpf.Theme.Newsroom.StandardViews 4 | { 5 | /// 6 | /// Interaction logic for LargeText03.xaml 7 | /// 8 | public partial class LargeText03 : Grid 9 | { 10 | /// 11 | /// Initializes a new instance of the class. 12 | /// 13 | public LargeText03() 14 | { 15 | InitializeComponent(); 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.Theme.Newsroom/StandardViews/LargeText04.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows.Controls; 2 | 3 | namespace CODE.Framework.Wpf.Theme.Newsroom.StandardViews 4 | { 5 | /// 6 | /// Interaction logic for LargeText04.xaml 7 | /// 8 | public partial class LargeText04 : Grid 9 | { 10 | /// 11 | /// Initializes a new instance of the class. 12 | /// 13 | public LargeText04() 14 | { 15 | InitializeComponent(); 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.Theme.Newsroom/StandardViews/LargeText05.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows.Controls; 2 | 3 | namespace CODE.Framework.Wpf.Theme.Newsroom.StandardViews 4 | { 5 | /// 6 | /// Interaction logic for LargeText05.xaml 7 | /// 8 | public partial class LargeText05 : Grid 9 | { 10 | /// 11 | /// Initializes a new instance of the class. 12 | /// 13 | public LargeText05() 14 | { 15 | InitializeComponent(); 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.Theme.Newsroom/StandardViews/LargeText06.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows.Controls; 2 | 3 | namespace CODE.Framework.Wpf.Theme.Newsroom.StandardViews 4 | { 5 | /// 6 | /// Interaction logic for LargeText06.xaml 7 | /// 8 | public partial class LargeText06 : Grid 9 | { 10 | /// 11 | /// Initializes a new instance of the class. 12 | /// 13 | public LargeText06() 14 | { 15 | InitializeComponent(); 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.Theme.Newsroom/StandardViews/LargeText07.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows.Controls; 2 | 3 | namespace CODE.Framework.Wpf.Theme.Newsroom.StandardViews 4 | { 5 | /// 6 | /// Interaction logic for LargeText07.xaml 7 | /// 8 | public partial class LargeText07 : Grid 9 | { 10 | /// 11 | /// Initializes a new instance of the class. 12 | /// 13 | public LargeText07() 14 | { 15 | InitializeComponent(); 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.Theme.Newsroom/StandardViews/LargeText08.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows.Controls; 2 | 3 | namespace CODE.Framework.Wpf.Theme.Newsroom.StandardViews 4 | { 5 | /// 6 | /// Interaction logic for LargeText08.xaml 7 | /// 8 | public partial class LargeText08 : Grid 9 | { 10 | /// 11 | /// Initializes a new instance of the class. 12 | /// 13 | public LargeText08() 14 | { 15 | InitializeComponent(); 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.Theme.Newsroom/StandardViews/LargeText09.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows.Controls; 2 | 3 | namespace CODE.Framework.Wpf.Theme.Newsroom.StandardViews 4 | { 5 | /// 6 | /// Interaction logic for LargeText09.xaml 7 | /// 8 | public partial class LargeText09 : Grid 9 | { 10 | /// 11 | /// Initializes a new instance of the class. 12 | /// 13 | public LargeText09() 14 | { 15 | InitializeComponent(); 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.Theme.Newsroom/StandardViews/LargeText10.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows.Controls; 2 | 3 | namespace CODE.Framework.Wpf.Theme.Newsroom.StandardViews 4 | { 5 | /// 6 | /// Interaction logic for LargeText10.xaml 7 | /// 8 | public partial class LargeText10 : Grid 9 | { 10 | /// 11 | /// Initializes a new instance of the class. 12 | /// 13 | public LargeText10() 14 | { 15 | InitializeComponent(); 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.Theme.Newsroom/StandardViews/LargeText11.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows.Controls; 2 | 3 | namespace CODE.Framework.Wpf.Theme.Newsroom.StandardViews 4 | { 5 | /// 6 | /// Interaction logic for LargeText11.xaml 7 | /// 8 | public partial class LargeText11 : Grid 9 | { 10 | /// 11 | /// Initializes a new instance of the class. 12 | /// 13 | public LargeText11() 14 | { 15 | InitializeComponent(); 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.Theme.Newsroom/StandardViews/Notifications.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows.Controls; 2 | 3 | namespace CODE.Framework.Wpf.Theme.Newsroom.StandardViews 4 | { 5 | /// 6 | /// Interaction logic for Notifications.xaml 7 | /// 8 | public partial class Notifications : Grid 9 | { 10 | /// 11 | /// Initializes a new instance of the class. 12 | /// 13 | public Notifications() 14 | { 15 | InitializeComponent(); 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.Theme.Newsroom/StandardViews/PeekImageAndText01.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows.Controls; 2 | 3 | namespace CODE.Framework.Wpf.Theme.Newsroom.StandardViews 4 | { 5 | /// 6 | /// Interaction logic for PeekImageAndText01.xaml 7 | /// 8 | public partial class PeekImageAndText01 : Grid 9 | { 10 | /// 11 | /// Initializes a new instance of the class. 12 | /// 13 | public PeekImageAndText01() 14 | { 15 | InitializeComponent(); 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.Theme.Newsroom/StandardViews/PeekImageAndText02.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows.Controls; 2 | 3 | namespace CODE.Framework.Wpf.Theme.Newsroom.StandardViews 4 | { 5 | /// 6 | /// Interaction logic for PeekImageAndText02.xaml 7 | /// 8 | public partial class PeekImageAndText02 : Grid 9 | { 10 | /// 11 | /// Initializes a new instance of the class. 12 | /// 13 | public PeekImageAndText02() 14 | { 15 | InitializeComponent(); 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.Theme.Newsroom/StandardViews/PeekImageAndText03.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows.Controls; 2 | 3 | namespace CODE.Framework.Wpf.Theme.Newsroom.StandardViews 4 | { 5 | /// 6 | /// Interaction logic for PeekImageAndText03.xaml 7 | /// 8 | public partial class PeekImageAndText03 : Grid 9 | { 10 | /// 11 | /// Initializes a new instance of the class. 12 | /// 13 | public PeekImageAndText03() 14 | { 15 | InitializeComponent(); 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.Theme.Newsroom/StandardViews/PeekImageAndText04.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows.Controls; 2 | 3 | namespace CODE.Framework.Wpf.Theme.Newsroom.StandardViews 4 | { 5 | /// 6 | /// Interaction logic for PeekImageAndText04.xaml 7 | /// 8 | public partial class PeekImageAndText04 : Grid 9 | { 10 | /// 11 | /// Initializes a new instance of the class. 12 | /// 13 | public PeekImageAndText04() 14 | { 15 | InitializeComponent(); 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.Theme.Newsroom/StandardViews/PeekImageAndText05.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows.Controls; 2 | 3 | namespace CODE.Framework.Wpf.Theme.Newsroom.StandardViews 4 | { 5 | /// 6 | /// Interaction logic for PeekImageAndText05.xaml 7 | /// 8 | public partial class PeekImageAndText05 : Grid 9 | { 10 | /// 11 | /// Initializes a new instance of the class. 12 | /// 13 | public PeekImageAndText05() 14 | { 15 | InitializeComponent(); 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.Theme.Newsroom/StandardViews/Text01.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows.Controls; 2 | 3 | namespace CODE.Framework.Wpf.Theme.Newsroom.StandardViews 4 | { 5 | /// 6 | /// Interaction logic for Text01.xaml 7 | /// 8 | public partial class Text01 : Grid 9 | { 10 | /// 11 | /// Initializes a new instance of the class. 12 | /// 13 | public Text01() 14 | { 15 | InitializeComponent(); 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.Theme.Newsroom/StandardViews/Text02.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows.Controls; 2 | 3 | namespace CODE.Framework.Wpf.Theme.Newsroom.StandardViews 4 | { 5 | /// 6 | /// Interaction logic for Text02.xaml 7 | /// 8 | public partial class Text02 : Grid 9 | { 10 | /// 11 | /// Initializes a new instance of the class. 12 | /// 13 | public Text02() 14 | { 15 | InitializeComponent(); 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.Theme.Newsroom/StandardViews/Text03.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows.Controls; 2 | 3 | namespace CODE.Framework.Wpf.Theme.Newsroom.StandardViews 4 | { 5 | /// 6 | /// Interaction logic for Text03.xaml 7 | /// 8 | public partial class Text03 : Grid 9 | { 10 | /// 11 | /// Initializes a new instance of the class. 12 | /// 13 | public Text03() 14 | { 15 | InitializeComponent(); 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.Theme.Newsroom/StandardViews/Text04.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows.Controls; 2 | 3 | namespace CODE.Framework.Wpf.Theme.Newsroom.StandardViews 4 | { 5 | /// 6 | /// Interaction logic for Text04.xaml 7 | /// 8 | public partial class Text04 : Grid 9 | { 10 | /// 11 | /// Initializes a new instance of the class. 12 | /// 13 | public Text04() 14 | { 15 | InitializeComponent(); 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.Theme.Newsroom/StandardViews/Text05.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows.Controls; 2 | 3 | namespace CODE.Framework.Wpf.Theme.Newsroom.StandardViews 4 | { 5 | /// 6 | /// Interaction logic for Text05.xaml 7 | /// 8 | public partial class Text05 : Grid 9 | { 10 | /// 11 | /// Initializes a new instance of the class. 12 | /// 13 | public Text05() 14 | { 15 | InitializeComponent(); 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.Theme.Newsroom/StandardViews/TileNarrow.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows.Controls; 2 | 3 | namespace CODE.Framework.Wpf.Theme.Newsroom.StandardViews 4 | { 5 | /// 6 | /// Interaction logic for TileNarrow.xaml 7 | /// 8 | public partial class TileNarrow : Grid 9 | { 10 | /// 11 | /// Initializes a new instance of the class. 12 | /// 13 | public TileNarrow() 14 | { 15 | InitializeComponent(); 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.Theme.Newsroom/StandardViews/TileTiny.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows.Controls; 2 | 3 | namespace CODE.Framework.Wpf.Theme.Newsroom.StandardViews 4 | { 5 | /// 6 | /// Templates for tiny tiles 7 | /// 8 | public partial class TileTiny : Grid 9 | { 10 | /// 11 | /// Initializes a new instance of the class. 12 | /// 13 | public TileTiny() 14 | { 15 | InitializeComponent(); 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.Theme.Newsroom/StandardViews/TileWide.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows.Controls; 2 | 3 | namespace CODE.Framework.Wpf.Theme.Newsroom.StandardViews 4 | { 5 | /// 6 | /// Interaction logic for TileWide.xaml 7 | /// 8 | public partial class TileWide : Grid 9 | { 10 | /// 11 | /// Initializes a new instance of the class. 12 | /// 13 | public TileWide() 14 | { 15 | InitializeComponent(); 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.Theme.Newsroom/StandardViews/TileWideSquare.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows.Controls; 2 | 3 | namespace CODE.Framework.Wpf.Theme.Newsroom.StandardViews 4 | { 5 | /// 6 | /// Tile template for large squares 7 | /// 8 | public partial class TileWideSquare : Grid 9 | { 10 | /// 11 | /// Initializes a new instance of the class. 12 | /// 13 | public TileWideSquare() 14 | { 15 | InitializeComponent(); 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.Theme.Universe/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Reflection; 3 | using System.Runtime.InteropServices; 4 | 5 | // Information specific to this project/assembly 6 | [assembly: AssemblyTitle("CODE Framework - WPF Universe Theme")] 7 | [assembly: AssemblyDescription("CODE Framework WPF Universe Theme")] 8 | [assembly: AssemblyConfiguration("")] 9 | [assembly: AssemblyCulture("")] 10 | 11 | // Setting ComVisible to false makes the types in this assembly not visible 12 | // to COM components. If you need to access a type in this assembly from 13 | // COM, set the ComVisible attribute to true on that type. 14 | [assembly: ComVisible(false)] 15 | [assembly: CLSCompliant(true)] 16 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.Theme.Universe/StandardViews/Notification.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows.Controls; 2 | 3 | namespace CODE.Framework.Wpf.Theme.Universe.StandardViews 4 | { 5 | /// 6 | /// Interaction logic for Notification.xaml 7 | /// 8 | public partial class Notification : Grid 9 | { 10 | /// 11 | /// Constructor. 12 | /// 13 | public Notification() 14 | { 15 | InitializeComponent(); 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.Theme.Universe/Universe-Control-Label.xaml: -------------------------------------------------------------------------------- 1 |  3 | 4 | 9 | 10 | 7 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.Theme.Universe/Universe-Control-Tiles.xaml: -------------------------------------------------------------------------------- 1 |  4 | 5 | 9 | 10 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.Theme.Universe/Universe-Layout-StandardForm.xaml: -------------------------------------------------------------------------------- 1 |  3 | 4 | 14 | 15 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.Theme.Universe/Universe-Layout-Tabs.xaml: -------------------------------------------------------------------------------- 1 |  4 | 5 | 14 | 15 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.Theme.Universe/Universe-StandardTypes.xaml: -------------------------------------------------------------------------------- 1 |  4 | 5 | CODE.Framework.Wpf.Theme.Universe.Classes.UniverseStandardFeatures 6 | CODE.Framework.Wpf.Theme.Universe 7 | 8 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.Theme.Vapor/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Reflection; 3 | using System.Runtime.InteropServices; 4 | 5 | // Information specific to this project/assembly 6 | [assembly: AssemblyTitle("CODE Framework - WPF Vapor Theme")] 7 | [assembly: AssemblyDescription("CODE Framework WPF Vapor Theme")] 8 | [assembly: AssemblyConfiguration("")] 9 | [assembly: AssemblyCulture("")] 10 | 11 | // Setting ComVisible to false makes the types in this assembly not visible 12 | // to COM components. If you need to access a type in this assembly from 13 | // COM, set the ComVisible attribute to true on that type. 14 | [assembly: ComVisible(false)] 15 | [assembly: CLSCompliant(true)] 16 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.Theme.Vapor/Standard/LargeImage.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows.Controls; 2 | 3 | namespace CODE.Framework.Wpf.Theme.Vapor.Standard 4 | { 5 | /// 6 | /// Interaction logic for LargeImage.xaml 7 | /// 8 | public partial class LargeImage : Grid 9 | { 10 | /// 11 | /// Initializes a new instance of the class. 12 | /// 13 | public LargeImage() 14 | { 15 | InitializeComponent(); 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.Theme.Vapor/Standard/Notification.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows.Controls; 2 | 3 | namespace CODE.Framework.Wpf.Theme.Vapor.Standard 4 | { 5 | /// 6 | /// Interaction logic for Notification.xaml 7 | /// 8 | public partial class Notification : Grid 9 | { 10 | /// 11 | /// Initializes a new instance of the class. 12 | /// 13 | public Notification() 14 | { 15 | InitializeComponent(); 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.Theme.Vapor/Vapor-Control-FlowDocumentReader.xaml: -------------------------------------------------------------------------------- 1 |  3 | 4 | 10 | 11 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.Theme.Vapor/Vapor-Control-Label.xaml: -------------------------------------------------------------------------------- 1 |  3 | 4 | 9 | 10 | 7 | 8 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.Theme.Vapor/Vapor-Layout-OneToManyPanel.xaml: -------------------------------------------------------------------------------- 1 |  4 | 5 | 10 | 11 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.Theme.Vapor/Vapor-Layout-StandardForm.xaml: -------------------------------------------------------------------------------- 1 |  3 | 4 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.Theme.Vapor/Vapor-Layout-Tabs.xaml: -------------------------------------------------------------------------------- 1 |  4 | 5 | 14 | 15 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.Theme.Vapor/Vapor-StandardTypes.xaml: -------------------------------------------------------------------------------- 1 |  4 | 5 | CODE.Framework.Wpf.Theme.Vapor.Classes.VaporStandardFeatures 6 | CODE.Framework.Wpf.Theme.Vapor 7 | 8 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.Theme.Wildcat/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Reflection; 3 | using System.Runtime.InteropServices; 4 | 5 | // Information specific to this project/assembly 6 | [assembly: AssemblyTitle("CODE Framework - WPF Wildcat Theme")] 7 | [assembly: AssemblyDescription("CODE Framework WPF Wildcat Theme")] 8 | [assembly: AssemblyConfiguration("")] 9 | [assembly: AssemblyCulture("")] 10 | 11 | // Setting ComVisible to false makes the types in this assembly not visible 12 | // to COM components. If you need to access a type in this assembly from 13 | // COM, set the ComVisible attribute to true on that type. 14 | [assembly: ComVisible(false)] 15 | [assembly: CLSCompliant(true)] 16 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.Theme.Wildcat/StandardViews/Notification.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows.Controls; 2 | 3 | namespace CODE.Framework.Wpf.Theme.Wildcat.StandardViews 4 | { 5 | /// 6 | /// Interaction logic for Notification.xaml 7 | /// 8 | public partial class Notification : Grid 9 | { 10 | /// 11 | /// Initializes a new instance of the class. 12 | /// 13 | public Notification() 14 | { 15 | InitializeComponent(); 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.Theme.Wildcat/Wildcat-Control-Label.xaml: -------------------------------------------------------------------------------- 1 |  3 | 4 | 9 | 10 | 10 | 11 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.Theme.Wildcat/Wildcat-Layout-StandardForm.xaml: -------------------------------------------------------------------------------- 1 |  3 | 4 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.Theme.Wildcat/Wildcat-Layout-Tabs.xaml: -------------------------------------------------------------------------------- 1 |  4 | 5 | 14 | 15 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.Theme.Wildcat/Wildcat-Shell.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkusEggerInc/CODEFramework/f076c7e643c950482b07b39aa5887abe51a5d615/CODE.Framework.Wpf.Theme.Wildcat/Wildcat-Shell.zip -------------------------------------------------------------------------------- /CODE.Framework.Wpf.Theme.Wildcat/Wildcat-StandardTypes.xaml: -------------------------------------------------------------------------------- 1 |  4 | 5 | CODE.Framework.Wpf.Theme.Wildcat.Classes.WildcatStandardFeatures 6 | CODE.Framework.Wpf.Theme.Wildcat 7 | 8 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.Theme.Workplace/Classes/ClearTextButton.cs: -------------------------------------------------------------------------------- 1 | using System.ComponentModel; 2 | using System.Windows.Controls; 3 | using CODE.Framework.Wpf.Utilities; 4 | 5 | namespace CODE.Framework.Wpf.Theme.Workplace.Classes 6 | { 7 | /// 8 | /// For internal use only 9 | /// 10 | [Browsable(false)] 11 | public class ClearTextButton : Button 12 | { 13 | /// 14 | /// Constructor 15 | /// 16 | protected override void OnClick() 17 | { 18 | var text = ElementHelper.FindVisualTreeParent(this); 19 | if (text == null) return; 20 | text.Text = string.Empty; 21 | } 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.Theme.Workplace/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Reflection; 3 | using System.Runtime.InteropServices; 4 | 5 | // Information specific to this project/assembly 6 | [assembly: AssemblyTitle("CODE Framework - WPF Workplace Theme")] 7 | [assembly: AssemblyDescription("CODE Framework WPF Workplace Theme")] 8 | [assembly: AssemblyConfiguration("")] 9 | [assembly: AssemblyCulture("")] 10 | 11 | // Setting ComVisible to false makes the types in this assembly not visible 12 | // to COM components. If you need to access a type in this assembly from 13 | // COM, set the ComVisible attribute to true on that type. 14 | [assembly: ComVisible(false)] 15 | [assembly: CLSCompliant(true)] 16 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.Theme.Workplace/StandardViews/LargePeekImageAndText06.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows.Controls; 2 | 3 | namespace CODE.Framework.Wpf.Theme.Workplace.StandardViews 4 | { 5 | /// 6 | /// Interaction logic for LargePeekImageAndText06.xaml 7 | /// 8 | public partial class LargePeekImageAndText06 : Grid 9 | { 10 | /// 11 | /// Initializes a new instance of the class. 12 | /// 13 | public LargePeekImageAndText06() 14 | { 15 | InitializeComponent(); 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.Theme.Workplace/StandardViews/Notification.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows.Controls; 2 | 3 | namespace CODE.Framework.Wpf.Theme.Workplace.StandardViews 4 | { 5 | /// 6 | /// Interaction logic for Notification.xaml 7 | /// 8 | public partial class Notification : Grid 9 | { 10 | /// 11 | /// Initializes a new instance of the class. 12 | /// 13 | public Notification() 14 | { 15 | InitializeComponent(); 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.Theme.Workplace/Workplace-Control-DockHost.xaml: -------------------------------------------------------------------------------- 1 |  4 | 5 | 9 | 10 | 7 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.Theme.Workplace/Workplace-Layout-StandardForm.xaml: -------------------------------------------------------------------------------- 1 |  3 | 4 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.Theme.Workplace/Workplace-Layout-Tabs.xaml: -------------------------------------------------------------------------------- 1 |  4 | 5 | 14 | 15 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf.Theme.Workplace/Workplace-StandardTypes.xaml: -------------------------------------------------------------------------------- 1 |  4 | 5 | CODE.Framework.Wpf.Theme.Workplace.Classes.WorkplaceStandardFeatures 6 | CODE.Framework.Wpf.Theme.Workplace 7 | 8 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf/Controls/ClearTextButton.cs: -------------------------------------------------------------------------------- 1 | using System.ComponentModel; 2 | using System.Windows.Controls; 3 | using CODE.Framework.Wpf.Utilities; 4 | 5 | namespace CODE.Framework.Wpf.Controls 6 | { 7 | /// 8 | /// For internal use only 9 | /// 10 | [Browsable(false)] 11 | public class ClearTextButton : Button 12 | { 13 | /// 14 | /// Constructor 15 | /// 16 | protected override void OnClick() 17 | { 18 | var text = ElementHelper.FindVisualTreeParent(this); 19 | if (text == null) return; 20 | text.Text = string.Empty; 21 | } 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf/Interfaces/ISourceInformation.cs: -------------------------------------------------------------------------------- 1 | namespace CODE.Framework.Wpf.Interfaces 2 | { 3 | /// 4 | /// Interface to identify the source of some object or element 5 | /// 6 | public interface ISourceInformation 7 | { 8 | /// 9 | /// Location an element was originally loaded from 10 | /// 11 | /// The original document load location. 12 | string OriginalLoadLocation { get; set; } 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf/Interfaces/ITitle.cs: -------------------------------------------------------------------------------- 1 | namespace CODE.Framework.Wpf.Interfaces 2 | { 3 | /// 4 | /// Generic title interface 5 | /// 6 | public interface ITitle 7 | { 8 | /// 9 | /// Gets or sets the title. 10 | /// 11 | /// The title. 12 | string Title { get; set; } 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf/Interfaces/IUserInterfaceActivation.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace CODE.Framework.Wpf.Interfaces 4 | { 5 | /// 6 | /// This interface can be implemented by UI elements who desire to support activation notification 7 | /// 8 | public interface IUserInterfaceActivation 9 | { 10 | /// 11 | /// Occurs when the user interface got activated 12 | /// 13 | event EventHandler Activated; 14 | 15 | /// 16 | /// Raises the activated events. 17 | /// 18 | void RaiseActivated(); 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Reflection; 3 | using System.Runtime.InteropServices; 4 | 5 | // Information specific to this project/assembly 6 | [assembly: AssemblyTitle("CODE Framework - WPF")] 7 | [assembly: AssemblyDescription("CODE Framework WPF Core Components")] 8 | [assembly: AssemblyConfiguration("")] 9 | [assembly: AssemblyCulture("")] 10 | 11 | // Setting ComVisible to false makes the types in this assembly not visible 12 | // to COM components. If you need to access a type in this assembly from 13 | // COM, set the ComVisible attribute to true on that type. 14 | [assembly: ComVisible(false)] 15 | [assembly: CLSCompliant(true)] 16 | -------------------------------------------------------------------------------- /CODE.Framework.Wpf/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /Documentation/CODE.Framework.chm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkusEggerInc/CODEFramework/f076c7e643c950482b07b39aa5887abe51a5d615/Documentation/CODE.Framework.chm -------------------------------------------------------------------------------- /Help/CODE.Framework.chm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkusEggerInc/CODEFramework/f076c7e643c950482b07b39aa5887abe51a5d615/Help/CODE.Framework.chm --------------------------------------------------------------------------------