├── .gitattributes ├── .gitignore ├── .nuget ├── NuGet.Config ├── NuGet.exe └── NuGet.targets ├── Elysium Extra.sln ├── Elysium.png ├── LICENSE ├── README.md ├── Screenshots ├── Animation-1024x575.png ├── App-Bar-1024x575.png ├── Border-1024x575.png ├── Button-1024x575.png ├── Colour-1024x575.png ├── DataGrid-1024x575.png ├── Drag-Drop-1-1024x575.png ├── Drag-Drop-2-1024x575.png ├── ElasticPicker-1-1024x575.png ├── ElasticPicker-2-1024x575.png ├── Expander-1024x575.png ├── ExpanderMenu-1024x575.png ├── FlipControl-1024x575.png ├── Flyout1-1024x575.png ├── Flyout2-1024x575.png ├── Icon1-1024x575.png ├── Input-ButtonTextBox-1024x575.png ├── Input-DatePicker-1024x575.png ├── Input-Numeric-1024x575.png ├── Input-RichTextBox-1024x575.png ├── Input-TextBox-1024x575.png ├── ListBox-1-1024x575.png ├── ListBox-2-1024x575.png ├── MenuItem-1024x575.png ├── MessageDialog-1024x575.png ├── NotifyBox-1024x575.png ├── OverlayWindow-1024x575.png ├── Paging-1-1024x575.png ├── Paging-2-1024x575.png ├── Progress-1024x575.png ├── TreeView-1024x575.png ├── Validation-1024x575.png ├── Window-1-1024x575.png ├── Wizard-1-1024x575.png └── Wizard-3-1024x575.png ├── Source-branch ├── Framework.UI.TestHarness │ ├── App.config │ ├── App.xaml │ ├── App.xaml.cs │ ├── Assets │ │ ├── Background1.jpg │ │ ├── Background2.jpg │ │ ├── Icon.png │ │ └── IconColourSystem.png │ ├── Framework.UI.TestHarness.csproj │ ├── MainView.xaml │ ├── MainView.xaml.cs │ ├── Models │ │ ├── Fund.cs │ │ ├── FundCollection.cs │ │ ├── Person.cs │ │ ├── PersonCollection.cs │ │ ├── Settings.Designer.cs │ │ ├── Settings.settings │ │ └── WizardViewModel.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── ViewModels │ │ ├── ColoursViewModel.cs │ │ ├── CommandsViewModel.cs │ │ ├── DataGridViewModel.cs │ │ ├── DragAndDropViewModel.cs │ │ ├── ElasticPickerViewModel.cs │ │ ├── ExpanderMenuViewModel.cs │ │ ├── IconViewModel.cs │ │ ├── InputViewModel.cs │ │ ├── ListBoxViewModel.cs │ │ ├── MenuItemViewModel.cs │ │ ├── StyleViewModel.cs │ │ ├── ValidationViewModel.cs │ │ └── WizardViewModel.cs │ ├── Views │ │ ├── AnimationView.xaml │ │ ├── AnimationView.xaml.cs │ │ ├── AppBarView.xaml │ │ ├── AppBarView.xaml.cs │ │ ├── BackgroundView.xaml │ │ ├── BackgroundView.xaml.cs │ │ ├── BordersView.xaml │ │ ├── BordersView.xaml.cs │ │ ├── ButtonsView.xaml │ │ ├── ButtonsView.xaml.cs │ │ ├── ColoursView.xaml │ │ ├── ColoursView.xaml.cs │ │ ├── CommandsView.xaml │ │ ├── CommandsView.xaml.cs │ │ ├── ConvertersView.xaml │ │ ├── ConvertersView.xaml.cs │ │ ├── DataGridView.xaml │ │ ├── DataGridView.xaml.cs │ │ ├── DragAndDropView.xaml │ │ ├── DragAndDropView.xaml.cs │ │ ├── ElasticPickerView.xaml │ │ ├── ElasticPickerView.xaml.cs │ │ ├── ElysiumView.xaml │ │ ├── ElysiumView.xaml.cs │ │ ├── ExpanderMenuView.xaml │ │ ├── ExpanderMenuView.xaml.cs │ │ ├── ExpandersView.xaml │ │ ├── ExpandersView.xaml.cs │ │ ├── FlipControlView.xaml │ │ ├── FlipControlView.xaml.cs │ │ ├── FlyoutView.xaml │ │ ├── FlyoutView.xaml.cs │ │ ├── FocusVisualStyleView.xaml │ │ ├── FocusVisualStyleView.xaml.cs │ │ ├── IconsView.xaml │ │ ├── IconsView.xaml.cs │ │ ├── InputView.xaml │ │ ├── InputView.xaml.cs │ │ ├── ListBoxView.xaml │ │ ├── ListBoxView.xaml.cs │ │ ├── ListViewView.xaml │ │ ├── ListViewView.xaml.cs │ │ ├── MenuItemView.xaml │ │ ├── MenuItemView.xaml.cs │ │ ├── MessageDialogView.xaml │ │ ├── MessageDialogView.xaml.cs │ │ ├── NotifyBoxView.xaml │ │ ├── NotifyBoxView.xaml.cs │ │ ├── OverlayWindowExample.xaml │ │ ├── OverlayWindowExample.xaml.cs │ │ ├── OverlayWindowView.xaml │ │ ├── OverlayWindowView.xaml.cs │ │ ├── PagingView.xaml │ │ ├── PagingView.xaml.cs │ │ ├── PanelsView.xaml │ │ ├── PanelsView.xaml.cs │ │ ├── PopupsView.xaml │ │ ├── PopupsView.xaml.cs │ │ ├── PracticesView.xaml │ │ ├── PracticesView.xaml.cs │ │ ├── ProgressView.xaml │ │ ├── ProgressView.xaml.cs │ │ ├── ScrollView.xaml │ │ ├── ScrollView.xaml.cs │ │ ├── SeperatorsView.xaml │ │ ├── SeperatorsView.xaml.cs │ │ ├── TextView.xaml │ │ ├── TextView.xaml.cs │ │ ├── ThemeView.xaml │ │ ├── ThemeView.xaml.cs │ │ ├── ThicknessView.xaml │ │ ├── ThicknessView.xaml.cs │ │ ├── ToolTipsView.xaml │ │ ├── ToolTipsView.xaml.cs │ │ ├── TreeViewView.xaml │ │ ├── TreeViewView.xaml.cs │ │ ├── ValidationView.xaml │ │ ├── ValidationView.xaml.cs │ │ ├── WebBrowserView.xaml │ │ ├── WebBrowserView.xaml.cs │ │ ├── WindowView.xaml │ │ ├── WindowView.xaml.cs │ │ ├── WizardView.xaml │ │ └── WizardView.xaml.cs │ ├── Windows │ │ ├── ElysiumView.xaml │ │ ├── ElysiumView.xaml.cs │ │ ├── StylesView.xaml │ │ └── StylesView.xaml.cs │ └── packages.config ├── Framework.UI │ ├── Assets │ │ └── Divider.png │ ├── BindingBaseExtensions.cs │ ├── Commands │ │ ├── CommandBinding.cs │ │ ├── CommandBindingCollection.cs │ │ ├── EventCommand.CommandBindings.cs │ │ ├── EventCommand.cs │ │ ├── Internal │ │ │ ├── ActionExecutionStrategy.cs │ │ │ ├── CommandBehaviorBinding.cs │ │ │ ├── CommandExecutionStrategy.cs │ │ │ ├── EventHandlerGenerator.cs │ │ │ └── IExecutionStrategy.cs │ │ └── KeyCommand.cs │ ├── Controls │ │ ├── Accordion │ │ │ ├── Accordion.cs │ │ │ ├── AccordionAction.cs │ │ │ ├── AccordionItem.cs │ │ │ ├── AccordionResources.Designer.cs │ │ │ ├── AccordionResources.resx │ │ │ ├── AccordionSelectionMode.cs │ │ │ ├── Automation │ │ │ │ └── Peers │ │ │ │ │ ├── AccordionAutomationPeer.cs │ │ │ │ │ ├── AccordionItemAutomationPeer.cs │ │ │ │ │ └── AccordionItemWrapperAutomationPeer.cs │ │ │ ├── IUpdateVisualState.cs │ │ │ ├── InteractionHelper.cs │ │ │ ├── ItemsControlHelper.cs │ │ │ ├── Primitives │ │ │ │ ├── AccordionButton.cs │ │ │ │ └── ExpandableContentControl.cs │ │ │ ├── SelectionSequence.cs │ │ │ └── VisualStates.cs │ │ ├── AdornedControl │ │ │ ├── AdornedControl.cs │ │ │ ├── AdornerPlacement.cs │ │ │ └── FrameworkElementAdorner.cs │ │ ├── Borders │ │ │ ├── ClippingBorder.cs │ │ │ ├── DropShadowBorder.cs │ │ │ ├── GlassBorder.cs │ │ │ ├── InnerGlowBorder.cs │ │ │ ├── OuterGlowBorder.cs │ │ │ ├── PerspectiveShadowBorder.cs │ │ │ └── RadialShadowBorder.cs │ │ ├── CalloutContentControl │ │ │ ├── ArrowAlignment.cs │ │ │ ├── ArrowPlacement.cs │ │ │ ├── CalloutContentControl.cs │ │ │ ├── CalloutContentControlToThicknessConverter.cs │ │ │ └── CalloutShape.cs │ │ ├── ComboDataGrid.cs │ │ ├── DataGrid │ │ │ ├── Columns │ │ │ │ ├── DataGridCheckBoxColumn.cs │ │ │ │ ├── DataGridColumnToolTipHelper.cs │ │ │ │ ├── DataGridComboBoxColumn.cs │ │ │ │ ├── DataGridDateColumn.cs │ │ │ │ ├── DataGridDateTimeColumn.cs │ │ │ │ ├── DataGridDecimalUpDownColumn.cs │ │ │ │ ├── DataGridDoubleUpDownColumn.cs │ │ │ │ ├── DataGridHyperlinkColumn.cs │ │ │ │ ├── DataGridIntegerUpDownColumn.cs │ │ │ │ ├── DataGridLongUpDownColumn.cs │ │ │ │ ├── DataGridMultiLineTextColumn.cs │ │ │ │ ├── DataGridNumberColumn.cs │ │ │ │ ├── DataGridProgressBarColumn.cs │ │ │ │ ├── DataGridTemplateColumn.cs │ │ │ │ └── DataGridTextColumn.cs │ │ │ ├── DataGridAttached.cs │ │ │ ├── DataGridColumnAttached.cs │ │ │ ├── DataGridColumnInfo.cs │ │ │ ├── DataGridRowAttached.cs │ │ │ └── GroupSummary │ │ │ │ ├── DataGridGroupSummary.cs │ │ │ │ └── DataGridGroupSummaryCollection.cs │ │ ├── ElasticPicker │ │ │ ├── ElasticPickerGrid.cs │ │ │ ├── ListBox │ │ │ │ ├── ElasticListBox.cs │ │ │ │ └── ElasticListBoxItem.cs │ │ │ └── Picker │ │ │ │ ├── ElasticGroup.cs │ │ │ │ ├── ElasticGroupCollection.cs │ │ │ │ ├── ElasticGroupNumberFormat.cs │ │ │ │ ├── ElasticGroupSortMode.cs │ │ │ │ ├── ElasticPicker.cs │ │ │ │ ├── ElasticView.cs │ │ │ │ └── Internal │ │ │ │ ├── Entity.cs │ │ │ │ ├── EntityCollection.cs │ │ │ │ ├── EntityGroup.cs │ │ │ │ ├── EntityGroupCollection.cs │ │ │ │ └── EntityView.cs │ │ ├── ElementProxy.cs │ │ ├── ExpanderMenu │ │ │ ├── ExpanderMenu.cs │ │ │ └── ExpanderMenuItem.cs │ │ ├── FlipControl.cs │ │ ├── GroupStyleCollection.cs │ │ ├── Icon │ │ │ ├── Icon.cs │ │ │ └── IconSize.cs │ │ ├── Interactivity │ │ │ ├── AnimatingItemsControlBehavior.cs │ │ │ ├── Behaviors.cs │ │ │ ├── FadeBehavior.cs │ │ │ ├── Interactivities.cs │ │ │ ├── RotateBehavior.cs │ │ │ ├── SlideBehavior.cs │ │ │ └── Triggers.cs │ │ ├── ItemsControlAttached.cs │ │ ├── ListBoxAttached.cs │ │ ├── ListBoxItemAttached.cs │ │ ├── LoadingContent.cs │ │ ├── MenuItemAttached.cs │ │ ├── MessageDialog │ │ │ ├── MessageDialog.cs │ │ │ ├── MessageDialogButton.cs │ │ │ └── MessageDialogType.cs │ │ ├── Notes │ │ │ ├── ListIndexConverter.cs │ │ │ ├── NotesListBox.cs │ │ │ ├── NotesListBoxItem.cs │ │ │ └── StackCanvas.cs │ │ ├── NumericUpDown │ │ │ ├── AllowedSpecialValuesEnum.cs │ │ │ ├── ByteUpDown.cs │ │ │ ├── CommonNumericUpDown.cs │ │ │ ├── DecimalUpDown.cs │ │ │ ├── DoubleUpDown.cs │ │ │ ├── IValidateInput.cs │ │ │ ├── InputBase.cs │ │ │ ├── InputValidationErrorEventArgs.cs │ │ │ ├── IntegerUpDown.cs │ │ │ ├── LongUpDown.cs │ │ │ ├── NumericUpDown.cs │ │ │ ├── SByteUpDown.cs │ │ │ ├── ShortUpDown.cs │ │ │ ├── SingleUpDown.cs │ │ │ ├── UIntegerUpDown.cs │ │ │ ├── ULongUpDown.cs │ │ │ ├── UShortUpDown.cs │ │ │ └── UpDownBase.cs │ │ ├── PagingItemsControl │ │ │ ├── NumberedPage.cs │ │ │ ├── PagingDecorator.cs │ │ │ └── SmartColumnsPanel.cs │ │ ├── Panels │ │ │ ├── AnimatedWrapPanel.cs │ │ │ └── VirtualizingWrapPanel.cs │ │ ├── RichTextBox │ │ │ └── RichTextBoxExtended.cs │ │ ├── Screen.cs │ │ ├── Spinner │ │ │ ├── ButtonSpinner.cs │ │ │ ├── SpinDirection.cs │ │ │ ├── SpinEventArgs.cs │ │ │ ├── Spinner.cs │ │ │ └── ValidSpinDirections.cs │ │ ├── TextBox │ │ │ ├── ButtonTextBox.cs │ │ │ ├── QueryMoveFocusEventArgs.cs │ │ │ ├── QueryMoveFocusEventHandler.cs │ │ │ └── TextBoxExtended.cs │ │ ├── TreeView │ │ │ ├── TreeViewAttached.cs │ │ │ └── TreeViewItemAttached.cs │ │ ├── UIElementAttached.cs │ │ ├── WebBrowserAttached.cs │ │ ├── Window │ │ │ ├── NotifyBox.cs │ │ │ ├── OverlayWindow.cs │ │ │ ├── Window.cs │ │ │ └── WindowBase.cs │ │ ├── Wizard │ │ │ ├── Internal │ │ │ │ ├── WizardItemModel.cs │ │ │ │ └── WizardItemModelCollection.cs │ │ │ ├── Wizard.cs │ │ │ ├── WizardAnimation.cs │ │ │ ├── WizardCollectionAnimation.cs │ │ │ ├── WizardItem.cs │ │ │ ├── WizardItemCollection.cs │ │ │ ├── WizardMode.cs │ │ │ └── WizardXaml.cs │ │ └── XmlSerializer.cs │ ├── Converters │ │ ├── BoolToVisibilityConverter.cs │ │ ├── InverseBoolConverter.cs │ │ ├── InverseBoolToVisibilityConverter.cs │ │ ├── InverseNullToVisibilityConverter.cs │ │ ├── LessThanEqualToBoolConverter.cs │ │ ├── LessThanEqualToVisibilityConverter.cs │ │ ├── LessThanToBoolConverter.cs │ │ ├── MoreThanEqualToBoolConverter.cs │ │ ├── MoreThanEqualToVisibilityConverter.cs │ │ ├── MoreThanToBoolConverter.cs │ │ ├── NullOrEmptyToVisibilityConverter.cs │ │ ├── NullToBoolConverter.cs │ │ ├── NullToVisibilityConverter.cs │ │ ├── StringFormatConverter.cs │ │ └── VisibilityToBoolConverter.cs │ ├── DependencyObjectExtensions.cs │ ├── DispatcherExtensions.cs │ ├── DragAndDrop │ │ ├── DragCommand.cs │ │ ├── DragManager.cs │ │ └── DragViewer.cs │ ├── Framework.UI.csproj │ ├── Input │ │ ├── AsyncCommand.cs │ │ ├── AsyncCommandT.cs │ │ ├── AsyncDelegateCommand.cs │ │ ├── AsyncDelegateCommandT.cs │ │ ├── Command.cs │ │ ├── CommandBase.cs │ │ ├── CommandT.cs │ │ ├── DelegateCommand.cs │ │ └── DelegateCommandT.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Themes │ │ ├── Elysium │ │ │ ├── CommandButton.xaml │ │ │ ├── DropDownCommandButton.xaml │ │ │ ├── ToggleCommandButton.xaml │ │ │ └── ToggleSwitch.xaml │ │ ├── ElysiumExtra │ │ │ ├── Accordion.xaml │ │ │ ├── ButtonTextBox.xaml │ │ │ ├── CalloutContentControl.xaml │ │ │ ├── ComboDataGrid.xaml │ │ │ ├── ElasticPicker.xaml │ │ │ ├── ExpanderMenu.xaml │ │ │ ├── FlipControl.xaml │ │ │ ├── GeometryIcon.xaml │ │ │ ├── Icon.xaml │ │ │ ├── LoadingContent.xaml │ │ │ ├── MessageDialog.xaml │ │ │ ├── NotesListBox.xaml │ │ │ ├── NumericUpDown.xaml │ │ │ ├── PagingItemsControl.xaml │ │ │ ├── RichTextBoxExtended.xaml │ │ │ ├── TextBoxExtended.xaml │ │ │ ├── Watermark.xaml │ │ │ └── Wizard.xaml │ │ ├── Generic.xaml │ │ └── WPF │ │ │ ├── Base │ │ │ ├── Border.xaml │ │ │ ├── Brush.xaml │ │ │ ├── Color.xaml │ │ │ ├── Converter.xaml │ │ │ ├── DrawingImage.xaml │ │ │ ├── FocusVisualStyle.xaml │ │ │ ├── Geometry.xaml │ │ │ ├── GroupStyle.xaml │ │ │ ├── Icon.xaml │ │ │ └── Validation.xaml │ │ │ └── Controls │ │ │ ├── Button.xaml │ │ │ ├── Calendar.xaml │ │ │ ├── CheckBox.xaml │ │ │ ├── ComboBox.xaml │ │ │ ├── ComboBoxItem.xaml │ │ │ ├── ContentControl.xaml │ │ │ ├── DataGrid.xaml │ │ │ ├── DatePicker.xaml │ │ │ ├── Expander.xaml │ │ │ ├── GridSplitter.xaml │ │ │ ├── HeaderedContentControl.xaml │ │ │ ├── Hyperlink.xaml │ │ │ ├── ItemsControl.xaml │ │ │ ├── Label.xaml │ │ │ ├── ListBox.xaml │ │ │ ├── ListBoxItem.xaml │ │ │ ├── MenuItem.xaml │ │ │ ├── RadioButton.xaml │ │ │ ├── RepeatButton.xaml │ │ │ ├── ScrollBar.xaml │ │ │ ├── ScrollViewer.xaml │ │ │ ├── Separator.xaml │ │ │ ├── Slider.xaml │ │ │ ├── TabControl.xaml │ │ │ ├── TabItem.xaml │ │ │ ├── TextBlock.xaml │ │ │ ├── TextBox.xaml │ │ │ ├── ToggleButton.xaml │ │ │ ├── TreeView.xaml │ │ │ ├── TreeViewItem.xaml │ │ │ └── Window.xaml │ ├── VisualTreeHelpers.cs │ ├── WeakEvent.cs │ ├── XamlHelper.cs │ └── packages.config └── Framework │ ├── CharacterSet.cs │ ├── Collections │ ├── CollectionExtensions.cs │ ├── EnumerableExtensions.cs │ └── TraverseKind.cs │ ├── ComponentModel │ ├── Cloneable │ │ └── ICloneableT.cs │ ├── Collections │ │ ├── ItemChangedEventArgs.cs │ │ ├── KeyedObservableCollection.cs │ │ ├── KeyedObservableItemsCollection.cs │ │ └── ObservableItemsCollection.cs │ ├── Disposable.cs │ ├── EditableObject.cs │ ├── NotifyDataErrorInfo.cs │ ├── NotifyPropertyChanges.cs │ ├── RevertibleChangeTracking.cs │ └── Rules │ │ ├── DelegateRule.cs │ │ ├── Rule.cs │ │ └── RuleCollection.cs │ ├── Framework.csproj │ ├── Guard │ ├── Guard.AreEqual.cs │ ├── Guard.AreNotEqual.cs │ ├── Guard.ContainsCollection.cs │ ├── Guard.ContainsString.cs │ ├── Guard.DoesNotContainCollection.cs │ ├── Guard.DoesNotContainString.cs │ ├── Guard.EndsWith.cs │ ├── Guard.IsInstanceOfType.cs │ ├── Guard.IsLessThan.cs │ ├── Guard.IsLessThanOrEqualTo.cs │ ├── Guard.IsMatch.cs │ ├── Guard.IsMoreThan.cs │ ├── Guard.IsMoreThanOrEqualTo.cs │ ├── Guard.IsNotInstanceOfType.cs │ ├── Guard.IsNotNull.cs │ ├── Guard.IsNotNullOrEmptyCollection.cs │ ├── Guard.IsNotNullOrEmptyString.cs │ ├── Guard.IsNotNullOrWhiteSpace.cs │ ├── Guard.IsTrue.cs │ ├── Guard.StartsWith.cs │ ├── Guard.cs │ └── Parameter.cs │ ├── IO │ └── Streams.cs │ ├── Properties │ └── AssemblyInfo.cs │ ├── RandomExtensions.cs │ └── packages.config └── Source ├── Framework.UI.TestHarness ├── App.config ├── App.xaml ├── App.xaml.cs ├── Assets │ ├── Background1.jpg │ ├── Background2.jpg │ ├── Icon.png │ └── IconColourSystem.png ├── Framework.UI.TestHarness.csproj ├── MainView.xaml ├── MainView.xaml.cs ├── Models │ ├── Fund.cs │ ├── FundCollection.cs │ ├── Person.cs │ ├── PersonCollection.cs │ ├── Settings.Designer.cs │ ├── Settings.settings │ └── WizardViewModel.cs ├── Properties │ └── AssemblyInfo.cs ├── ViewModels │ ├── ColoursViewModel.cs │ ├── CommandsViewModel.cs │ ├── DataGridViewModel.cs │ ├── DragAndDropViewModel.cs │ ├── ElasticPickerViewModel.cs │ ├── ExpanderMenuViewModel.cs │ ├── IconViewModel.cs │ ├── InputViewModel.cs │ ├── ListBoxViewModel.cs │ ├── MenuItemViewModel.cs │ ├── StyleViewModel.cs │ ├── ValidationViewModel.cs │ └── WizardViewModel.cs ├── Views │ ├── AnimationView.xaml │ ├── AnimationView.xaml.cs │ ├── AppBarView.xaml │ ├── AppBarView.xaml.cs │ ├── BackgroundView.xaml │ ├── BackgroundView.xaml.cs │ ├── BordersView.xaml │ ├── BordersView.xaml.cs │ ├── ButtonsView.xaml │ ├── ButtonsView.xaml.cs │ ├── ColoursView.xaml │ ├── ColoursView.xaml.cs │ ├── CommandsView.xaml │ ├── CommandsView.xaml.cs │ ├── ConvertersView.xaml │ ├── ConvertersView.xaml.cs │ ├── DataGridView.xaml │ ├── DataGridView.xaml.cs │ ├── DragAndDropView.xaml │ ├── DragAndDropView.xaml.cs │ ├── ElasticPickerView.xaml │ ├── ElasticPickerView.xaml.cs │ ├── ElysiumView.xaml │ ├── ElysiumView.xaml.cs │ ├── ExpanderMenuView.xaml │ ├── ExpanderMenuView.xaml.cs │ ├── ExpandersView.xaml │ ├── ExpandersView.xaml.cs │ ├── FlipControlView.xaml │ ├── FlipControlView.xaml.cs │ ├── FlyoutView.xaml │ ├── FlyoutView.xaml.cs │ ├── FocusVisualStyleView.xaml │ ├── FocusVisualStyleView.xaml.cs │ ├── IconsView.xaml │ ├── IconsView.xaml.cs │ ├── InputView.xaml │ ├── InputView.xaml.cs │ ├── ListBoxView.xaml │ ├── ListBoxView.xaml.cs │ ├── ListViewView.xaml │ ├── ListViewView.xaml.cs │ ├── MenuItemView.xaml │ ├── MenuItemView.xaml.cs │ ├── MessageDialogView.xaml │ ├── MessageDialogView.xaml.cs │ ├── NotifyBoxView.xaml │ ├── NotifyBoxView.xaml.cs │ ├── OverlayWindowExample.xaml │ ├── OverlayWindowExample.xaml.cs │ ├── OverlayWindowView.xaml │ ├── OverlayWindowView.xaml.cs │ ├── PagingView.xaml │ ├── PagingView.xaml.cs │ ├── PanelsView.xaml │ ├── PanelsView.xaml.cs │ ├── PopupsView.xaml │ ├── PopupsView.xaml.cs │ ├── PracticesView.xaml │ ├── PracticesView.xaml.cs │ ├── ProgressView.xaml │ ├── ProgressView.xaml.cs │ ├── ScrollView.xaml │ ├── ScrollView.xaml.cs │ ├── SeperatorsView.xaml │ ├── SeperatorsView.xaml.cs │ ├── TextView.xaml │ ├── TextView.xaml.cs │ ├── ThemeView.xaml │ ├── ThemeView.xaml.cs │ ├── ThicknessView.xaml │ ├── ThicknessView.xaml.cs │ ├── ToolTipsView.xaml │ ├── ToolTipsView.xaml.cs │ ├── TreeViewView.xaml │ ├── TreeViewView.xaml.cs │ ├── ValidationView.xaml │ ├── ValidationView.xaml.cs │ ├── WebBrowserView.xaml │ ├── WebBrowserView.xaml.cs │ ├── WindowView.xaml │ ├── WindowView.xaml.cs │ ├── WizardView.xaml │ └── WizardView.xaml.cs ├── Windows │ ├── ElysiumView.xaml │ ├── ElysiumView.xaml.cs │ ├── StylesView.xaml │ └── StylesView.xaml.cs └── packages.config ├── Framework.UI ├── Assets │ └── Divider.png ├── BindingBaseExtensions.cs ├── Commands │ ├── CommandBinding.cs │ ├── CommandBindingCollection.cs │ ├── EventCommand.CommandBindings.cs │ ├── EventCommand.cs │ ├── Internal │ │ ├── ActionExecutionStrategy.cs │ │ ├── CommandBehaviorBinding.cs │ │ ├── CommandExecutionStrategy.cs │ │ ├── EventHandlerGenerator.cs │ │ └── IExecutionStrategy.cs │ └── KeyCommand.cs ├── Controls │ ├── Accordion │ │ ├── Accordion.cs │ │ ├── AccordionAction.cs │ │ ├── AccordionItem.cs │ │ ├── AccordionResources.Designer.cs │ │ ├── AccordionResources.resx │ │ ├── AccordionSelectionMode.cs │ │ ├── Automation │ │ │ └── Peers │ │ │ │ ├── AccordionAutomationPeer.cs │ │ │ │ ├── AccordionItemAutomationPeer.cs │ │ │ │ └── AccordionItemWrapperAutomationPeer.cs │ │ ├── IUpdateVisualState.cs │ │ ├── InteractionHelper.cs │ │ ├── ItemsControlHelper.cs │ │ ├── Primitives │ │ │ ├── AccordionButton.cs │ │ │ └── ExpandableContentControl.cs │ │ ├── SelectionSequence.cs │ │ └── VisualStates.cs │ ├── AdornedControl │ │ ├── AdornedControl.cs │ │ ├── AdornerPlacement.cs │ │ └── FrameworkElementAdorner.cs │ ├── BorderFix.cs │ ├── Borders │ │ ├── ClippingBorder.cs │ │ ├── DropShadowBorder.cs │ │ ├── GlassBorder.cs │ │ ├── InnerGlowBorder.cs │ │ ├── OuterGlowBorder.cs │ │ ├── PerspectiveShadowBorder.cs │ │ └── RadialShadowBorder.cs │ ├── CalloutContentControl │ │ ├── ArrowAlignment.cs │ │ ├── ArrowPlacement.cs │ │ ├── CalloutContentControl.cs │ │ ├── CalloutContentControlToThicknessConverter.cs │ │ └── CalloutShape.cs │ ├── ComboBoxAttached.cs │ ├── ComboDataGrid.cs │ ├── DataGrid │ │ ├── Columns │ │ │ ├── DataGridCheckBoxColumn.cs │ │ │ ├── DataGridColumnToolTipHelper.cs │ │ │ ├── DataGridComboBoxColumn.cs │ │ │ ├── DataGridDateColumn.cs │ │ │ ├── DataGridDateTimeColumn.cs │ │ │ ├── DataGridDecimalUpDownColumn.cs │ │ │ ├── DataGridDoubleUpDownColumn.cs │ │ │ ├── DataGridHyperlinkColumn.cs │ │ │ ├── DataGridIntegerUpDownColumn.cs │ │ │ ├── DataGridLongUpDownColumn.cs │ │ │ ├── DataGridMultiLineTextColumn.cs │ │ │ ├── DataGridNumberColumn.cs │ │ │ ├── DataGridProgressBarColumn.cs │ │ │ ├── DataGridTemplateColumn.cs │ │ │ └── DataGridTextColumn.cs │ │ ├── DataGridAttached.cs │ │ ├── DataGridColumnAttached.cs │ │ ├── DataGridColumnInfo.cs │ │ ├── DataGridRowAttached.cs │ │ └── GroupSummary │ │ │ ├── DataGridGroupSummary.cs │ │ │ └── DataGridGroupSummaryCollection.cs │ ├── DatePickerAttached.cs │ ├── ElasticPicker │ │ ├── ElasticPickerGrid.cs │ │ ├── ListBox │ │ │ ├── ElasticListBox.cs │ │ │ └── ElasticListBoxItem.cs │ │ └── Picker │ │ │ ├── ElasticGroup.cs │ │ │ ├── ElasticGroupCollection.cs │ │ │ ├── ElasticGroupNumberFormat.cs │ │ │ ├── ElasticGroupSortMode.cs │ │ │ ├── ElasticPicker.cs │ │ │ ├── ElasticView.cs │ │ │ └── Internal │ │ │ ├── Entity.cs │ │ │ ├── EntityCollection.cs │ │ │ ├── EntityGroup.cs │ │ │ ├── EntityGroupCollection.cs │ │ │ └── EntityView.cs │ ├── ElementProxy.cs │ ├── ExpanderMenu │ │ ├── ExpanderMenu.cs │ │ └── ExpanderMenuItem.cs │ ├── FlipControl.cs │ ├── GroupStyleCollection.cs │ ├── Icon │ │ ├── Icon.cs │ │ └── IconSize.cs │ ├── Interactivity │ │ ├── AnimatingItemsControlBehavior.cs │ │ ├── Behaviors.cs │ │ ├── FadeBehavior.cs │ │ ├── Interactivities.cs │ │ ├── RotateBehavior.cs │ │ ├── SlideBehavior.cs │ │ └── Triggers.cs │ ├── ItemsControlAttached.cs │ ├── ListBoxAttached.cs │ ├── ListBoxItemAttached.cs │ ├── LoadingContent.cs │ ├── MenuItemAttached.cs │ ├── MessageDialog │ │ ├── MessageDialog.cs │ │ ├── MessageDialogButton.cs │ │ └── MessageDialogType.cs │ ├── Notes │ │ ├── ListIndexConverter.cs │ │ ├── NotesListBox.cs │ │ ├── NotesListBoxItem.cs │ │ └── StackCanvas.cs │ ├── NumericUpDown │ │ ├── AllowedSpecialValuesEnum.cs │ │ ├── ByteUpDown.cs │ │ ├── CommonNumericUpDown.cs │ │ ├── DecimalUpDown.cs │ │ ├── DoubleUpDown.cs │ │ ├── IValidateInput.cs │ │ ├── InputBase.cs │ │ ├── InputValidationErrorEventArgs.cs │ │ ├── IntegerUpDown.cs │ │ ├── LongUpDown.cs │ │ ├── NumericUpDown.cs │ │ ├── SByteUpDown.cs │ │ ├── ShortUpDown.cs │ │ ├── SingleUpDown.cs │ │ ├── UIntegerUpDown.cs │ │ ├── ULongUpDown.cs │ │ ├── UShortUpDown.cs │ │ └── UpDownBase.cs │ ├── PagingItemsControl │ │ ├── NumberedPage.cs │ │ ├── PagingDecorator.cs │ │ └── SmartColumnsPanel.cs │ ├── Panels │ │ ├── AnimatedWrapPanel.cs │ │ └── VirtualizingWrapPanel.cs │ ├── ResourceDictionaryExtensions.cs │ ├── RichTextBox │ │ └── RichTextBoxExtended.cs │ ├── Screen.cs │ ├── SharedResourceDictionary.cs │ ├── Spinner │ │ ├── ButtonSpinner.cs │ │ ├── SpinDirection.cs │ │ ├── SpinEventArgs.cs │ │ ├── Spinner.cs │ │ └── ValidSpinDirections.cs │ ├── TextBox │ │ ├── ButtonTextBox.cs │ │ ├── QueryMoveFocusEventArgs.cs │ │ ├── QueryMoveFocusEventHandler.cs │ │ └── TextBoxExtended.cs │ ├── TreeView │ │ ├── TreeViewAttached.cs │ │ └── TreeViewItemAttached.cs │ ├── UIElementAttached.cs │ ├── WebBrowserAttached.cs │ ├── Window │ │ ├── NotifyBox.cs │ │ ├── OverlayWindow.cs │ │ ├── Window.cs │ │ └── WindowBase.cs │ ├── Wizard │ │ ├── Internal │ │ │ ├── WizardItemModel.cs │ │ │ └── WizardItemModelCollection.cs │ │ ├── Wizard.cs │ │ ├── WizardAnimation.cs │ │ ├── WizardCollectionAnimation.cs │ │ ├── WizardItem.cs │ │ ├── WizardItemCollection.cs │ │ ├── WizardMode.cs │ │ └── WizardXaml.cs │ └── XmlSerializer.cs ├── Converters │ ├── BoolToVisibilityConverter.cs │ ├── InverseBoolConverter.cs │ ├── InverseBoolToVisibilityConverter.cs │ ├── InverseNullToVisibilityConverter.cs │ ├── LessThanEqualToBoolConverter.cs │ ├── LessThanEqualToVisibilityConverter.cs │ ├── LessThanToBoolConverter.cs │ ├── MoreThanEqualToBoolConverter.cs │ ├── MoreThanEqualToVisibilityConverter.cs │ ├── MoreThanToBoolConverter.cs │ ├── NullOrEmptyToVisibilityConverter.cs │ ├── NullToBoolConverter.cs │ ├── NullToVisibilityConverter.cs │ ├── StringFormatConverter.cs │ └── VisibilityToBoolConverter.cs ├── DependencyObjectExtensions.cs ├── DispatcherExtensions.cs ├── DragAndDrop │ ├── DragCommand.cs │ ├── DragManager.cs │ └── DragViewer.cs ├── ElysiumApplication.cs ├── ElysiumParameterOverrides.cs ├── Framework.UI.csproj ├── Input │ ├── AsyncCommand.cs │ ├── AsyncCommandT.cs │ ├── AsyncDelegateCommand.cs │ ├── AsyncDelegateCommandT.cs │ ├── Command.cs │ ├── CommandBase.cs │ ├── CommandT.cs │ ├── DelegateCommand.cs │ └── DelegateCommandT.cs ├── Properties │ └── AssemblyInfo.cs ├── ThemeManager.cs ├── Themes │ ├── Elysium │ │ ├── ApplicationBar.xaml │ │ ├── CommandButton.xaml │ │ ├── DropDownCommandButton.xaml │ │ ├── ProgressBar.xaml │ │ ├── ProgressRing.xaml │ │ ├── Submenu.xaml │ │ ├── TODO │ │ │ └── Generic.xaml │ │ ├── ToggleCommandButton.xaml │ │ └── ToggleSwitch.xaml │ ├── ElysiumExtra │ │ ├── Accordion.xaml │ │ ├── BorderFIx.xaml │ │ ├── ButtonTextBox.xaml │ │ ├── CalloutContentControl.xaml │ │ ├── ComboDataGrid.xaml │ │ ├── ElasticPicker.xaml │ │ ├── ExpanderMenu.xaml │ │ ├── FlipControl.xaml │ │ ├── GeometryIcon.xaml │ │ ├── Icon.xaml │ │ ├── LoadingContent.xaml │ │ ├── MessageDialog.xaml │ │ ├── NotesListBox.xaml │ │ ├── NumericUpDown.xaml │ │ ├── PagingItemsControl.xaml │ │ ├── RichTextBoxExtended.xaml │ │ ├── TextBoxExtended.xaml │ │ ├── Watermark.xaml │ │ └── Wizard.xaml │ ├── Generic.xaml │ └── WPF │ │ ├── Base │ │ ├── Border.xaml │ │ ├── Brush.xaml │ │ ├── Color.xaml │ │ ├── Converter.xaml │ │ ├── DrawingImage.xaml │ │ ├── FocusVisualStyle.xaml │ │ ├── Geometry.xaml │ │ ├── GroupStyle.xaml │ │ ├── Icon.xaml │ │ ├── Theme │ │ │ ├── DarkColor.xaml │ │ │ └── LightColor.xaml │ │ └── Validation.xaml │ │ └── Controls │ │ ├── Button.xaml │ │ ├── Calendar.xaml │ │ ├── CheckBox.xaml │ │ ├── ComboBox.xaml │ │ ├── ComboBoxItem.xaml │ │ ├── ContentControl.xaml │ │ ├── ContextMenu.xaml │ │ ├── DataGrid.xaml │ │ ├── DatePicker.xaml │ │ ├── Expander.xaml │ │ ├── GridSplitter.xaml │ │ ├── HeaderedContentControl.xaml │ │ ├── Hyperlink.xaml │ │ ├── ItemsControl.xaml │ │ ├── Label.xaml │ │ ├── ListBox.xaml │ │ ├── ListBoxItem.xaml │ │ ├── Menu.xaml │ │ ├── MenuItem.xaml │ │ ├── PasswordBox.xaml │ │ ├── RadioButton.xaml │ │ ├── RepeatButton.xaml │ │ ├── RichTextBox.xaml │ │ ├── ScrollBar.xaml │ │ ├── ScrollViewer.xaml │ │ ├── Separator.xaml │ │ ├── Slider.xaml │ │ ├── TabControl.xaml │ │ ├── TabItem.xaml │ │ ├── TextBlock.xaml │ │ ├── TextBox.xaml │ │ ├── ToggleButton.xaml │ │ ├── ToolTip.xaml │ │ ├── TreeView.xaml │ │ ├── TreeViewItem.xaml │ │ └── Window.xaml ├── VisualTreeHelpers.cs ├── WeakEvent.cs ├── XamlHelper.cs ├── app.config └── packages.config └── Framework ├── CharacterSet.cs ├── Collections ├── CollectionExtensions.cs ├── EnumerableExtensions.cs └── TraverseKind.cs ├── ComponentModel ├── Cloneable │ └── ICloneableT.cs ├── Collections │ ├── ItemChangedEventArgs.cs │ ├── KeyedObservableCollection.cs │ ├── KeyedObservableItemsCollection.cs │ └── ObservableItemsCollection.cs ├── Disposable.cs ├── EditableObject.cs ├── NotifyDataErrorInfo.cs ├── NotifyPropertyChanges.cs ├── RevertibleChangeTracking.cs └── Rules │ ├── DelegateRule.cs │ ├── Rule.cs │ └── RuleCollection.cs ├── Framework.csproj ├── Guard ├── Guard.AreEqual.cs ├── Guard.AreNotEqual.cs ├── Guard.ContainsCollection.cs ├── Guard.ContainsString.cs ├── Guard.DoesNotContainCollection.cs ├── Guard.DoesNotContainString.cs ├── Guard.EndsWith.cs ├── Guard.IsInstanceOfType.cs ├── Guard.IsLessThan.cs ├── Guard.IsLessThanOrEqualTo.cs ├── Guard.IsMatch.cs ├── Guard.IsMoreThan.cs ├── Guard.IsMoreThanOrEqualTo.cs ├── Guard.IsNotInstanceOfType.cs ├── Guard.IsNotNull.cs ├── Guard.IsNotNullOrEmptyCollection.cs ├── Guard.IsNotNullOrEmptyString.cs ├── Guard.IsNotNullOrWhiteSpace.cs ├── Guard.IsTrue.cs ├── Guard.StartsWith.cs ├── Guard.cs └── Parameter.cs ├── IO └── Streams.cs ├── Properties └── AssemblyInfo.cs ├── RandomExtensions.cs └── packages.config /.gitattributes: -------------------------------------------------------------------------------- 1 | ############################### 2 | # Git Line Endings # 3 | ############################### 4 | 5 | # Set default behavior to automatically normalize line endings. 6 | * text=auto 7 | 8 | # Force bash scripts to always use lf line endings so that if a repo is accessed 9 | # in Unix via a file share from Windows, the scripts will work. 10 | *.sh text eol=lf 11 | 12 | ############################### 13 | # Git Large File System (LFS) # 14 | ############################### 15 | 16 | # Archives 17 | *.7z filter=lfs diff=lfs merge=lfs -text 18 | *.br filter=lfs diff=lfs merge=lfs -text 19 | *.gz filter=lfs diff=lfs merge=lfs -text 20 | *.tar filter=lfs diff=lfs merge=lfs -text 21 | *.zip filter=lfs diff=lfs merge=lfs -text 22 | 23 | # Documents 24 | *.pdf filter=lfs diff=lfs merge=lfs -text 25 | 26 | # Images 27 | *.gif filter=lfs diff=lfs merge=lfs -text 28 | *.ico filter=lfs diff=lfs merge=lfs -text 29 | *.jpg filter=lfs diff=lfs merge=lfs -text 30 | *.png filter=lfs diff=lfs merge=lfs -text 31 | *.psd filter=lfs diff=lfs merge=lfs -text 32 | *.webp filter=lfs diff=lfs merge=lfs -text 33 | 34 | # Fonts 35 | *.woff2 filter=lfs diff=lfs merge=lfs -text 36 | 37 | # Other 38 | *.exe filter=lfs diff=lfs merge=lfs -text 39 | -------------------------------------------------------------------------------- /.nuget/NuGet.Config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /.nuget/NuGet.exe: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4cd7d6e0229a2f939d70649045362b347d2e16a3c88c12e4b58eb616fb701439 3 | size 1659904 4 | -------------------------------------------------------------------------------- /Elysium.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:12a2db1e350390a768824dd42899b63d8616ba335126a9bc5062b672ee74184f 3 | size 2680 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2016 Muhammad Rehan Saeed 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /Screenshots/Animation-1024x575.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a74078f576b60349b90b8ac48fb894cc3f0649b34beb33b1d488de72e45decd9 3 | size 146527 4 | -------------------------------------------------------------------------------- /Screenshots/App-Bar-1024x575.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d74e858055642f2874ba30718d7693e5b6920d708166029bc435157f0bcabbfb 3 | size 262450 4 | -------------------------------------------------------------------------------- /Screenshots/Border-1024x575.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:74c0aa674d44601ab4af3196fe26348094569689584c4c7859e5fa5eb868cb30 3 | size 118704 4 | -------------------------------------------------------------------------------- /Screenshots/Button-1024x575.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:03c428a65f8e015a2b3bc85a5959380437a8eda251c1d118035cbf4ea600305a 3 | size 141806 4 | -------------------------------------------------------------------------------- /Screenshots/Colour-1024x575.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3598aee81c3e0d168609c977654c07abc630c52f8d757103e8452b29a8dd6c91 3 | size 198900 4 | -------------------------------------------------------------------------------- /Screenshots/DataGrid-1024x575.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b0543c26dc5f711978997701105032004e1c4631b96f2b17ba062c94056fb61c 3 | size 208618 4 | -------------------------------------------------------------------------------- /Screenshots/Drag-Drop-1-1024x575.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9bfae94948f1ef612dd580dea84e6aa8238db4c7029744b75775c46f8ceca512 3 | size 157136 4 | -------------------------------------------------------------------------------- /Screenshots/Drag-Drop-2-1024x575.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1f384f29dad88db839cf0db391a08110a8da68e45c2d67fa40c2af905b1b9614 3 | size 140082 4 | -------------------------------------------------------------------------------- /Screenshots/ElasticPicker-1-1024x575.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d697c2c46235d34bf9ceb6bb5aa514518471f13383d838ad1de2f7c1748e7206 3 | size 200461 4 | -------------------------------------------------------------------------------- /Screenshots/ElasticPicker-2-1024x575.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4073a7774798c78eca1d1104c3e51969f85360cce29c2bbb522611dbbdb88ecc 3 | size 174061 4 | -------------------------------------------------------------------------------- /Screenshots/Expander-1024x575.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f23c98567eaa13cc005ae65844009c9f42e212e9c71a8bf279ef33f959774d7b 3 | size 144363 4 | -------------------------------------------------------------------------------- /Screenshots/ExpanderMenu-1024x575.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:90aedb3067b51cb51ddf4b33622819b68133e9565ff9b3d89222016404eb84eb 3 | size 125388 4 | -------------------------------------------------------------------------------- /Screenshots/FlipControl-1024x575.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9b0c414e43017f2dd27babd626f145551019bac8eb0ee403763e03fb9fdac9da 3 | size 121435 4 | -------------------------------------------------------------------------------- /Screenshots/Flyout1-1024x575.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9aee876ab469e1e8ce39357e9c1431f3edf0fff677d0a78f84d013e593d9365b 3 | size 139745 4 | -------------------------------------------------------------------------------- /Screenshots/Flyout2-1024x575.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c9f6e857c567e2cf659f871c428fee7655b12a41cc6a9c9b658a14aa0af98a24 3 | size 189186 4 | -------------------------------------------------------------------------------- /Screenshots/Icon1-1024x575.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1d4e4c37c9d7a37beca6be300c30fb20f752c20345d9bb11b153b18dfd5aa988 3 | size 244089 4 | -------------------------------------------------------------------------------- /Screenshots/Input-ButtonTextBox-1024x575.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:21d94f43221fffbe7f77e0961ac5bb1c1cfb0eb58ea09b666b72b05e5cee6944 3 | size 136992 4 | -------------------------------------------------------------------------------- /Screenshots/Input-DatePicker-1024x575.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:37e8a2750f7f6be86edd0493b6f85784314eaf66de7b041faccdded8cadbd4a8 3 | size 139570 4 | -------------------------------------------------------------------------------- /Screenshots/Input-Numeric-1024x575.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:195be5c219356edb219bdd9ae42fe4b9c1ca087e608cf7d9652f8b7ebd2bca83 3 | size 151950 4 | -------------------------------------------------------------------------------- /Screenshots/Input-RichTextBox-1024x575.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:eb2c037a03e9035731f17b3cac7b0fd924bdb971579d7a975d0fafcbfb6aed53 3 | size 212256 4 | -------------------------------------------------------------------------------- /Screenshots/Input-TextBox-1024x575.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:eda4b4c33ad2279959c48bb65195826701612619eca38161dd1ba7dca54d5fc5 3 | size 179371 4 | -------------------------------------------------------------------------------- /Screenshots/ListBox-1-1024x575.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8b4a462a57cd314d4ad4a84a2424e9c94168739da82a43ec52d5ae8594bd86d5 3 | size 191921 4 | -------------------------------------------------------------------------------- /Screenshots/ListBox-2-1024x575.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:35783498b798abc829d7921c1b36b13c8fbd50654806bd130a732ab79f99077e 3 | size 188189 4 | -------------------------------------------------------------------------------- /Screenshots/MenuItem-1024x575.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:46a2d9f0b160bb09bbabfb77a995b9fba62cf731be9d5a4a0c8f00b472bd2990 3 | size 201473 4 | -------------------------------------------------------------------------------- /Screenshots/MessageDialog-1024x575.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:577c81eb0adaa36d94abbf05891960c03b447f3a908fdc8da9f0477574d20654 3 | size 131732 4 | -------------------------------------------------------------------------------- /Screenshots/NotifyBox-1024x575.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e74b19ff0aeab18df0d5175c3ae576fe831241a527fd1a226dfcc704b0c18e0f 3 | size 257985 4 | -------------------------------------------------------------------------------- /Screenshots/OverlayWindow-1024x575.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:96bdee3e8b9a17e7cd5419ebb8bcb699883c17a41b4b2babf0e5b1bdc40b96de 3 | size 155967 4 | -------------------------------------------------------------------------------- /Screenshots/Paging-1-1024x575.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:37094d5a9d49e5c0d97d6b0918035704561337db38fe81d64bdb2ada63ebda4e 3 | size 118913 4 | -------------------------------------------------------------------------------- /Screenshots/Paging-2-1024x575.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5b6d8ded23080da26a43e2e7d67fb4e0c9be4ef5489ffd9770978dc5fcddbaa1 3 | size 126143 4 | -------------------------------------------------------------------------------- /Screenshots/Progress-1024x575.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:89b57823d41fb8f060a039416daea3ec5cb47c54641417506d568313fe587240 3 | size 142153 4 | -------------------------------------------------------------------------------- /Screenshots/TreeView-1024x575.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e2300a066d3d4005431d18e1a11cff0a474b5c84c93167c528687333e08e6b6f 3 | size 141372 4 | -------------------------------------------------------------------------------- /Screenshots/Validation-1024x575.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:199f8a5a68b76f2c804ca04b1bd013bff9cc008353822d0fb591ce3e0fbc0501 3 | size 148398 4 | -------------------------------------------------------------------------------- /Screenshots/Window-1-1024x575.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1892fb0016256705aa923feac2d45b472faf21bc1d2a866eefbfb9e7707c7b2a 3 | size 181563 4 | -------------------------------------------------------------------------------- /Screenshots/Wizard-1-1024x575.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c0f02ce234a562f9cd8c853e30dd154abb99c04ceb91569cf8ff7fe408d81473 3 | size 264382 4 | -------------------------------------------------------------------------------- /Screenshots/Wizard-3-1024x575.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a2d2550b409c5a56d6848dd1f9dca47f94c58b5187122da210ebcfb47160f3bb 3 | size 267087 4 | -------------------------------------------------------------------------------- /Source-branch/Framework.UI.TestHarness/App.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 |
6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 1 18 | 19 | 20 | 0 21 | 22 | 23 | False 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /Source-branch/Framework.UI.TestHarness/App.xaml: -------------------------------------------------------------------------------- 1 |  5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /Source-branch/Framework.UI.TestHarness/App.xaml.cs: -------------------------------------------------------------------------------- 1 | namespace Framework.UI.TestHarness 2 | { 3 | using System.Windows; 4 | 5 | /// 6 | /// Interaction logic for Application XAML 7 | /// 8 | public partial class App : Application 9 | { 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /Source-branch/Framework.UI.TestHarness/Assets/Background1.jpg: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:fc1edec43de949e7c6607bf76fc4bb912cedb03dece9abecd03cd9c8ff05fc5b 3 | size 1243779 4 | -------------------------------------------------------------------------------- /Source-branch/Framework.UI.TestHarness/Assets/Background2.jpg: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e06117f19c56d018e76f59e47c16015ef4e94bfa3461aa6899ace9f0aa2c7d9b 3 | size 579754 4 | -------------------------------------------------------------------------------- /Source-branch/Framework.UI.TestHarness/Assets/Icon.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:435685a949ec01e3f52560e57a1e6c8da505593f41e008e9afa317fc30ad8afd 3 | size 1213 4 | -------------------------------------------------------------------------------- /Source-branch/Framework.UI.TestHarness/Assets/IconColourSystem.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4c6ba9c217046eb425c06e22adf208ed21f4630c6215c7796584a89f90c0dcd0 3 | size 340675 4 | -------------------------------------------------------------------------------- /Source-branch/Framework.UI.TestHarness/MainView.xaml: -------------------------------------------------------------------------------- 1 |  11 | 12 | 13 | 14 | 15 | 16 | 17 |