├── .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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/.gitignore -------------------------------------------------------------------------------- /.nuget/NuGet.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/.nuget/NuGet.Config -------------------------------------------------------------------------------- /.nuget/NuGet.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/.nuget/NuGet.exe -------------------------------------------------------------------------------- /.nuget/NuGet.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/.nuget/NuGet.targets -------------------------------------------------------------------------------- /Elysium Extra.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Elysium Extra.sln -------------------------------------------------------------------------------- /Elysium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Elysium.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/README.md -------------------------------------------------------------------------------- /Screenshots/Animation-1024x575.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Screenshots/Animation-1024x575.png -------------------------------------------------------------------------------- /Screenshots/App-Bar-1024x575.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Screenshots/App-Bar-1024x575.png -------------------------------------------------------------------------------- /Screenshots/Border-1024x575.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Screenshots/Border-1024x575.png -------------------------------------------------------------------------------- /Screenshots/Button-1024x575.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Screenshots/Button-1024x575.png -------------------------------------------------------------------------------- /Screenshots/Colour-1024x575.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Screenshots/Colour-1024x575.png -------------------------------------------------------------------------------- /Screenshots/DataGrid-1024x575.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Screenshots/DataGrid-1024x575.png -------------------------------------------------------------------------------- /Screenshots/Drag-Drop-1-1024x575.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Screenshots/Drag-Drop-1-1024x575.png -------------------------------------------------------------------------------- /Screenshots/Drag-Drop-2-1024x575.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Screenshots/Drag-Drop-2-1024x575.png -------------------------------------------------------------------------------- /Screenshots/ElasticPicker-1-1024x575.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Screenshots/ElasticPicker-1-1024x575.png -------------------------------------------------------------------------------- /Screenshots/ElasticPicker-2-1024x575.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Screenshots/ElasticPicker-2-1024x575.png -------------------------------------------------------------------------------- /Screenshots/Expander-1024x575.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Screenshots/Expander-1024x575.png -------------------------------------------------------------------------------- /Screenshots/ExpanderMenu-1024x575.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Screenshots/ExpanderMenu-1024x575.png -------------------------------------------------------------------------------- /Screenshots/FlipControl-1024x575.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Screenshots/FlipControl-1024x575.png -------------------------------------------------------------------------------- /Screenshots/Flyout1-1024x575.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Screenshots/Flyout1-1024x575.png -------------------------------------------------------------------------------- /Screenshots/Flyout2-1024x575.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Screenshots/Flyout2-1024x575.png -------------------------------------------------------------------------------- /Screenshots/Icon1-1024x575.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Screenshots/Icon1-1024x575.png -------------------------------------------------------------------------------- /Screenshots/Input-ButtonTextBox-1024x575.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Screenshots/Input-ButtonTextBox-1024x575.png -------------------------------------------------------------------------------- /Screenshots/Input-DatePicker-1024x575.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Screenshots/Input-DatePicker-1024x575.png -------------------------------------------------------------------------------- /Screenshots/Input-Numeric-1024x575.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Screenshots/Input-Numeric-1024x575.png -------------------------------------------------------------------------------- /Screenshots/Input-RichTextBox-1024x575.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Screenshots/Input-RichTextBox-1024x575.png -------------------------------------------------------------------------------- /Screenshots/Input-TextBox-1024x575.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Screenshots/Input-TextBox-1024x575.png -------------------------------------------------------------------------------- /Screenshots/ListBox-1-1024x575.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Screenshots/ListBox-1-1024x575.png -------------------------------------------------------------------------------- /Screenshots/ListBox-2-1024x575.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Screenshots/ListBox-2-1024x575.png -------------------------------------------------------------------------------- /Screenshots/MenuItem-1024x575.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Screenshots/MenuItem-1024x575.png -------------------------------------------------------------------------------- /Screenshots/MessageDialog-1024x575.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Screenshots/MessageDialog-1024x575.png -------------------------------------------------------------------------------- /Screenshots/NotifyBox-1024x575.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Screenshots/NotifyBox-1024x575.png -------------------------------------------------------------------------------- /Screenshots/OverlayWindow-1024x575.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Screenshots/OverlayWindow-1024x575.png -------------------------------------------------------------------------------- /Screenshots/Paging-1-1024x575.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Screenshots/Paging-1-1024x575.png -------------------------------------------------------------------------------- /Screenshots/Paging-2-1024x575.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Screenshots/Paging-2-1024x575.png -------------------------------------------------------------------------------- /Screenshots/Progress-1024x575.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Screenshots/Progress-1024x575.png -------------------------------------------------------------------------------- /Screenshots/TreeView-1024x575.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Screenshots/TreeView-1024x575.png -------------------------------------------------------------------------------- /Screenshots/Validation-1024x575.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Screenshots/Validation-1024x575.png -------------------------------------------------------------------------------- /Screenshots/Window-1-1024x575.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Screenshots/Window-1-1024x575.png -------------------------------------------------------------------------------- /Screenshots/Wizard-1-1024x575.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Screenshots/Wizard-1-1024x575.png -------------------------------------------------------------------------------- /Screenshots/Wizard-3-1024x575.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Screenshots/Wizard-3-1024x575.png -------------------------------------------------------------------------------- /Source-branch/Framework.UI.TestHarness/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI.TestHarness/App.config -------------------------------------------------------------------------------- /Source-branch/Framework.UI.TestHarness/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI.TestHarness/App.xaml -------------------------------------------------------------------------------- /Source-branch/Framework.UI.TestHarness/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI.TestHarness/App.xaml.cs -------------------------------------------------------------------------------- /Source-branch/Framework.UI.TestHarness/Assets/Background1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI.TestHarness/Assets/Background1.jpg -------------------------------------------------------------------------------- /Source-branch/Framework.UI.TestHarness/Assets/Background2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI.TestHarness/Assets/Background2.jpg -------------------------------------------------------------------------------- /Source-branch/Framework.UI.TestHarness/Assets/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI.TestHarness/Assets/Icon.png -------------------------------------------------------------------------------- /Source-branch/Framework.UI.TestHarness/Assets/IconColourSystem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI.TestHarness/Assets/IconColourSystem.png -------------------------------------------------------------------------------- /Source-branch/Framework.UI.TestHarness/MainView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI.TestHarness/MainView.xaml -------------------------------------------------------------------------------- /Source-branch/Framework.UI.TestHarness/MainView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI.TestHarness/MainView.xaml.cs -------------------------------------------------------------------------------- /Source-branch/Framework.UI.TestHarness/Models/Fund.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI.TestHarness/Models/Fund.cs -------------------------------------------------------------------------------- /Source-branch/Framework.UI.TestHarness/Models/FundCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI.TestHarness/Models/FundCollection.cs -------------------------------------------------------------------------------- /Source-branch/Framework.UI.TestHarness/Models/Person.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI.TestHarness/Models/Person.cs -------------------------------------------------------------------------------- /Source-branch/Framework.UI.TestHarness/Models/PersonCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI.TestHarness/Models/PersonCollection.cs -------------------------------------------------------------------------------- /Source-branch/Framework.UI.TestHarness/Models/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI.TestHarness/Models/Settings.Designer.cs -------------------------------------------------------------------------------- /Source-branch/Framework.UI.TestHarness/Models/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI.TestHarness/Models/Settings.settings -------------------------------------------------------------------------------- /Source-branch/Framework.UI.TestHarness/Models/WizardViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI.TestHarness/Models/WizardViewModel.cs -------------------------------------------------------------------------------- /Source-branch/Framework.UI.TestHarness/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI.TestHarness/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Source-branch/Framework.UI.TestHarness/ViewModels/ColoursViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI.TestHarness/ViewModels/ColoursViewModel.cs -------------------------------------------------------------------------------- /Source-branch/Framework.UI.TestHarness/ViewModels/IconViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI.TestHarness/ViewModels/IconViewModel.cs -------------------------------------------------------------------------------- /Source-branch/Framework.UI.TestHarness/ViewModels/InputViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI.TestHarness/ViewModels/InputViewModel.cs -------------------------------------------------------------------------------- /Source-branch/Framework.UI.TestHarness/Views/AnimationView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI.TestHarness/Views/AnimationView.xaml -------------------------------------------------------------------------------- /Source-branch/Framework.UI.TestHarness/Views/AnimationView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI.TestHarness/Views/AnimationView.xaml.cs -------------------------------------------------------------------------------- /Source-branch/Framework.UI.TestHarness/Views/AppBarView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI.TestHarness/Views/AppBarView.xaml -------------------------------------------------------------------------------- /Source-branch/Framework.UI.TestHarness/Views/AppBarView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI.TestHarness/Views/AppBarView.xaml.cs -------------------------------------------------------------------------------- /Source-branch/Framework.UI.TestHarness/Views/BackgroundView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI.TestHarness/Views/BackgroundView.xaml -------------------------------------------------------------------------------- /Source-branch/Framework.UI.TestHarness/Views/BordersView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI.TestHarness/Views/BordersView.xaml -------------------------------------------------------------------------------- /Source-branch/Framework.UI.TestHarness/Views/BordersView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI.TestHarness/Views/BordersView.xaml.cs -------------------------------------------------------------------------------- /Source-branch/Framework.UI.TestHarness/Views/ButtonsView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI.TestHarness/Views/ButtonsView.xaml -------------------------------------------------------------------------------- /Source-branch/Framework.UI.TestHarness/Views/ButtonsView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI.TestHarness/Views/ButtonsView.xaml.cs -------------------------------------------------------------------------------- /Source-branch/Framework.UI.TestHarness/Views/ColoursView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI.TestHarness/Views/ColoursView.xaml -------------------------------------------------------------------------------- /Source-branch/Framework.UI.TestHarness/Views/ColoursView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI.TestHarness/Views/ColoursView.xaml.cs -------------------------------------------------------------------------------- /Source-branch/Framework.UI.TestHarness/Views/CommandsView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI.TestHarness/Views/CommandsView.xaml -------------------------------------------------------------------------------- /Source-branch/Framework.UI.TestHarness/Views/CommandsView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI.TestHarness/Views/CommandsView.xaml.cs -------------------------------------------------------------------------------- /Source-branch/Framework.UI.TestHarness/Views/ConvertersView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI.TestHarness/Views/ConvertersView.xaml -------------------------------------------------------------------------------- /Source-branch/Framework.UI.TestHarness/Views/DataGridView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI.TestHarness/Views/DataGridView.xaml -------------------------------------------------------------------------------- /Source-branch/Framework.UI.TestHarness/Views/DataGridView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI.TestHarness/Views/DataGridView.xaml.cs -------------------------------------------------------------------------------- /Source-branch/Framework.UI.TestHarness/Views/DragAndDropView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI.TestHarness/Views/DragAndDropView.xaml -------------------------------------------------------------------------------- /Source-branch/Framework.UI.TestHarness/Views/ElysiumView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI.TestHarness/Views/ElysiumView.xaml -------------------------------------------------------------------------------- /Source-branch/Framework.UI.TestHarness/Views/ElysiumView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI.TestHarness/Views/ElysiumView.xaml.cs -------------------------------------------------------------------------------- /Source-branch/Framework.UI.TestHarness/Views/ExpanderMenuView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI.TestHarness/Views/ExpanderMenuView.xaml -------------------------------------------------------------------------------- /Source-branch/Framework.UI.TestHarness/Views/ExpandersView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI.TestHarness/Views/ExpandersView.xaml -------------------------------------------------------------------------------- /Source-branch/Framework.UI.TestHarness/Views/ExpandersView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI.TestHarness/Views/ExpandersView.xaml.cs -------------------------------------------------------------------------------- /Source-branch/Framework.UI.TestHarness/Views/FlipControlView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI.TestHarness/Views/FlipControlView.xaml -------------------------------------------------------------------------------- /Source-branch/Framework.UI.TestHarness/Views/FlyoutView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI.TestHarness/Views/FlyoutView.xaml -------------------------------------------------------------------------------- /Source-branch/Framework.UI.TestHarness/Views/FlyoutView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI.TestHarness/Views/FlyoutView.xaml.cs -------------------------------------------------------------------------------- /Source-branch/Framework.UI.TestHarness/Views/IconsView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI.TestHarness/Views/IconsView.xaml -------------------------------------------------------------------------------- /Source-branch/Framework.UI.TestHarness/Views/IconsView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI.TestHarness/Views/IconsView.xaml.cs -------------------------------------------------------------------------------- /Source-branch/Framework.UI.TestHarness/Views/InputView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI.TestHarness/Views/InputView.xaml -------------------------------------------------------------------------------- /Source-branch/Framework.UI.TestHarness/Views/InputView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI.TestHarness/Views/InputView.xaml.cs -------------------------------------------------------------------------------- /Source-branch/Framework.UI.TestHarness/Views/ListBoxView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI.TestHarness/Views/ListBoxView.xaml -------------------------------------------------------------------------------- /Source-branch/Framework.UI.TestHarness/Views/ListBoxView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI.TestHarness/Views/ListBoxView.xaml.cs -------------------------------------------------------------------------------- /Source-branch/Framework.UI.TestHarness/Views/ListViewView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI.TestHarness/Views/ListViewView.xaml -------------------------------------------------------------------------------- /Source-branch/Framework.UI.TestHarness/Views/ListViewView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI.TestHarness/Views/ListViewView.xaml.cs -------------------------------------------------------------------------------- /Source-branch/Framework.UI.TestHarness/Views/MenuItemView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI.TestHarness/Views/MenuItemView.xaml -------------------------------------------------------------------------------- /Source-branch/Framework.UI.TestHarness/Views/MenuItemView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI.TestHarness/Views/MenuItemView.xaml.cs -------------------------------------------------------------------------------- /Source-branch/Framework.UI.TestHarness/Views/NotifyBoxView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI.TestHarness/Views/NotifyBoxView.xaml -------------------------------------------------------------------------------- /Source-branch/Framework.UI.TestHarness/Views/NotifyBoxView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI.TestHarness/Views/NotifyBoxView.xaml.cs -------------------------------------------------------------------------------- /Source-branch/Framework.UI.TestHarness/Views/PagingView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI.TestHarness/Views/PagingView.xaml -------------------------------------------------------------------------------- /Source-branch/Framework.UI.TestHarness/Views/PagingView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI.TestHarness/Views/PagingView.xaml.cs -------------------------------------------------------------------------------- /Source-branch/Framework.UI.TestHarness/Views/PanelsView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI.TestHarness/Views/PanelsView.xaml -------------------------------------------------------------------------------- /Source-branch/Framework.UI.TestHarness/Views/PanelsView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI.TestHarness/Views/PanelsView.xaml.cs -------------------------------------------------------------------------------- /Source-branch/Framework.UI.TestHarness/Views/PopupsView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI.TestHarness/Views/PopupsView.xaml -------------------------------------------------------------------------------- /Source-branch/Framework.UI.TestHarness/Views/PopupsView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI.TestHarness/Views/PopupsView.xaml.cs -------------------------------------------------------------------------------- /Source-branch/Framework.UI.TestHarness/Views/PracticesView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI.TestHarness/Views/PracticesView.xaml -------------------------------------------------------------------------------- /Source-branch/Framework.UI.TestHarness/Views/PracticesView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI.TestHarness/Views/PracticesView.xaml.cs -------------------------------------------------------------------------------- /Source-branch/Framework.UI.TestHarness/Views/ProgressView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI.TestHarness/Views/ProgressView.xaml -------------------------------------------------------------------------------- /Source-branch/Framework.UI.TestHarness/Views/ProgressView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI.TestHarness/Views/ProgressView.xaml.cs -------------------------------------------------------------------------------- /Source-branch/Framework.UI.TestHarness/Views/ScrollView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI.TestHarness/Views/ScrollView.xaml -------------------------------------------------------------------------------- /Source-branch/Framework.UI.TestHarness/Views/ScrollView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI.TestHarness/Views/ScrollView.xaml.cs -------------------------------------------------------------------------------- /Source-branch/Framework.UI.TestHarness/Views/SeperatorsView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI.TestHarness/Views/SeperatorsView.xaml -------------------------------------------------------------------------------- /Source-branch/Framework.UI.TestHarness/Views/TextView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI.TestHarness/Views/TextView.xaml -------------------------------------------------------------------------------- /Source-branch/Framework.UI.TestHarness/Views/TextView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI.TestHarness/Views/TextView.xaml.cs -------------------------------------------------------------------------------- /Source-branch/Framework.UI.TestHarness/Views/ThemeView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI.TestHarness/Views/ThemeView.xaml -------------------------------------------------------------------------------- /Source-branch/Framework.UI.TestHarness/Views/ThemeView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI.TestHarness/Views/ThemeView.xaml.cs -------------------------------------------------------------------------------- /Source-branch/Framework.UI.TestHarness/Views/ThicknessView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI.TestHarness/Views/ThicknessView.xaml -------------------------------------------------------------------------------- /Source-branch/Framework.UI.TestHarness/Views/ThicknessView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI.TestHarness/Views/ThicknessView.xaml.cs -------------------------------------------------------------------------------- /Source-branch/Framework.UI.TestHarness/Views/ToolTipsView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI.TestHarness/Views/ToolTipsView.xaml -------------------------------------------------------------------------------- /Source-branch/Framework.UI.TestHarness/Views/ToolTipsView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI.TestHarness/Views/ToolTipsView.xaml.cs -------------------------------------------------------------------------------- /Source-branch/Framework.UI.TestHarness/Views/TreeViewView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI.TestHarness/Views/TreeViewView.xaml -------------------------------------------------------------------------------- /Source-branch/Framework.UI.TestHarness/Views/TreeViewView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI.TestHarness/Views/TreeViewView.xaml.cs -------------------------------------------------------------------------------- /Source-branch/Framework.UI.TestHarness/Views/ValidationView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI.TestHarness/Views/ValidationView.xaml -------------------------------------------------------------------------------- /Source-branch/Framework.UI.TestHarness/Views/WebBrowserView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI.TestHarness/Views/WebBrowserView.xaml -------------------------------------------------------------------------------- /Source-branch/Framework.UI.TestHarness/Views/WindowView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI.TestHarness/Views/WindowView.xaml -------------------------------------------------------------------------------- /Source-branch/Framework.UI.TestHarness/Views/WindowView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI.TestHarness/Views/WindowView.xaml.cs -------------------------------------------------------------------------------- /Source-branch/Framework.UI.TestHarness/Views/WizardView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI.TestHarness/Views/WizardView.xaml -------------------------------------------------------------------------------- /Source-branch/Framework.UI.TestHarness/Views/WizardView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI.TestHarness/Views/WizardView.xaml.cs -------------------------------------------------------------------------------- /Source-branch/Framework.UI.TestHarness/Windows/ElysiumView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI.TestHarness/Windows/ElysiumView.xaml -------------------------------------------------------------------------------- /Source-branch/Framework.UI.TestHarness/Windows/ElysiumView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI.TestHarness/Windows/ElysiumView.xaml.cs -------------------------------------------------------------------------------- /Source-branch/Framework.UI.TestHarness/Windows/StylesView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI.TestHarness/Windows/StylesView.xaml -------------------------------------------------------------------------------- /Source-branch/Framework.UI.TestHarness/Windows/StylesView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI.TestHarness/Windows/StylesView.xaml.cs -------------------------------------------------------------------------------- /Source-branch/Framework.UI.TestHarness/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI.TestHarness/packages.config -------------------------------------------------------------------------------- /Source-branch/Framework.UI/Assets/Divider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI/Assets/Divider.png -------------------------------------------------------------------------------- /Source-branch/Framework.UI/BindingBaseExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI/BindingBaseExtensions.cs -------------------------------------------------------------------------------- /Source-branch/Framework.UI/Commands/CommandBinding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI/Commands/CommandBinding.cs -------------------------------------------------------------------------------- /Source-branch/Framework.UI/Commands/CommandBindingCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI/Commands/CommandBindingCollection.cs -------------------------------------------------------------------------------- /Source-branch/Framework.UI/Commands/EventCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI/Commands/EventCommand.cs -------------------------------------------------------------------------------- /Source-branch/Framework.UI/Commands/Internal/IExecutionStrategy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI/Commands/Internal/IExecutionStrategy.cs -------------------------------------------------------------------------------- /Source-branch/Framework.UI/Commands/KeyCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI/Commands/KeyCommand.cs -------------------------------------------------------------------------------- /Source-branch/Framework.UI/Controls/Accordion/Accordion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI/Controls/Accordion/Accordion.cs -------------------------------------------------------------------------------- /Source-branch/Framework.UI/Controls/Accordion/AccordionAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI/Controls/Accordion/AccordionAction.cs -------------------------------------------------------------------------------- /Source-branch/Framework.UI/Controls/Accordion/AccordionItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI/Controls/Accordion/AccordionItem.cs -------------------------------------------------------------------------------- /Source-branch/Framework.UI/Controls/Accordion/InteractionHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI/Controls/Accordion/InteractionHelper.cs -------------------------------------------------------------------------------- /Source-branch/Framework.UI/Controls/Accordion/SelectionSequence.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI/Controls/Accordion/SelectionSequence.cs -------------------------------------------------------------------------------- /Source-branch/Framework.UI/Controls/Accordion/VisualStates.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI/Controls/Accordion/VisualStates.cs -------------------------------------------------------------------------------- /Source-branch/Framework.UI/Controls/Borders/ClippingBorder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI/Controls/Borders/ClippingBorder.cs -------------------------------------------------------------------------------- /Source-branch/Framework.UI/Controls/Borders/DropShadowBorder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI/Controls/Borders/DropShadowBorder.cs -------------------------------------------------------------------------------- /Source-branch/Framework.UI/Controls/Borders/GlassBorder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI/Controls/Borders/GlassBorder.cs -------------------------------------------------------------------------------- /Source-branch/Framework.UI/Controls/Borders/InnerGlowBorder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI/Controls/Borders/InnerGlowBorder.cs -------------------------------------------------------------------------------- /Source-branch/Framework.UI/Controls/Borders/OuterGlowBorder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI/Controls/Borders/OuterGlowBorder.cs -------------------------------------------------------------------------------- /Source-branch/Framework.UI/Controls/Borders/RadialShadowBorder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI/Controls/Borders/RadialShadowBorder.cs -------------------------------------------------------------------------------- /Source-branch/Framework.UI/Controls/ComboDataGrid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI/Controls/ComboDataGrid.cs -------------------------------------------------------------------------------- /Source-branch/Framework.UI/Controls/DataGrid/DataGridAttached.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI/Controls/DataGrid/DataGridAttached.cs -------------------------------------------------------------------------------- /Source-branch/Framework.UI/Controls/DataGrid/DataGridColumnInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI/Controls/DataGrid/DataGridColumnInfo.cs -------------------------------------------------------------------------------- /Source-branch/Framework.UI/Controls/ElementProxy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI/Controls/ElementProxy.cs -------------------------------------------------------------------------------- /Source-branch/Framework.UI/Controls/ExpanderMenu/ExpanderMenu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI/Controls/ExpanderMenu/ExpanderMenu.cs -------------------------------------------------------------------------------- /Source-branch/Framework.UI/Controls/FlipControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI/Controls/FlipControl.cs -------------------------------------------------------------------------------- /Source-branch/Framework.UI/Controls/GroupStyleCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI/Controls/GroupStyleCollection.cs -------------------------------------------------------------------------------- /Source-branch/Framework.UI/Controls/Icon/Icon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI/Controls/Icon/Icon.cs -------------------------------------------------------------------------------- /Source-branch/Framework.UI/Controls/Icon/IconSize.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI/Controls/Icon/IconSize.cs -------------------------------------------------------------------------------- /Source-branch/Framework.UI/Controls/Interactivity/Behaviors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI/Controls/Interactivity/Behaviors.cs -------------------------------------------------------------------------------- /Source-branch/Framework.UI/Controls/Interactivity/FadeBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI/Controls/Interactivity/FadeBehavior.cs -------------------------------------------------------------------------------- /Source-branch/Framework.UI/Controls/Interactivity/SlideBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI/Controls/Interactivity/SlideBehavior.cs -------------------------------------------------------------------------------- /Source-branch/Framework.UI/Controls/Interactivity/Triggers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI/Controls/Interactivity/Triggers.cs -------------------------------------------------------------------------------- /Source-branch/Framework.UI/Controls/ItemsControlAttached.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI/Controls/ItemsControlAttached.cs -------------------------------------------------------------------------------- /Source-branch/Framework.UI/Controls/ListBoxAttached.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI/Controls/ListBoxAttached.cs -------------------------------------------------------------------------------- /Source-branch/Framework.UI/Controls/ListBoxItemAttached.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI/Controls/ListBoxItemAttached.cs -------------------------------------------------------------------------------- /Source-branch/Framework.UI/Controls/LoadingContent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI/Controls/LoadingContent.cs -------------------------------------------------------------------------------- /Source-branch/Framework.UI/Controls/MenuItemAttached.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI/Controls/MenuItemAttached.cs -------------------------------------------------------------------------------- /Source-branch/Framework.UI/Controls/MessageDialog/MessageDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI/Controls/MessageDialog/MessageDialog.cs -------------------------------------------------------------------------------- /Source-branch/Framework.UI/Controls/Notes/ListIndexConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI/Controls/Notes/ListIndexConverter.cs -------------------------------------------------------------------------------- /Source-branch/Framework.UI/Controls/Notes/NotesListBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI/Controls/Notes/NotesListBox.cs -------------------------------------------------------------------------------- /Source-branch/Framework.UI/Controls/Notes/NotesListBoxItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI/Controls/Notes/NotesListBoxItem.cs -------------------------------------------------------------------------------- /Source-branch/Framework.UI/Controls/Notes/StackCanvas.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI/Controls/Notes/StackCanvas.cs -------------------------------------------------------------------------------- /Source-branch/Framework.UI/Controls/NumericUpDown/ByteUpDown.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI/Controls/NumericUpDown/ByteUpDown.cs -------------------------------------------------------------------------------- /Source-branch/Framework.UI/Controls/NumericUpDown/DecimalUpDown.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI/Controls/NumericUpDown/DecimalUpDown.cs -------------------------------------------------------------------------------- /Source-branch/Framework.UI/Controls/NumericUpDown/DoubleUpDown.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI/Controls/NumericUpDown/DoubleUpDown.cs -------------------------------------------------------------------------------- /Source-branch/Framework.UI/Controls/NumericUpDown/InputBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI/Controls/NumericUpDown/InputBase.cs -------------------------------------------------------------------------------- /Source-branch/Framework.UI/Controls/NumericUpDown/IntegerUpDown.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI/Controls/NumericUpDown/IntegerUpDown.cs -------------------------------------------------------------------------------- /Source-branch/Framework.UI/Controls/NumericUpDown/LongUpDown.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI/Controls/NumericUpDown/LongUpDown.cs -------------------------------------------------------------------------------- /Source-branch/Framework.UI/Controls/NumericUpDown/NumericUpDown.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI/Controls/NumericUpDown/NumericUpDown.cs -------------------------------------------------------------------------------- /Source-branch/Framework.UI/Controls/NumericUpDown/SByteUpDown.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI/Controls/NumericUpDown/SByteUpDown.cs -------------------------------------------------------------------------------- /Source-branch/Framework.UI/Controls/NumericUpDown/ShortUpDown.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI/Controls/NumericUpDown/ShortUpDown.cs -------------------------------------------------------------------------------- /Source-branch/Framework.UI/Controls/NumericUpDown/SingleUpDown.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI/Controls/NumericUpDown/SingleUpDown.cs -------------------------------------------------------------------------------- /Source-branch/Framework.UI/Controls/NumericUpDown/ULongUpDown.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI/Controls/NumericUpDown/ULongUpDown.cs -------------------------------------------------------------------------------- /Source-branch/Framework.UI/Controls/NumericUpDown/UShortUpDown.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI/Controls/NumericUpDown/UShortUpDown.cs -------------------------------------------------------------------------------- /Source-branch/Framework.UI/Controls/NumericUpDown/UpDownBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI/Controls/NumericUpDown/UpDownBase.cs -------------------------------------------------------------------------------- /Source-branch/Framework.UI/Controls/Panels/AnimatedWrapPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI/Controls/Panels/AnimatedWrapPanel.cs -------------------------------------------------------------------------------- /Source-branch/Framework.UI/Controls/Screen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI/Controls/Screen.cs -------------------------------------------------------------------------------- /Source-branch/Framework.UI/Controls/Spinner/ButtonSpinner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI/Controls/Spinner/ButtonSpinner.cs -------------------------------------------------------------------------------- /Source-branch/Framework.UI/Controls/Spinner/SpinDirection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI/Controls/Spinner/SpinDirection.cs -------------------------------------------------------------------------------- /Source-branch/Framework.UI/Controls/Spinner/SpinEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI/Controls/Spinner/SpinEventArgs.cs -------------------------------------------------------------------------------- /Source-branch/Framework.UI/Controls/Spinner/Spinner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI/Controls/Spinner/Spinner.cs -------------------------------------------------------------------------------- /Source-branch/Framework.UI/Controls/Spinner/ValidSpinDirections.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI/Controls/Spinner/ValidSpinDirections.cs -------------------------------------------------------------------------------- /Source-branch/Framework.UI/Controls/TextBox/ButtonTextBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI/Controls/TextBox/ButtonTextBox.cs -------------------------------------------------------------------------------- /Source-branch/Framework.UI/Controls/TextBox/TextBoxExtended.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI/Controls/TextBox/TextBoxExtended.cs -------------------------------------------------------------------------------- /Source-branch/Framework.UI/Controls/TreeView/TreeViewAttached.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI/Controls/TreeView/TreeViewAttached.cs -------------------------------------------------------------------------------- /Source-branch/Framework.UI/Controls/UIElementAttached.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI/Controls/UIElementAttached.cs -------------------------------------------------------------------------------- /Source-branch/Framework.UI/Controls/WebBrowserAttached.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI/Controls/WebBrowserAttached.cs -------------------------------------------------------------------------------- /Source-branch/Framework.UI/Controls/Window/NotifyBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI/Controls/Window/NotifyBox.cs -------------------------------------------------------------------------------- /Source-branch/Framework.UI/Controls/Window/OverlayWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI/Controls/Window/OverlayWindow.cs -------------------------------------------------------------------------------- /Source-branch/Framework.UI/Controls/Window/Window.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI/Controls/Window/Window.cs -------------------------------------------------------------------------------- /Source-branch/Framework.UI/Controls/Window/WindowBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI/Controls/Window/WindowBase.cs -------------------------------------------------------------------------------- /Source-branch/Framework.UI/Controls/Wizard/Wizard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI/Controls/Wizard/Wizard.cs -------------------------------------------------------------------------------- /Source-branch/Framework.UI/Controls/Wizard/WizardAnimation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI/Controls/Wizard/WizardAnimation.cs -------------------------------------------------------------------------------- /Source-branch/Framework.UI/Controls/Wizard/WizardItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI/Controls/Wizard/WizardItem.cs -------------------------------------------------------------------------------- /Source-branch/Framework.UI/Controls/Wizard/WizardItemCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI/Controls/Wizard/WizardItemCollection.cs -------------------------------------------------------------------------------- /Source-branch/Framework.UI/Controls/Wizard/WizardMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI/Controls/Wizard/WizardMode.cs -------------------------------------------------------------------------------- /Source-branch/Framework.UI/Controls/Wizard/WizardXaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI/Controls/Wizard/WizardXaml.cs -------------------------------------------------------------------------------- /Source-branch/Framework.UI/Controls/XmlSerializer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source-branch/Framework.UI/Converters/BoolToVisibilityConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI/Converters/BoolToVisibilityConverter.cs -------------------------------------------------------------------------------- /Source-branch/Framework.UI/Converters/InverseBoolConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI/Converters/InverseBoolConverter.cs -------------------------------------------------------------------------------- /Source-branch/Framework.UI/Converters/LessThanToBoolConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI/Converters/LessThanToBoolConverter.cs -------------------------------------------------------------------------------- /Source-branch/Framework.UI/Converters/MoreThanToBoolConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI/Converters/MoreThanToBoolConverter.cs -------------------------------------------------------------------------------- /Source-branch/Framework.UI/Converters/NullToBoolConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI/Converters/NullToBoolConverter.cs -------------------------------------------------------------------------------- /Source-branch/Framework.UI/Converters/NullToVisibilityConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI/Converters/NullToVisibilityConverter.cs -------------------------------------------------------------------------------- /Source-branch/Framework.UI/Converters/StringFormatConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI/Converters/StringFormatConverter.cs -------------------------------------------------------------------------------- /Source-branch/Framework.UI/Converters/VisibilityToBoolConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI/Converters/VisibilityToBoolConverter.cs -------------------------------------------------------------------------------- /Source-branch/Framework.UI/DependencyObjectExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI/DependencyObjectExtensions.cs -------------------------------------------------------------------------------- /Source-branch/Framework.UI/DispatcherExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI/DispatcherExtensions.cs -------------------------------------------------------------------------------- /Source-branch/Framework.UI/DragAndDrop/DragCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI/DragAndDrop/DragCommand.cs -------------------------------------------------------------------------------- /Source-branch/Framework.UI/DragAndDrop/DragManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI/DragAndDrop/DragManager.cs -------------------------------------------------------------------------------- /Source-branch/Framework.UI/DragAndDrop/DragViewer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI/DragAndDrop/DragViewer.cs -------------------------------------------------------------------------------- /Source-branch/Framework.UI/Framework.UI.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI/Framework.UI.csproj -------------------------------------------------------------------------------- /Source-branch/Framework.UI/Input/AsyncCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI/Input/AsyncCommand.cs -------------------------------------------------------------------------------- /Source-branch/Framework.UI/Input/AsyncCommandT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI/Input/AsyncCommandT.cs -------------------------------------------------------------------------------- /Source-branch/Framework.UI/Input/AsyncDelegateCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI/Input/AsyncDelegateCommand.cs -------------------------------------------------------------------------------- /Source-branch/Framework.UI/Input/AsyncDelegateCommandT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI/Input/AsyncDelegateCommandT.cs -------------------------------------------------------------------------------- /Source-branch/Framework.UI/Input/Command.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI/Input/Command.cs -------------------------------------------------------------------------------- /Source-branch/Framework.UI/Input/CommandBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI/Input/CommandBase.cs -------------------------------------------------------------------------------- /Source-branch/Framework.UI/Input/CommandT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI/Input/CommandT.cs -------------------------------------------------------------------------------- /Source-branch/Framework.UI/Input/DelegateCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI/Input/DelegateCommand.cs -------------------------------------------------------------------------------- /Source-branch/Framework.UI/Input/DelegateCommandT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI/Input/DelegateCommandT.cs -------------------------------------------------------------------------------- /Source-branch/Framework.UI/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Source-branch/Framework.UI/Themes/Elysium/CommandButton.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI/Themes/Elysium/CommandButton.xaml -------------------------------------------------------------------------------- /Source-branch/Framework.UI/Themes/Elysium/ToggleCommandButton.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI/Themes/Elysium/ToggleCommandButton.xaml -------------------------------------------------------------------------------- /Source-branch/Framework.UI/Themes/Elysium/ToggleSwitch.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI/Themes/Elysium/ToggleSwitch.xaml -------------------------------------------------------------------------------- /Source-branch/Framework.UI/Themes/ElysiumExtra/Accordion.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI/Themes/ElysiumExtra/Accordion.xaml -------------------------------------------------------------------------------- /Source-branch/Framework.UI/Themes/ElysiumExtra/ButtonTextBox.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI/Themes/ElysiumExtra/ButtonTextBox.xaml -------------------------------------------------------------------------------- /Source-branch/Framework.UI/Themes/ElysiumExtra/ComboDataGrid.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI/Themes/ElysiumExtra/ComboDataGrid.xaml -------------------------------------------------------------------------------- /Source-branch/Framework.UI/Themes/ElysiumExtra/ElasticPicker.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI/Themes/ElysiumExtra/ElasticPicker.xaml -------------------------------------------------------------------------------- /Source-branch/Framework.UI/Themes/ElysiumExtra/ExpanderMenu.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI/Themes/ElysiumExtra/ExpanderMenu.xaml -------------------------------------------------------------------------------- /Source-branch/Framework.UI/Themes/ElysiumExtra/FlipControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI/Themes/ElysiumExtra/FlipControl.xaml -------------------------------------------------------------------------------- /Source-branch/Framework.UI/Themes/ElysiumExtra/GeometryIcon.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI/Themes/ElysiumExtra/GeometryIcon.xaml -------------------------------------------------------------------------------- /Source-branch/Framework.UI/Themes/ElysiumExtra/Icon.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI/Themes/ElysiumExtra/Icon.xaml -------------------------------------------------------------------------------- /Source-branch/Framework.UI/Themes/ElysiumExtra/LoadingContent.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI/Themes/ElysiumExtra/LoadingContent.xaml -------------------------------------------------------------------------------- /Source-branch/Framework.UI/Themes/ElysiumExtra/MessageDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI/Themes/ElysiumExtra/MessageDialog.xaml -------------------------------------------------------------------------------- /Source-branch/Framework.UI/Themes/ElysiumExtra/NotesListBox.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI/Themes/ElysiumExtra/NotesListBox.xaml -------------------------------------------------------------------------------- /Source-branch/Framework.UI/Themes/ElysiumExtra/NumericUpDown.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI/Themes/ElysiumExtra/NumericUpDown.xaml -------------------------------------------------------------------------------- /Source-branch/Framework.UI/Themes/ElysiumExtra/Watermark.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI/Themes/ElysiumExtra/Watermark.xaml -------------------------------------------------------------------------------- /Source-branch/Framework.UI/Themes/ElysiumExtra/Wizard.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI/Themes/ElysiumExtra/Wizard.xaml -------------------------------------------------------------------------------- /Source-branch/Framework.UI/Themes/Generic.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI/Themes/Generic.xaml -------------------------------------------------------------------------------- /Source-branch/Framework.UI/Themes/WPF/Base/Border.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI/Themes/WPF/Base/Border.xaml -------------------------------------------------------------------------------- /Source-branch/Framework.UI/Themes/WPF/Base/Brush.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI/Themes/WPF/Base/Brush.xaml -------------------------------------------------------------------------------- /Source-branch/Framework.UI/Themes/WPF/Base/Color.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI/Themes/WPF/Base/Color.xaml -------------------------------------------------------------------------------- /Source-branch/Framework.UI/Themes/WPF/Base/Converter.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI/Themes/WPF/Base/Converter.xaml -------------------------------------------------------------------------------- /Source-branch/Framework.UI/Themes/WPF/Base/DrawingImage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI/Themes/WPF/Base/DrawingImage.xaml -------------------------------------------------------------------------------- /Source-branch/Framework.UI/Themes/WPF/Base/FocusVisualStyle.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI/Themes/WPF/Base/FocusVisualStyle.xaml -------------------------------------------------------------------------------- /Source-branch/Framework.UI/Themes/WPF/Base/Geometry.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI/Themes/WPF/Base/Geometry.xaml -------------------------------------------------------------------------------- /Source-branch/Framework.UI/Themes/WPF/Base/GroupStyle.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI/Themes/WPF/Base/GroupStyle.xaml -------------------------------------------------------------------------------- /Source-branch/Framework.UI/Themes/WPF/Base/Icon.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI/Themes/WPF/Base/Icon.xaml -------------------------------------------------------------------------------- /Source-branch/Framework.UI/Themes/WPF/Base/Validation.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI/Themes/WPF/Base/Validation.xaml -------------------------------------------------------------------------------- /Source-branch/Framework.UI/Themes/WPF/Controls/Button.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI/Themes/WPF/Controls/Button.xaml -------------------------------------------------------------------------------- /Source-branch/Framework.UI/Themes/WPF/Controls/Calendar.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI/Themes/WPF/Controls/Calendar.xaml -------------------------------------------------------------------------------- /Source-branch/Framework.UI/Themes/WPF/Controls/CheckBox.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI/Themes/WPF/Controls/CheckBox.xaml -------------------------------------------------------------------------------- /Source-branch/Framework.UI/Themes/WPF/Controls/ComboBox.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI/Themes/WPF/Controls/ComboBox.xaml -------------------------------------------------------------------------------- /Source-branch/Framework.UI/Themes/WPF/Controls/ComboBoxItem.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI/Themes/WPF/Controls/ComboBoxItem.xaml -------------------------------------------------------------------------------- /Source-branch/Framework.UI/Themes/WPF/Controls/ContentControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI/Themes/WPF/Controls/ContentControl.xaml -------------------------------------------------------------------------------- /Source-branch/Framework.UI/Themes/WPF/Controls/DataGrid.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI/Themes/WPF/Controls/DataGrid.xaml -------------------------------------------------------------------------------- /Source-branch/Framework.UI/Themes/WPF/Controls/DatePicker.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI/Themes/WPF/Controls/DatePicker.xaml -------------------------------------------------------------------------------- /Source-branch/Framework.UI/Themes/WPF/Controls/Expander.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI/Themes/WPF/Controls/Expander.xaml -------------------------------------------------------------------------------- /Source-branch/Framework.UI/Themes/WPF/Controls/GridSplitter.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI/Themes/WPF/Controls/GridSplitter.xaml -------------------------------------------------------------------------------- /Source-branch/Framework.UI/Themes/WPF/Controls/Hyperlink.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI/Themes/WPF/Controls/Hyperlink.xaml -------------------------------------------------------------------------------- /Source-branch/Framework.UI/Themes/WPF/Controls/ItemsControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI/Themes/WPF/Controls/ItemsControl.xaml -------------------------------------------------------------------------------- /Source-branch/Framework.UI/Themes/WPF/Controls/Label.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI/Themes/WPF/Controls/Label.xaml -------------------------------------------------------------------------------- /Source-branch/Framework.UI/Themes/WPF/Controls/ListBox.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI/Themes/WPF/Controls/ListBox.xaml -------------------------------------------------------------------------------- /Source-branch/Framework.UI/Themes/WPF/Controls/ListBoxItem.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI/Themes/WPF/Controls/ListBoxItem.xaml -------------------------------------------------------------------------------- /Source-branch/Framework.UI/Themes/WPF/Controls/MenuItem.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI/Themes/WPF/Controls/MenuItem.xaml -------------------------------------------------------------------------------- /Source-branch/Framework.UI/Themes/WPF/Controls/RadioButton.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI/Themes/WPF/Controls/RadioButton.xaml -------------------------------------------------------------------------------- /Source-branch/Framework.UI/Themes/WPF/Controls/RepeatButton.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI/Themes/WPF/Controls/RepeatButton.xaml -------------------------------------------------------------------------------- /Source-branch/Framework.UI/Themes/WPF/Controls/ScrollBar.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI/Themes/WPF/Controls/ScrollBar.xaml -------------------------------------------------------------------------------- /Source-branch/Framework.UI/Themes/WPF/Controls/ScrollViewer.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI/Themes/WPF/Controls/ScrollViewer.xaml -------------------------------------------------------------------------------- /Source-branch/Framework.UI/Themes/WPF/Controls/Separator.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI/Themes/WPF/Controls/Separator.xaml -------------------------------------------------------------------------------- /Source-branch/Framework.UI/Themes/WPF/Controls/Slider.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI/Themes/WPF/Controls/Slider.xaml -------------------------------------------------------------------------------- /Source-branch/Framework.UI/Themes/WPF/Controls/TabControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI/Themes/WPF/Controls/TabControl.xaml -------------------------------------------------------------------------------- /Source-branch/Framework.UI/Themes/WPF/Controls/TabItem.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI/Themes/WPF/Controls/TabItem.xaml -------------------------------------------------------------------------------- /Source-branch/Framework.UI/Themes/WPF/Controls/TextBlock.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI/Themes/WPF/Controls/TextBlock.xaml -------------------------------------------------------------------------------- /Source-branch/Framework.UI/Themes/WPF/Controls/TextBox.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI/Themes/WPF/Controls/TextBox.xaml -------------------------------------------------------------------------------- /Source-branch/Framework.UI/Themes/WPF/Controls/ToggleButton.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI/Themes/WPF/Controls/ToggleButton.xaml -------------------------------------------------------------------------------- /Source-branch/Framework.UI/Themes/WPF/Controls/TreeView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI/Themes/WPF/Controls/TreeView.xaml -------------------------------------------------------------------------------- /Source-branch/Framework.UI/Themes/WPF/Controls/TreeViewItem.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI/Themes/WPF/Controls/TreeViewItem.xaml -------------------------------------------------------------------------------- /Source-branch/Framework.UI/Themes/WPF/Controls/Window.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI/Themes/WPF/Controls/Window.xaml -------------------------------------------------------------------------------- /Source-branch/Framework.UI/VisualTreeHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI/VisualTreeHelpers.cs -------------------------------------------------------------------------------- /Source-branch/Framework.UI/WeakEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI/WeakEvent.cs -------------------------------------------------------------------------------- /Source-branch/Framework.UI/XamlHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI/XamlHelper.cs -------------------------------------------------------------------------------- /Source-branch/Framework.UI/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework.UI/packages.config -------------------------------------------------------------------------------- /Source-branch/Framework/CharacterSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework/CharacterSet.cs -------------------------------------------------------------------------------- /Source-branch/Framework/Collections/CollectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework/Collections/CollectionExtensions.cs -------------------------------------------------------------------------------- /Source-branch/Framework/Collections/EnumerableExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework/Collections/EnumerableExtensions.cs -------------------------------------------------------------------------------- /Source-branch/Framework/Collections/TraverseKind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework/Collections/TraverseKind.cs -------------------------------------------------------------------------------- /Source-branch/Framework/ComponentModel/Cloneable/ICloneableT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework/ComponentModel/Cloneable/ICloneableT.cs -------------------------------------------------------------------------------- /Source-branch/Framework/ComponentModel/Disposable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework/ComponentModel/Disposable.cs -------------------------------------------------------------------------------- /Source-branch/Framework/ComponentModel/EditableObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework/ComponentModel/EditableObject.cs -------------------------------------------------------------------------------- /Source-branch/Framework/ComponentModel/NotifyDataErrorInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework/ComponentModel/NotifyDataErrorInfo.cs -------------------------------------------------------------------------------- /Source-branch/Framework/ComponentModel/NotifyPropertyChanges.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework/ComponentModel/NotifyPropertyChanges.cs -------------------------------------------------------------------------------- /Source-branch/Framework/ComponentModel/RevertibleChangeTracking.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework/ComponentModel/RevertibleChangeTracking.cs -------------------------------------------------------------------------------- /Source-branch/Framework/ComponentModel/Rules/DelegateRule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework/ComponentModel/Rules/DelegateRule.cs -------------------------------------------------------------------------------- /Source-branch/Framework/ComponentModel/Rules/Rule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework/ComponentModel/Rules/Rule.cs -------------------------------------------------------------------------------- /Source-branch/Framework/ComponentModel/Rules/RuleCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework/ComponentModel/Rules/RuleCollection.cs -------------------------------------------------------------------------------- /Source-branch/Framework/Framework.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework/Framework.csproj -------------------------------------------------------------------------------- /Source-branch/Framework/Guard/Guard.AreEqual.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework/Guard/Guard.AreEqual.cs -------------------------------------------------------------------------------- /Source-branch/Framework/Guard/Guard.AreNotEqual.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework/Guard/Guard.AreNotEqual.cs -------------------------------------------------------------------------------- /Source-branch/Framework/Guard/Guard.ContainsCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework/Guard/Guard.ContainsCollection.cs -------------------------------------------------------------------------------- /Source-branch/Framework/Guard/Guard.ContainsString.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework/Guard/Guard.ContainsString.cs -------------------------------------------------------------------------------- /Source-branch/Framework/Guard/Guard.DoesNotContainCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework/Guard/Guard.DoesNotContainCollection.cs -------------------------------------------------------------------------------- /Source-branch/Framework/Guard/Guard.DoesNotContainString.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework/Guard/Guard.DoesNotContainString.cs -------------------------------------------------------------------------------- /Source-branch/Framework/Guard/Guard.EndsWith.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework/Guard/Guard.EndsWith.cs -------------------------------------------------------------------------------- /Source-branch/Framework/Guard/Guard.IsInstanceOfType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework/Guard/Guard.IsInstanceOfType.cs -------------------------------------------------------------------------------- /Source-branch/Framework/Guard/Guard.IsLessThan.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework/Guard/Guard.IsLessThan.cs -------------------------------------------------------------------------------- /Source-branch/Framework/Guard/Guard.IsLessThanOrEqualTo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework/Guard/Guard.IsLessThanOrEqualTo.cs -------------------------------------------------------------------------------- /Source-branch/Framework/Guard/Guard.IsMatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework/Guard/Guard.IsMatch.cs -------------------------------------------------------------------------------- /Source-branch/Framework/Guard/Guard.IsMoreThan.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework/Guard/Guard.IsMoreThan.cs -------------------------------------------------------------------------------- /Source-branch/Framework/Guard/Guard.IsMoreThanOrEqualTo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework/Guard/Guard.IsMoreThanOrEqualTo.cs -------------------------------------------------------------------------------- /Source-branch/Framework/Guard/Guard.IsNotInstanceOfType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework/Guard/Guard.IsNotInstanceOfType.cs -------------------------------------------------------------------------------- /Source-branch/Framework/Guard/Guard.IsNotNull.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework/Guard/Guard.IsNotNull.cs -------------------------------------------------------------------------------- /Source-branch/Framework/Guard/Guard.IsNotNullOrEmptyCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework/Guard/Guard.IsNotNullOrEmptyCollection.cs -------------------------------------------------------------------------------- /Source-branch/Framework/Guard/Guard.IsNotNullOrEmptyString.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework/Guard/Guard.IsNotNullOrEmptyString.cs -------------------------------------------------------------------------------- /Source-branch/Framework/Guard/Guard.IsNotNullOrWhiteSpace.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework/Guard/Guard.IsNotNullOrWhiteSpace.cs -------------------------------------------------------------------------------- /Source-branch/Framework/Guard/Guard.IsTrue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework/Guard/Guard.IsTrue.cs -------------------------------------------------------------------------------- /Source-branch/Framework/Guard/Guard.StartsWith.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework/Guard/Guard.StartsWith.cs -------------------------------------------------------------------------------- /Source-branch/Framework/Guard/Guard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework/Guard/Guard.cs -------------------------------------------------------------------------------- /Source-branch/Framework/Guard/Parameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework/Guard/Parameter.cs -------------------------------------------------------------------------------- /Source-branch/Framework/IO/Streams.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework/IO/Streams.cs -------------------------------------------------------------------------------- /Source-branch/Framework/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Source-branch/Framework/RandomExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework/RandomExtensions.cs -------------------------------------------------------------------------------- /Source-branch/Framework/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source-branch/Framework/packages.config -------------------------------------------------------------------------------- /Source/Framework.UI.TestHarness/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI.TestHarness/App.config -------------------------------------------------------------------------------- /Source/Framework.UI.TestHarness/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI.TestHarness/App.xaml -------------------------------------------------------------------------------- /Source/Framework.UI.TestHarness/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI.TestHarness/App.xaml.cs -------------------------------------------------------------------------------- /Source/Framework.UI.TestHarness/Assets/Background1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI.TestHarness/Assets/Background1.jpg -------------------------------------------------------------------------------- /Source/Framework.UI.TestHarness/Assets/Background2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI.TestHarness/Assets/Background2.jpg -------------------------------------------------------------------------------- /Source/Framework.UI.TestHarness/Assets/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI.TestHarness/Assets/Icon.png -------------------------------------------------------------------------------- /Source/Framework.UI.TestHarness/Assets/IconColourSystem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI.TestHarness/Assets/IconColourSystem.png -------------------------------------------------------------------------------- /Source/Framework.UI.TestHarness/Framework.UI.TestHarness.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI.TestHarness/Framework.UI.TestHarness.csproj -------------------------------------------------------------------------------- /Source/Framework.UI.TestHarness/MainView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI.TestHarness/MainView.xaml -------------------------------------------------------------------------------- /Source/Framework.UI.TestHarness/MainView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI.TestHarness/MainView.xaml.cs -------------------------------------------------------------------------------- /Source/Framework.UI.TestHarness/Models/Fund.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI.TestHarness/Models/Fund.cs -------------------------------------------------------------------------------- /Source/Framework.UI.TestHarness/Models/FundCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI.TestHarness/Models/FundCollection.cs -------------------------------------------------------------------------------- /Source/Framework.UI.TestHarness/Models/Person.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI.TestHarness/Models/Person.cs -------------------------------------------------------------------------------- /Source/Framework.UI.TestHarness/Models/PersonCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI.TestHarness/Models/PersonCollection.cs -------------------------------------------------------------------------------- /Source/Framework.UI.TestHarness/Models/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI.TestHarness/Models/Settings.Designer.cs -------------------------------------------------------------------------------- /Source/Framework.UI.TestHarness/Models/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI.TestHarness/Models/Settings.settings -------------------------------------------------------------------------------- /Source/Framework.UI.TestHarness/Models/WizardViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI.TestHarness/Models/WizardViewModel.cs -------------------------------------------------------------------------------- /Source/Framework.UI.TestHarness/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI.TestHarness/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Source/Framework.UI.TestHarness/ViewModels/ColoursViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI.TestHarness/ViewModels/ColoursViewModel.cs -------------------------------------------------------------------------------- /Source/Framework.UI.TestHarness/ViewModels/CommandsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI.TestHarness/ViewModels/CommandsViewModel.cs -------------------------------------------------------------------------------- /Source/Framework.UI.TestHarness/ViewModels/DataGridViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI.TestHarness/ViewModels/DataGridViewModel.cs -------------------------------------------------------------------------------- /Source/Framework.UI.TestHarness/ViewModels/DragAndDropViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI.TestHarness/ViewModels/DragAndDropViewModel.cs -------------------------------------------------------------------------------- /Source/Framework.UI.TestHarness/ViewModels/IconViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI.TestHarness/ViewModels/IconViewModel.cs -------------------------------------------------------------------------------- /Source/Framework.UI.TestHarness/ViewModels/InputViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI.TestHarness/ViewModels/InputViewModel.cs -------------------------------------------------------------------------------- /Source/Framework.UI.TestHarness/ViewModels/ListBoxViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI.TestHarness/ViewModels/ListBoxViewModel.cs -------------------------------------------------------------------------------- /Source/Framework.UI.TestHarness/ViewModels/MenuItemViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI.TestHarness/ViewModels/MenuItemViewModel.cs -------------------------------------------------------------------------------- /Source/Framework.UI.TestHarness/ViewModels/StyleViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI.TestHarness/ViewModels/StyleViewModel.cs -------------------------------------------------------------------------------- /Source/Framework.UI.TestHarness/ViewModels/ValidationViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI.TestHarness/ViewModels/ValidationViewModel.cs -------------------------------------------------------------------------------- /Source/Framework.UI.TestHarness/ViewModels/WizardViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI.TestHarness/ViewModels/WizardViewModel.cs -------------------------------------------------------------------------------- /Source/Framework.UI.TestHarness/Views/AnimationView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI.TestHarness/Views/AnimationView.xaml -------------------------------------------------------------------------------- /Source/Framework.UI.TestHarness/Views/AnimationView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI.TestHarness/Views/AnimationView.xaml.cs -------------------------------------------------------------------------------- /Source/Framework.UI.TestHarness/Views/AppBarView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI.TestHarness/Views/AppBarView.xaml -------------------------------------------------------------------------------- /Source/Framework.UI.TestHarness/Views/AppBarView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI.TestHarness/Views/AppBarView.xaml.cs -------------------------------------------------------------------------------- /Source/Framework.UI.TestHarness/Views/BackgroundView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI.TestHarness/Views/BackgroundView.xaml -------------------------------------------------------------------------------- /Source/Framework.UI.TestHarness/Views/BackgroundView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI.TestHarness/Views/BackgroundView.xaml.cs -------------------------------------------------------------------------------- /Source/Framework.UI.TestHarness/Views/BordersView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI.TestHarness/Views/BordersView.xaml -------------------------------------------------------------------------------- /Source/Framework.UI.TestHarness/Views/BordersView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI.TestHarness/Views/BordersView.xaml.cs -------------------------------------------------------------------------------- /Source/Framework.UI.TestHarness/Views/ButtonsView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI.TestHarness/Views/ButtonsView.xaml -------------------------------------------------------------------------------- /Source/Framework.UI.TestHarness/Views/ButtonsView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI.TestHarness/Views/ButtonsView.xaml.cs -------------------------------------------------------------------------------- /Source/Framework.UI.TestHarness/Views/ColoursView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI.TestHarness/Views/ColoursView.xaml -------------------------------------------------------------------------------- /Source/Framework.UI.TestHarness/Views/ColoursView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI.TestHarness/Views/ColoursView.xaml.cs -------------------------------------------------------------------------------- /Source/Framework.UI.TestHarness/Views/CommandsView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI.TestHarness/Views/CommandsView.xaml -------------------------------------------------------------------------------- /Source/Framework.UI.TestHarness/Views/CommandsView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI.TestHarness/Views/CommandsView.xaml.cs -------------------------------------------------------------------------------- /Source/Framework.UI.TestHarness/Views/ConvertersView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI.TestHarness/Views/ConvertersView.xaml -------------------------------------------------------------------------------- /Source/Framework.UI.TestHarness/Views/ConvertersView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI.TestHarness/Views/ConvertersView.xaml.cs -------------------------------------------------------------------------------- /Source/Framework.UI.TestHarness/Views/DataGridView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI.TestHarness/Views/DataGridView.xaml -------------------------------------------------------------------------------- /Source/Framework.UI.TestHarness/Views/DataGridView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI.TestHarness/Views/DataGridView.xaml.cs -------------------------------------------------------------------------------- /Source/Framework.UI.TestHarness/Views/DragAndDropView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI.TestHarness/Views/DragAndDropView.xaml -------------------------------------------------------------------------------- /Source/Framework.UI.TestHarness/Views/DragAndDropView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI.TestHarness/Views/DragAndDropView.xaml.cs -------------------------------------------------------------------------------- /Source/Framework.UI.TestHarness/Views/ElasticPickerView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI.TestHarness/Views/ElasticPickerView.xaml -------------------------------------------------------------------------------- /Source/Framework.UI.TestHarness/Views/ElasticPickerView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI.TestHarness/Views/ElasticPickerView.xaml.cs -------------------------------------------------------------------------------- /Source/Framework.UI.TestHarness/Views/ElysiumView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI.TestHarness/Views/ElysiumView.xaml -------------------------------------------------------------------------------- /Source/Framework.UI.TestHarness/Views/ElysiumView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI.TestHarness/Views/ElysiumView.xaml.cs -------------------------------------------------------------------------------- /Source/Framework.UI.TestHarness/Views/ExpanderMenuView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI.TestHarness/Views/ExpanderMenuView.xaml -------------------------------------------------------------------------------- /Source/Framework.UI.TestHarness/Views/ExpanderMenuView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI.TestHarness/Views/ExpanderMenuView.xaml.cs -------------------------------------------------------------------------------- /Source/Framework.UI.TestHarness/Views/ExpandersView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI.TestHarness/Views/ExpandersView.xaml -------------------------------------------------------------------------------- /Source/Framework.UI.TestHarness/Views/ExpandersView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI.TestHarness/Views/ExpandersView.xaml.cs -------------------------------------------------------------------------------- /Source/Framework.UI.TestHarness/Views/FlipControlView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI.TestHarness/Views/FlipControlView.xaml -------------------------------------------------------------------------------- /Source/Framework.UI.TestHarness/Views/FlipControlView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI.TestHarness/Views/FlipControlView.xaml.cs -------------------------------------------------------------------------------- /Source/Framework.UI.TestHarness/Views/FlyoutView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI.TestHarness/Views/FlyoutView.xaml -------------------------------------------------------------------------------- /Source/Framework.UI.TestHarness/Views/FlyoutView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI.TestHarness/Views/FlyoutView.xaml.cs -------------------------------------------------------------------------------- /Source/Framework.UI.TestHarness/Views/FocusVisualStyleView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI.TestHarness/Views/FocusVisualStyleView.xaml -------------------------------------------------------------------------------- /Source/Framework.UI.TestHarness/Views/FocusVisualStyleView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI.TestHarness/Views/FocusVisualStyleView.xaml.cs -------------------------------------------------------------------------------- /Source/Framework.UI.TestHarness/Views/IconsView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI.TestHarness/Views/IconsView.xaml -------------------------------------------------------------------------------- /Source/Framework.UI.TestHarness/Views/IconsView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI.TestHarness/Views/IconsView.xaml.cs -------------------------------------------------------------------------------- /Source/Framework.UI.TestHarness/Views/InputView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI.TestHarness/Views/InputView.xaml -------------------------------------------------------------------------------- /Source/Framework.UI.TestHarness/Views/InputView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI.TestHarness/Views/InputView.xaml.cs -------------------------------------------------------------------------------- /Source/Framework.UI.TestHarness/Views/ListBoxView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI.TestHarness/Views/ListBoxView.xaml -------------------------------------------------------------------------------- /Source/Framework.UI.TestHarness/Views/ListBoxView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI.TestHarness/Views/ListBoxView.xaml.cs -------------------------------------------------------------------------------- /Source/Framework.UI.TestHarness/Views/ListViewView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI.TestHarness/Views/ListViewView.xaml -------------------------------------------------------------------------------- /Source/Framework.UI.TestHarness/Views/ListViewView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI.TestHarness/Views/ListViewView.xaml.cs -------------------------------------------------------------------------------- /Source/Framework.UI.TestHarness/Views/MenuItemView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI.TestHarness/Views/MenuItemView.xaml -------------------------------------------------------------------------------- /Source/Framework.UI.TestHarness/Views/MenuItemView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI.TestHarness/Views/MenuItemView.xaml.cs -------------------------------------------------------------------------------- /Source/Framework.UI.TestHarness/Views/MessageDialogView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI.TestHarness/Views/MessageDialogView.xaml -------------------------------------------------------------------------------- /Source/Framework.UI.TestHarness/Views/MessageDialogView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI.TestHarness/Views/MessageDialogView.xaml.cs -------------------------------------------------------------------------------- /Source/Framework.UI.TestHarness/Views/NotifyBoxView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI.TestHarness/Views/NotifyBoxView.xaml -------------------------------------------------------------------------------- /Source/Framework.UI.TestHarness/Views/NotifyBoxView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI.TestHarness/Views/NotifyBoxView.xaml.cs -------------------------------------------------------------------------------- /Source/Framework.UI.TestHarness/Views/OverlayWindowExample.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI.TestHarness/Views/OverlayWindowExample.xaml -------------------------------------------------------------------------------- /Source/Framework.UI.TestHarness/Views/OverlayWindowExample.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI.TestHarness/Views/OverlayWindowExample.xaml.cs -------------------------------------------------------------------------------- /Source/Framework.UI.TestHarness/Views/OverlayWindowView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI.TestHarness/Views/OverlayWindowView.xaml -------------------------------------------------------------------------------- /Source/Framework.UI.TestHarness/Views/OverlayWindowView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI.TestHarness/Views/OverlayWindowView.xaml.cs -------------------------------------------------------------------------------- /Source/Framework.UI.TestHarness/Views/PagingView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI.TestHarness/Views/PagingView.xaml -------------------------------------------------------------------------------- /Source/Framework.UI.TestHarness/Views/PagingView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI.TestHarness/Views/PagingView.xaml.cs -------------------------------------------------------------------------------- /Source/Framework.UI.TestHarness/Views/PanelsView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI.TestHarness/Views/PanelsView.xaml -------------------------------------------------------------------------------- /Source/Framework.UI.TestHarness/Views/PanelsView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI.TestHarness/Views/PanelsView.xaml.cs -------------------------------------------------------------------------------- /Source/Framework.UI.TestHarness/Views/PopupsView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI.TestHarness/Views/PopupsView.xaml -------------------------------------------------------------------------------- /Source/Framework.UI.TestHarness/Views/PopupsView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI.TestHarness/Views/PopupsView.xaml.cs -------------------------------------------------------------------------------- /Source/Framework.UI.TestHarness/Views/PracticesView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI.TestHarness/Views/PracticesView.xaml -------------------------------------------------------------------------------- /Source/Framework.UI.TestHarness/Views/PracticesView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI.TestHarness/Views/PracticesView.xaml.cs -------------------------------------------------------------------------------- /Source/Framework.UI.TestHarness/Views/ProgressView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI.TestHarness/Views/ProgressView.xaml -------------------------------------------------------------------------------- /Source/Framework.UI.TestHarness/Views/ProgressView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI.TestHarness/Views/ProgressView.xaml.cs -------------------------------------------------------------------------------- /Source/Framework.UI.TestHarness/Views/ScrollView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI.TestHarness/Views/ScrollView.xaml -------------------------------------------------------------------------------- /Source/Framework.UI.TestHarness/Views/ScrollView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI.TestHarness/Views/ScrollView.xaml.cs -------------------------------------------------------------------------------- /Source/Framework.UI.TestHarness/Views/SeperatorsView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI.TestHarness/Views/SeperatorsView.xaml -------------------------------------------------------------------------------- /Source/Framework.UI.TestHarness/Views/SeperatorsView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI.TestHarness/Views/SeperatorsView.xaml.cs -------------------------------------------------------------------------------- /Source/Framework.UI.TestHarness/Views/TextView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI.TestHarness/Views/TextView.xaml -------------------------------------------------------------------------------- /Source/Framework.UI.TestHarness/Views/TextView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI.TestHarness/Views/TextView.xaml.cs -------------------------------------------------------------------------------- /Source/Framework.UI.TestHarness/Views/ThemeView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI.TestHarness/Views/ThemeView.xaml -------------------------------------------------------------------------------- /Source/Framework.UI.TestHarness/Views/ThemeView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI.TestHarness/Views/ThemeView.xaml.cs -------------------------------------------------------------------------------- /Source/Framework.UI.TestHarness/Views/ThicknessView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI.TestHarness/Views/ThicknessView.xaml -------------------------------------------------------------------------------- /Source/Framework.UI.TestHarness/Views/ThicknessView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI.TestHarness/Views/ThicknessView.xaml.cs -------------------------------------------------------------------------------- /Source/Framework.UI.TestHarness/Views/ToolTipsView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI.TestHarness/Views/ToolTipsView.xaml -------------------------------------------------------------------------------- /Source/Framework.UI.TestHarness/Views/ToolTipsView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI.TestHarness/Views/ToolTipsView.xaml.cs -------------------------------------------------------------------------------- /Source/Framework.UI.TestHarness/Views/TreeViewView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI.TestHarness/Views/TreeViewView.xaml -------------------------------------------------------------------------------- /Source/Framework.UI.TestHarness/Views/TreeViewView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI.TestHarness/Views/TreeViewView.xaml.cs -------------------------------------------------------------------------------- /Source/Framework.UI.TestHarness/Views/ValidationView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI.TestHarness/Views/ValidationView.xaml -------------------------------------------------------------------------------- /Source/Framework.UI.TestHarness/Views/ValidationView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI.TestHarness/Views/ValidationView.xaml.cs -------------------------------------------------------------------------------- /Source/Framework.UI.TestHarness/Views/WebBrowserView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI.TestHarness/Views/WebBrowserView.xaml -------------------------------------------------------------------------------- /Source/Framework.UI.TestHarness/Views/WebBrowserView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI.TestHarness/Views/WebBrowserView.xaml.cs -------------------------------------------------------------------------------- /Source/Framework.UI.TestHarness/Views/WindowView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI.TestHarness/Views/WindowView.xaml -------------------------------------------------------------------------------- /Source/Framework.UI.TestHarness/Views/WindowView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI.TestHarness/Views/WindowView.xaml.cs -------------------------------------------------------------------------------- /Source/Framework.UI.TestHarness/Views/WizardView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI.TestHarness/Views/WizardView.xaml -------------------------------------------------------------------------------- /Source/Framework.UI.TestHarness/Views/WizardView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI.TestHarness/Views/WizardView.xaml.cs -------------------------------------------------------------------------------- /Source/Framework.UI.TestHarness/Windows/ElysiumView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI.TestHarness/Windows/ElysiumView.xaml -------------------------------------------------------------------------------- /Source/Framework.UI.TestHarness/Windows/ElysiumView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI.TestHarness/Windows/ElysiumView.xaml.cs -------------------------------------------------------------------------------- /Source/Framework.UI.TestHarness/Windows/StylesView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI.TestHarness/Windows/StylesView.xaml -------------------------------------------------------------------------------- /Source/Framework.UI.TestHarness/Windows/StylesView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI.TestHarness/Windows/StylesView.xaml.cs -------------------------------------------------------------------------------- /Source/Framework.UI.TestHarness/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI.TestHarness/packages.config -------------------------------------------------------------------------------- /Source/Framework.UI/Assets/Divider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/Assets/Divider.png -------------------------------------------------------------------------------- /Source/Framework.UI/BindingBaseExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/BindingBaseExtensions.cs -------------------------------------------------------------------------------- /Source/Framework.UI/Commands/CommandBinding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/Commands/CommandBinding.cs -------------------------------------------------------------------------------- /Source/Framework.UI/Commands/CommandBindingCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/Commands/CommandBindingCollection.cs -------------------------------------------------------------------------------- /Source/Framework.UI/Commands/EventCommand.CommandBindings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/Commands/EventCommand.CommandBindings.cs -------------------------------------------------------------------------------- /Source/Framework.UI/Commands/EventCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/Commands/EventCommand.cs -------------------------------------------------------------------------------- /Source/Framework.UI/Commands/Internal/ActionExecutionStrategy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/Commands/Internal/ActionExecutionStrategy.cs -------------------------------------------------------------------------------- /Source/Framework.UI/Commands/Internal/CommandBehaviorBinding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/Commands/Internal/CommandBehaviorBinding.cs -------------------------------------------------------------------------------- /Source/Framework.UI/Commands/Internal/CommandExecutionStrategy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/Commands/Internal/CommandExecutionStrategy.cs -------------------------------------------------------------------------------- /Source/Framework.UI/Commands/Internal/EventHandlerGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/Commands/Internal/EventHandlerGenerator.cs -------------------------------------------------------------------------------- /Source/Framework.UI/Commands/Internal/IExecutionStrategy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/Commands/Internal/IExecutionStrategy.cs -------------------------------------------------------------------------------- /Source/Framework.UI/Commands/KeyCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/Commands/KeyCommand.cs -------------------------------------------------------------------------------- /Source/Framework.UI/Controls/Accordion/Accordion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/Controls/Accordion/Accordion.cs -------------------------------------------------------------------------------- /Source/Framework.UI/Controls/Accordion/AccordionAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/Controls/Accordion/AccordionAction.cs -------------------------------------------------------------------------------- /Source/Framework.UI/Controls/Accordion/AccordionItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/Controls/Accordion/AccordionItem.cs -------------------------------------------------------------------------------- /Source/Framework.UI/Controls/Accordion/AccordionResources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/Controls/Accordion/AccordionResources.resx -------------------------------------------------------------------------------- /Source/Framework.UI/Controls/Accordion/AccordionSelectionMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/Controls/Accordion/AccordionSelectionMode.cs -------------------------------------------------------------------------------- /Source/Framework.UI/Controls/Accordion/IUpdateVisualState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/Controls/Accordion/IUpdateVisualState.cs -------------------------------------------------------------------------------- /Source/Framework.UI/Controls/Accordion/InteractionHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/Controls/Accordion/InteractionHelper.cs -------------------------------------------------------------------------------- /Source/Framework.UI/Controls/Accordion/ItemsControlHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/Controls/Accordion/ItemsControlHelper.cs -------------------------------------------------------------------------------- /Source/Framework.UI/Controls/Accordion/SelectionSequence.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/Controls/Accordion/SelectionSequence.cs -------------------------------------------------------------------------------- /Source/Framework.UI/Controls/Accordion/VisualStates.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/Controls/Accordion/VisualStates.cs -------------------------------------------------------------------------------- /Source/Framework.UI/Controls/AdornedControl/AdornedControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/Controls/AdornedControl/AdornedControl.cs -------------------------------------------------------------------------------- /Source/Framework.UI/Controls/AdornedControl/AdornerPlacement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/Controls/AdornedControl/AdornerPlacement.cs -------------------------------------------------------------------------------- /Source/Framework.UI/Controls/BorderFix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/Controls/BorderFix.cs -------------------------------------------------------------------------------- /Source/Framework.UI/Controls/Borders/ClippingBorder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/Controls/Borders/ClippingBorder.cs -------------------------------------------------------------------------------- /Source/Framework.UI/Controls/Borders/DropShadowBorder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/Controls/Borders/DropShadowBorder.cs -------------------------------------------------------------------------------- /Source/Framework.UI/Controls/Borders/GlassBorder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/Controls/Borders/GlassBorder.cs -------------------------------------------------------------------------------- /Source/Framework.UI/Controls/Borders/InnerGlowBorder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/Controls/Borders/InnerGlowBorder.cs -------------------------------------------------------------------------------- /Source/Framework.UI/Controls/Borders/OuterGlowBorder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/Controls/Borders/OuterGlowBorder.cs -------------------------------------------------------------------------------- /Source/Framework.UI/Controls/Borders/PerspectiveShadowBorder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/Controls/Borders/PerspectiveShadowBorder.cs -------------------------------------------------------------------------------- /Source/Framework.UI/Controls/Borders/RadialShadowBorder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/Controls/Borders/RadialShadowBorder.cs -------------------------------------------------------------------------------- /Source/Framework.UI/Controls/CalloutContentControl/CalloutShape.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/Controls/CalloutContentControl/CalloutShape.cs -------------------------------------------------------------------------------- /Source/Framework.UI/Controls/ComboBoxAttached.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/Controls/ComboBoxAttached.cs -------------------------------------------------------------------------------- /Source/Framework.UI/Controls/ComboDataGrid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/Controls/ComboDataGrid.cs -------------------------------------------------------------------------------- /Source/Framework.UI/Controls/DataGrid/DataGridAttached.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/Controls/DataGrid/DataGridAttached.cs -------------------------------------------------------------------------------- /Source/Framework.UI/Controls/DataGrid/DataGridColumnAttached.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/Controls/DataGrid/DataGridColumnAttached.cs -------------------------------------------------------------------------------- /Source/Framework.UI/Controls/DataGrid/DataGridColumnInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/Controls/DataGrid/DataGridColumnInfo.cs -------------------------------------------------------------------------------- /Source/Framework.UI/Controls/DataGrid/DataGridRowAttached.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/Controls/DataGrid/DataGridRowAttached.cs -------------------------------------------------------------------------------- /Source/Framework.UI/Controls/DatePickerAttached.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/Controls/DatePickerAttached.cs -------------------------------------------------------------------------------- /Source/Framework.UI/Controls/ElasticPicker/ElasticPickerGrid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/Controls/ElasticPicker/ElasticPickerGrid.cs -------------------------------------------------------------------------------- /Source/Framework.UI/Controls/ElasticPicker/Picker/ElasticGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/Controls/ElasticPicker/Picker/ElasticGroup.cs -------------------------------------------------------------------------------- /Source/Framework.UI/Controls/ElasticPicker/Picker/ElasticPicker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/Controls/ElasticPicker/Picker/ElasticPicker.cs -------------------------------------------------------------------------------- /Source/Framework.UI/Controls/ElasticPicker/Picker/ElasticView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/Controls/ElasticPicker/Picker/ElasticView.cs -------------------------------------------------------------------------------- /Source/Framework.UI/Controls/ElementProxy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/Controls/ElementProxy.cs -------------------------------------------------------------------------------- /Source/Framework.UI/Controls/ExpanderMenu/ExpanderMenu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/Controls/ExpanderMenu/ExpanderMenu.cs -------------------------------------------------------------------------------- /Source/Framework.UI/Controls/ExpanderMenu/ExpanderMenuItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/Controls/ExpanderMenu/ExpanderMenuItem.cs -------------------------------------------------------------------------------- /Source/Framework.UI/Controls/FlipControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/Controls/FlipControl.cs -------------------------------------------------------------------------------- /Source/Framework.UI/Controls/GroupStyleCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/Controls/GroupStyleCollection.cs -------------------------------------------------------------------------------- /Source/Framework.UI/Controls/Icon/Icon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/Controls/Icon/Icon.cs -------------------------------------------------------------------------------- /Source/Framework.UI/Controls/Icon/IconSize.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/Controls/Icon/IconSize.cs -------------------------------------------------------------------------------- /Source/Framework.UI/Controls/Interactivity/Behaviors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/Controls/Interactivity/Behaviors.cs -------------------------------------------------------------------------------- /Source/Framework.UI/Controls/Interactivity/FadeBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/Controls/Interactivity/FadeBehavior.cs -------------------------------------------------------------------------------- /Source/Framework.UI/Controls/Interactivity/Interactivities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/Controls/Interactivity/Interactivities.cs -------------------------------------------------------------------------------- /Source/Framework.UI/Controls/Interactivity/RotateBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/Controls/Interactivity/RotateBehavior.cs -------------------------------------------------------------------------------- /Source/Framework.UI/Controls/Interactivity/SlideBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/Controls/Interactivity/SlideBehavior.cs -------------------------------------------------------------------------------- /Source/Framework.UI/Controls/Interactivity/Triggers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/Controls/Interactivity/Triggers.cs -------------------------------------------------------------------------------- /Source/Framework.UI/Controls/ItemsControlAttached.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/Controls/ItemsControlAttached.cs -------------------------------------------------------------------------------- /Source/Framework.UI/Controls/ListBoxAttached.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/Controls/ListBoxAttached.cs -------------------------------------------------------------------------------- /Source/Framework.UI/Controls/ListBoxItemAttached.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/Controls/ListBoxItemAttached.cs -------------------------------------------------------------------------------- /Source/Framework.UI/Controls/LoadingContent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/Controls/LoadingContent.cs -------------------------------------------------------------------------------- /Source/Framework.UI/Controls/MenuItemAttached.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/Controls/MenuItemAttached.cs -------------------------------------------------------------------------------- /Source/Framework.UI/Controls/MessageDialog/MessageDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/Controls/MessageDialog/MessageDialog.cs -------------------------------------------------------------------------------- /Source/Framework.UI/Controls/MessageDialog/MessageDialogButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/Controls/MessageDialog/MessageDialogButton.cs -------------------------------------------------------------------------------- /Source/Framework.UI/Controls/MessageDialog/MessageDialogType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/Controls/MessageDialog/MessageDialogType.cs -------------------------------------------------------------------------------- /Source/Framework.UI/Controls/Notes/ListIndexConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/Controls/Notes/ListIndexConverter.cs -------------------------------------------------------------------------------- /Source/Framework.UI/Controls/Notes/NotesListBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/Controls/Notes/NotesListBox.cs -------------------------------------------------------------------------------- /Source/Framework.UI/Controls/Notes/NotesListBoxItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/Controls/Notes/NotesListBoxItem.cs -------------------------------------------------------------------------------- /Source/Framework.UI/Controls/Notes/StackCanvas.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/Controls/Notes/StackCanvas.cs -------------------------------------------------------------------------------- /Source/Framework.UI/Controls/NumericUpDown/ByteUpDown.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/Controls/NumericUpDown/ByteUpDown.cs -------------------------------------------------------------------------------- /Source/Framework.UI/Controls/NumericUpDown/CommonNumericUpDown.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/Controls/NumericUpDown/CommonNumericUpDown.cs -------------------------------------------------------------------------------- /Source/Framework.UI/Controls/NumericUpDown/DecimalUpDown.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/Controls/NumericUpDown/DecimalUpDown.cs -------------------------------------------------------------------------------- /Source/Framework.UI/Controls/NumericUpDown/DoubleUpDown.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/Controls/NumericUpDown/DoubleUpDown.cs -------------------------------------------------------------------------------- /Source/Framework.UI/Controls/NumericUpDown/IValidateInput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/Controls/NumericUpDown/IValidateInput.cs -------------------------------------------------------------------------------- /Source/Framework.UI/Controls/NumericUpDown/InputBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/Controls/NumericUpDown/InputBase.cs -------------------------------------------------------------------------------- /Source/Framework.UI/Controls/NumericUpDown/IntegerUpDown.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/Controls/NumericUpDown/IntegerUpDown.cs -------------------------------------------------------------------------------- /Source/Framework.UI/Controls/NumericUpDown/LongUpDown.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/Controls/NumericUpDown/LongUpDown.cs -------------------------------------------------------------------------------- /Source/Framework.UI/Controls/NumericUpDown/NumericUpDown.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/Controls/NumericUpDown/NumericUpDown.cs -------------------------------------------------------------------------------- /Source/Framework.UI/Controls/NumericUpDown/SByteUpDown.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/Controls/NumericUpDown/SByteUpDown.cs -------------------------------------------------------------------------------- /Source/Framework.UI/Controls/NumericUpDown/ShortUpDown.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/Controls/NumericUpDown/ShortUpDown.cs -------------------------------------------------------------------------------- /Source/Framework.UI/Controls/NumericUpDown/SingleUpDown.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/Controls/NumericUpDown/SingleUpDown.cs -------------------------------------------------------------------------------- /Source/Framework.UI/Controls/NumericUpDown/UIntegerUpDown.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/Controls/NumericUpDown/UIntegerUpDown.cs -------------------------------------------------------------------------------- /Source/Framework.UI/Controls/NumericUpDown/ULongUpDown.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/Controls/NumericUpDown/ULongUpDown.cs -------------------------------------------------------------------------------- /Source/Framework.UI/Controls/NumericUpDown/UShortUpDown.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/Controls/NumericUpDown/UShortUpDown.cs -------------------------------------------------------------------------------- /Source/Framework.UI/Controls/NumericUpDown/UpDownBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/Controls/NumericUpDown/UpDownBase.cs -------------------------------------------------------------------------------- /Source/Framework.UI/Controls/PagingItemsControl/NumberedPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/Controls/PagingItemsControl/NumberedPage.cs -------------------------------------------------------------------------------- /Source/Framework.UI/Controls/PagingItemsControl/PagingDecorator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/Controls/PagingItemsControl/PagingDecorator.cs -------------------------------------------------------------------------------- /Source/Framework.UI/Controls/Panels/AnimatedWrapPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/Controls/Panels/AnimatedWrapPanel.cs -------------------------------------------------------------------------------- /Source/Framework.UI/Controls/Panels/VirtualizingWrapPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/Controls/Panels/VirtualizingWrapPanel.cs -------------------------------------------------------------------------------- /Source/Framework.UI/Controls/ResourceDictionaryExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/Controls/ResourceDictionaryExtensions.cs -------------------------------------------------------------------------------- /Source/Framework.UI/Controls/RichTextBox/RichTextBoxExtended.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/Controls/RichTextBox/RichTextBoxExtended.cs -------------------------------------------------------------------------------- /Source/Framework.UI/Controls/Screen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/Controls/Screen.cs -------------------------------------------------------------------------------- /Source/Framework.UI/Controls/SharedResourceDictionary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/Controls/SharedResourceDictionary.cs -------------------------------------------------------------------------------- /Source/Framework.UI/Controls/Spinner/ButtonSpinner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/Controls/Spinner/ButtonSpinner.cs -------------------------------------------------------------------------------- /Source/Framework.UI/Controls/Spinner/SpinDirection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/Controls/Spinner/SpinDirection.cs -------------------------------------------------------------------------------- /Source/Framework.UI/Controls/Spinner/SpinEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/Controls/Spinner/SpinEventArgs.cs -------------------------------------------------------------------------------- /Source/Framework.UI/Controls/Spinner/Spinner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/Controls/Spinner/Spinner.cs -------------------------------------------------------------------------------- /Source/Framework.UI/Controls/Spinner/ValidSpinDirections.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/Controls/Spinner/ValidSpinDirections.cs -------------------------------------------------------------------------------- /Source/Framework.UI/Controls/TextBox/ButtonTextBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/Controls/TextBox/ButtonTextBox.cs -------------------------------------------------------------------------------- /Source/Framework.UI/Controls/TextBox/QueryMoveFocusEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/Controls/TextBox/QueryMoveFocusEventArgs.cs -------------------------------------------------------------------------------- /Source/Framework.UI/Controls/TextBox/QueryMoveFocusEventHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/Controls/TextBox/QueryMoveFocusEventHandler.cs -------------------------------------------------------------------------------- /Source/Framework.UI/Controls/TextBox/TextBoxExtended.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/Controls/TextBox/TextBoxExtended.cs -------------------------------------------------------------------------------- /Source/Framework.UI/Controls/TreeView/TreeViewAttached.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/Controls/TreeView/TreeViewAttached.cs -------------------------------------------------------------------------------- /Source/Framework.UI/Controls/TreeView/TreeViewItemAttached.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/Controls/TreeView/TreeViewItemAttached.cs -------------------------------------------------------------------------------- /Source/Framework.UI/Controls/UIElementAttached.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/Controls/UIElementAttached.cs -------------------------------------------------------------------------------- /Source/Framework.UI/Controls/WebBrowserAttached.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/Controls/WebBrowserAttached.cs -------------------------------------------------------------------------------- /Source/Framework.UI/Controls/Window/NotifyBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/Controls/Window/NotifyBox.cs -------------------------------------------------------------------------------- /Source/Framework.UI/Controls/Window/OverlayWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/Controls/Window/OverlayWindow.cs -------------------------------------------------------------------------------- /Source/Framework.UI/Controls/Window/Window.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/Controls/Window/Window.cs -------------------------------------------------------------------------------- /Source/Framework.UI/Controls/Window/WindowBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/Controls/Window/WindowBase.cs -------------------------------------------------------------------------------- /Source/Framework.UI/Controls/Wizard/Internal/WizardItemModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/Controls/Wizard/Internal/WizardItemModel.cs -------------------------------------------------------------------------------- /Source/Framework.UI/Controls/Wizard/Wizard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/Controls/Wizard/Wizard.cs -------------------------------------------------------------------------------- /Source/Framework.UI/Controls/Wizard/WizardAnimation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/Controls/Wizard/WizardAnimation.cs -------------------------------------------------------------------------------- /Source/Framework.UI/Controls/Wizard/WizardCollectionAnimation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/Controls/Wizard/WizardCollectionAnimation.cs -------------------------------------------------------------------------------- /Source/Framework.UI/Controls/Wizard/WizardItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/Controls/Wizard/WizardItem.cs -------------------------------------------------------------------------------- /Source/Framework.UI/Controls/Wizard/WizardItemCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/Controls/Wizard/WizardItemCollection.cs -------------------------------------------------------------------------------- /Source/Framework.UI/Controls/Wizard/WizardMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/Controls/Wizard/WizardMode.cs -------------------------------------------------------------------------------- /Source/Framework.UI/Controls/Wizard/WizardXaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/Controls/Wizard/WizardXaml.cs -------------------------------------------------------------------------------- /Source/Framework.UI/Controls/XmlSerializer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/Framework.UI/Converters/BoolToVisibilityConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/Converters/BoolToVisibilityConverter.cs -------------------------------------------------------------------------------- /Source/Framework.UI/Converters/InverseBoolConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/Converters/InverseBoolConverter.cs -------------------------------------------------------------------------------- /Source/Framework.UI/Converters/InverseBoolToVisibilityConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/Converters/InverseBoolToVisibilityConverter.cs -------------------------------------------------------------------------------- /Source/Framework.UI/Converters/InverseNullToVisibilityConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/Converters/InverseNullToVisibilityConverter.cs -------------------------------------------------------------------------------- /Source/Framework.UI/Converters/LessThanEqualToBoolConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/Converters/LessThanEqualToBoolConverter.cs -------------------------------------------------------------------------------- /Source/Framework.UI/Converters/LessThanToBoolConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/Converters/LessThanToBoolConverter.cs -------------------------------------------------------------------------------- /Source/Framework.UI/Converters/MoreThanEqualToBoolConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/Converters/MoreThanEqualToBoolConverter.cs -------------------------------------------------------------------------------- /Source/Framework.UI/Converters/MoreThanToBoolConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/Converters/MoreThanToBoolConverter.cs -------------------------------------------------------------------------------- /Source/Framework.UI/Converters/NullOrEmptyToVisibilityConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/Converters/NullOrEmptyToVisibilityConverter.cs -------------------------------------------------------------------------------- /Source/Framework.UI/Converters/NullToBoolConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/Converters/NullToBoolConverter.cs -------------------------------------------------------------------------------- /Source/Framework.UI/Converters/NullToVisibilityConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/Converters/NullToVisibilityConverter.cs -------------------------------------------------------------------------------- /Source/Framework.UI/Converters/StringFormatConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/Converters/StringFormatConverter.cs -------------------------------------------------------------------------------- /Source/Framework.UI/Converters/VisibilityToBoolConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/Converters/VisibilityToBoolConverter.cs -------------------------------------------------------------------------------- /Source/Framework.UI/DependencyObjectExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/DependencyObjectExtensions.cs -------------------------------------------------------------------------------- /Source/Framework.UI/DispatcherExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/DispatcherExtensions.cs -------------------------------------------------------------------------------- /Source/Framework.UI/DragAndDrop/DragCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/DragAndDrop/DragCommand.cs -------------------------------------------------------------------------------- /Source/Framework.UI/DragAndDrop/DragManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/DragAndDrop/DragManager.cs -------------------------------------------------------------------------------- /Source/Framework.UI/DragAndDrop/DragViewer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/DragAndDrop/DragViewer.cs -------------------------------------------------------------------------------- /Source/Framework.UI/ElysiumApplication.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/ElysiumApplication.cs -------------------------------------------------------------------------------- /Source/Framework.UI/ElysiumParameterOverrides.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/ElysiumParameterOverrides.cs -------------------------------------------------------------------------------- /Source/Framework.UI/Framework.UI.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/Framework.UI.csproj -------------------------------------------------------------------------------- /Source/Framework.UI/Input/AsyncCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/Input/AsyncCommand.cs -------------------------------------------------------------------------------- /Source/Framework.UI/Input/AsyncCommandT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/Input/AsyncCommandT.cs -------------------------------------------------------------------------------- /Source/Framework.UI/Input/AsyncDelegateCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/Input/AsyncDelegateCommand.cs -------------------------------------------------------------------------------- /Source/Framework.UI/Input/AsyncDelegateCommandT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/Input/AsyncDelegateCommandT.cs -------------------------------------------------------------------------------- /Source/Framework.UI/Input/Command.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/Input/Command.cs -------------------------------------------------------------------------------- /Source/Framework.UI/Input/CommandBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/Input/CommandBase.cs -------------------------------------------------------------------------------- /Source/Framework.UI/Input/CommandT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/Input/CommandT.cs -------------------------------------------------------------------------------- /Source/Framework.UI/Input/DelegateCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/Input/DelegateCommand.cs -------------------------------------------------------------------------------- /Source/Framework.UI/Input/DelegateCommandT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/Input/DelegateCommandT.cs -------------------------------------------------------------------------------- /Source/Framework.UI/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Source/Framework.UI/ThemeManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/ThemeManager.cs -------------------------------------------------------------------------------- /Source/Framework.UI/Themes/Elysium/ApplicationBar.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/Themes/Elysium/ApplicationBar.xaml -------------------------------------------------------------------------------- /Source/Framework.UI/Themes/Elysium/CommandButton.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/Themes/Elysium/CommandButton.xaml -------------------------------------------------------------------------------- /Source/Framework.UI/Themes/Elysium/DropDownCommandButton.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/Themes/Elysium/DropDownCommandButton.xaml -------------------------------------------------------------------------------- /Source/Framework.UI/Themes/Elysium/ProgressBar.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/Themes/Elysium/ProgressBar.xaml -------------------------------------------------------------------------------- /Source/Framework.UI/Themes/Elysium/ProgressRing.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/Themes/Elysium/ProgressRing.xaml -------------------------------------------------------------------------------- /Source/Framework.UI/Themes/Elysium/Submenu.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/Themes/Elysium/Submenu.xaml -------------------------------------------------------------------------------- /Source/Framework.UI/Themes/Elysium/TODO/Generic.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/Themes/Elysium/TODO/Generic.xaml -------------------------------------------------------------------------------- /Source/Framework.UI/Themes/Elysium/ToggleCommandButton.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/Themes/Elysium/ToggleCommandButton.xaml -------------------------------------------------------------------------------- /Source/Framework.UI/Themes/Elysium/ToggleSwitch.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/Themes/Elysium/ToggleSwitch.xaml -------------------------------------------------------------------------------- /Source/Framework.UI/Themes/ElysiumExtra/Accordion.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/Themes/ElysiumExtra/Accordion.xaml -------------------------------------------------------------------------------- /Source/Framework.UI/Themes/ElysiumExtra/BorderFIx.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/Themes/ElysiumExtra/BorderFIx.xaml -------------------------------------------------------------------------------- /Source/Framework.UI/Themes/ElysiumExtra/ButtonTextBox.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/Themes/ElysiumExtra/ButtonTextBox.xaml -------------------------------------------------------------------------------- /Source/Framework.UI/Themes/ElysiumExtra/CalloutContentControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/Themes/ElysiumExtra/CalloutContentControl.xaml -------------------------------------------------------------------------------- /Source/Framework.UI/Themes/ElysiumExtra/ComboDataGrid.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/Themes/ElysiumExtra/ComboDataGrid.xaml -------------------------------------------------------------------------------- /Source/Framework.UI/Themes/ElysiumExtra/ElasticPicker.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/Themes/ElysiumExtra/ElasticPicker.xaml -------------------------------------------------------------------------------- /Source/Framework.UI/Themes/ElysiumExtra/ExpanderMenu.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/Themes/ElysiumExtra/ExpanderMenu.xaml -------------------------------------------------------------------------------- /Source/Framework.UI/Themes/ElysiumExtra/FlipControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/Themes/ElysiumExtra/FlipControl.xaml -------------------------------------------------------------------------------- /Source/Framework.UI/Themes/ElysiumExtra/GeometryIcon.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/Themes/ElysiumExtra/GeometryIcon.xaml -------------------------------------------------------------------------------- /Source/Framework.UI/Themes/ElysiumExtra/Icon.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/Themes/ElysiumExtra/Icon.xaml -------------------------------------------------------------------------------- /Source/Framework.UI/Themes/ElysiumExtra/LoadingContent.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/Themes/ElysiumExtra/LoadingContent.xaml -------------------------------------------------------------------------------- /Source/Framework.UI/Themes/ElysiumExtra/MessageDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/Themes/ElysiumExtra/MessageDialog.xaml -------------------------------------------------------------------------------- /Source/Framework.UI/Themes/ElysiumExtra/NotesListBox.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/Themes/ElysiumExtra/NotesListBox.xaml -------------------------------------------------------------------------------- /Source/Framework.UI/Themes/ElysiumExtra/NumericUpDown.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/Themes/ElysiumExtra/NumericUpDown.xaml -------------------------------------------------------------------------------- /Source/Framework.UI/Themes/ElysiumExtra/PagingItemsControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/Themes/ElysiumExtra/PagingItemsControl.xaml -------------------------------------------------------------------------------- /Source/Framework.UI/Themes/ElysiumExtra/RichTextBoxExtended.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/Themes/ElysiumExtra/RichTextBoxExtended.xaml -------------------------------------------------------------------------------- /Source/Framework.UI/Themes/ElysiumExtra/TextBoxExtended.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/Themes/ElysiumExtra/TextBoxExtended.xaml -------------------------------------------------------------------------------- /Source/Framework.UI/Themes/ElysiumExtra/Watermark.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/Themes/ElysiumExtra/Watermark.xaml -------------------------------------------------------------------------------- /Source/Framework.UI/Themes/ElysiumExtra/Wizard.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/Themes/ElysiumExtra/Wizard.xaml -------------------------------------------------------------------------------- /Source/Framework.UI/Themes/Generic.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/Themes/Generic.xaml -------------------------------------------------------------------------------- /Source/Framework.UI/Themes/WPF/Base/Border.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/Themes/WPF/Base/Border.xaml -------------------------------------------------------------------------------- /Source/Framework.UI/Themes/WPF/Base/Brush.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/Themes/WPF/Base/Brush.xaml -------------------------------------------------------------------------------- /Source/Framework.UI/Themes/WPF/Base/Color.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/Themes/WPF/Base/Color.xaml -------------------------------------------------------------------------------- /Source/Framework.UI/Themes/WPF/Base/Converter.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/Themes/WPF/Base/Converter.xaml -------------------------------------------------------------------------------- /Source/Framework.UI/Themes/WPF/Base/DrawingImage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/Themes/WPF/Base/DrawingImage.xaml -------------------------------------------------------------------------------- /Source/Framework.UI/Themes/WPF/Base/FocusVisualStyle.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/Themes/WPF/Base/FocusVisualStyle.xaml -------------------------------------------------------------------------------- /Source/Framework.UI/Themes/WPF/Base/Geometry.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/Themes/WPF/Base/Geometry.xaml -------------------------------------------------------------------------------- /Source/Framework.UI/Themes/WPF/Base/GroupStyle.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/Themes/WPF/Base/GroupStyle.xaml -------------------------------------------------------------------------------- /Source/Framework.UI/Themes/WPF/Base/Icon.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/Themes/WPF/Base/Icon.xaml -------------------------------------------------------------------------------- /Source/Framework.UI/Themes/WPF/Base/Theme/DarkColor.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/Themes/WPF/Base/Theme/DarkColor.xaml -------------------------------------------------------------------------------- /Source/Framework.UI/Themes/WPF/Base/Theme/LightColor.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/Themes/WPF/Base/Theme/LightColor.xaml -------------------------------------------------------------------------------- /Source/Framework.UI/Themes/WPF/Base/Validation.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/Themes/WPF/Base/Validation.xaml -------------------------------------------------------------------------------- /Source/Framework.UI/Themes/WPF/Controls/Button.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/Themes/WPF/Controls/Button.xaml -------------------------------------------------------------------------------- /Source/Framework.UI/Themes/WPF/Controls/Calendar.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/Themes/WPF/Controls/Calendar.xaml -------------------------------------------------------------------------------- /Source/Framework.UI/Themes/WPF/Controls/CheckBox.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/Themes/WPF/Controls/CheckBox.xaml -------------------------------------------------------------------------------- /Source/Framework.UI/Themes/WPF/Controls/ComboBox.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/Themes/WPF/Controls/ComboBox.xaml -------------------------------------------------------------------------------- /Source/Framework.UI/Themes/WPF/Controls/ComboBoxItem.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/Themes/WPF/Controls/ComboBoxItem.xaml -------------------------------------------------------------------------------- /Source/Framework.UI/Themes/WPF/Controls/ContentControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/Themes/WPF/Controls/ContentControl.xaml -------------------------------------------------------------------------------- /Source/Framework.UI/Themes/WPF/Controls/ContextMenu.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/Themes/WPF/Controls/ContextMenu.xaml -------------------------------------------------------------------------------- /Source/Framework.UI/Themes/WPF/Controls/DataGrid.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/Themes/WPF/Controls/DataGrid.xaml -------------------------------------------------------------------------------- /Source/Framework.UI/Themes/WPF/Controls/DatePicker.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/Themes/WPF/Controls/DatePicker.xaml -------------------------------------------------------------------------------- /Source/Framework.UI/Themes/WPF/Controls/Expander.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/Themes/WPF/Controls/Expander.xaml -------------------------------------------------------------------------------- /Source/Framework.UI/Themes/WPF/Controls/GridSplitter.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/Themes/WPF/Controls/GridSplitter.xaml -------------------------------------------------------------------------------- /Source/Framework.UI/Themes/WPF/Controls/Hyperlink.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/Themes/WPF/Controls/Hyperlink.xaml -------------------------------------------------------------------------------- /Source/Framework.UI/Themes/WPF/Controls/ItemsControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/Themes/WPF/Controls/ItemsControl.xaml -------------------------------------------------------------------------------- /Source/Framework.UI/Themes/WPF/Controls/Label.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/Themes/WPF/Controls/Label.xaml -------------------------------------------------------------------------------- /Source/Framework.UI/Themes/WPF/Controls/ListBox.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/Themes/WPF/Controls/ListBox.xaml -------------------------------------------------------------------------------- /Source/Framework.UI/Themes/WPF/Controls/ListBoxItem.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/Themes/WPF/Controls/ListBoxItem.xaml -------------------------------------------------------------------------------- /Source/Framework.UI/Themes/WPF/Controls/Menu.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/Themes/WPF/Controls/Menu.xaml -------------------------------------------------------------------------------- /Source/Framework.UI/Themes/WPF/Controls/MenuItem.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/Themes/WPF/Controls/MenuItem.xaml -------------------------------------------------------------------------------- /Source/Framework.UI/Themes/WPF/Controls/PasswordBox.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/Themes/WPF/Controls/PasswordBox.xaml -------------------------------------------------------------------------------- /Source/Framework.UI/Themes/WPF/Controls/RadioButton.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/Themes/WPF/Controls/RadioButton.xaml -------------------------------------------------------------------------------- /Source/Framework.UI/Themes/WPF/Controls/RepeatButton.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/Themes/WPF/Controls/RepeatButton.xaml -------------------------------------------------------------------------------- /Source/Framework.UI/Themes/WPF/Controls/RichTextBox.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/Themes/WPF/Controls/RichTextBox.xaml -------------------------------------------------------------------------------- /Source/Framework.UI/Themes/WPF/Controls/ScrollBar.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/Themes/WPF/Controls/ScrollBar.xaml -------------------------------------------------------------------------------- /Source/Framework.UI/Themes/WPF/Controls/ScrollViewer.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/Themes/WPF/Controls/ScrollViewer.xaml -------------------------------------------------------------------------------- /Source/Framework.UI/Themes/WPF/Controls/Separator.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/Themes/WPF/Controls/Separator.xaml -------------------------------------------------------------------------------- /Source/Framework.UI/Themes/WPF/Controls/Slider.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/Themes/WPF/Controls/Slider.xaml -------------------------------------------------------------------------------- /Source/Framework.UI/Themes/WPF/Controls/TabControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/Themes/WPF/Controls/TabControl.xaml -------------------------------------------------------------------------------- /Source/Framework.UI/Themes/WPF/Controls/TabItem.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/Themes/WPF/Controls/TabItem.xaml -------------------------------------------------------------------------------- /Source/Framework.UI/Themes/WPF/Controls/TextBlock.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/Themes/WPF/Controls/TextBlock.xaml -------------------------------------------------------------------------------- /Source/Framework.UI/Themes/WPF/Controls/TextBox.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/Themes/WPF/Controls/TextBox.xaml -------------------------------------------------------------------------------- /Source/Framework.UI/Themes/WPF/Controls/ToggleButton.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/Themes/WPF/Controls/ToggleButton.xaml -------------------------------------------------------------------------------- /Source/Framework.UI/Themes/WPF/Controls/ToolTip.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/Themes/WPF/Controls/ToolTip.xaml -------------------------------------------------------------------------------- /Source/Framework.UI/Themes/WPF/Controls/TreeView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/Themes/WPF/Controls/TreeView.xaml -------------------------------------------------------------------------------- /Source/Framework.UI/Themes/WPF/Controls/TreeViewItem.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/Themes/WPF/Controls/TreeViewItem.xaml -------------------------------------------------------------------------------- /Source/Framework.UI/Themes/WPF/Controls/Window.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/Themes/WPF/Controls/Window.xaml -------------------------------------------------------------------------------- /Source/Framework.UI/VisualTreeHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/VisualTreeHelpers.cs -------------------------------------------------------------------------------- /Source/Framework.UI/WeakEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/WeakEvent.cs -------------------------------------------------------------------------------- /Source/Framework.UI/XamlHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/XamlHelper.cs -------------------------------------------------------------------------------- /Source/Framework.UI/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/app.config -------------------------------------------------------------------------------- /Source/Framework.UI/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework.UI/packages.config -------------------------------------------------------------------------------- /Source/Framework/CharacterSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework/CharacterSet.cs -------------------------------------------------------------------------------- /Source/Framework/Collections/CollectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework/Collections/CollectionExtensions.cs -------------------------------------------------------------------------------- /Source/Framework/Collections/EnumerableExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework/Collections/EnumerableExtensions.cs -------------------------------------------------------------------------------- /Source/Framework/Collections/TraverseKind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework/Collections/TraverseKind.cs -------------------------------------------------------------------------------- /Source/Framework/ComponentModel/Cloneable/ICloneableT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework/ComponentModel/Cloneable/ICloneableT.cs -------------------------------------------------------------------------------- /Source/Framework/ComponentModel/Disposable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework/ComponentModel/Disposable.cs -------------------------------------------------------------------------------- /Source/Framework/ComponentModel/EditableObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework/ComponentModel/EditableObject.cs -------------------------------------------------------------------------------- /Source/Framework/ComponentModel/NotifyDataErrorInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework/ComponentModel/NotifyDataErrorInfo.cs -------------------------------------------------------------------------------- /Source/Framework/ComponentModel/NotifyPropertyChanges.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework/ComponentModel/NotifyPropertyChanges.cs -------------------------------------------------------------------------------- /Source/Framework/ComponentModel/RevertibleChangeTracking.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework/ComponentModel/RevertibleChangeTracking.cs -------------------------------------------------------------------------------- /Source/Framework/ComponentModel/Rules/DelegateRule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework/ComponentModel/Rules/DelegateRule.cs -------------------------------------------------------------------------------- /Source/Framework/ComponentModel/Rules/Rule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework/ComponentModel/Rules/Rule.cs -------------------------------------------------------------------------------- /Source/Framework/ComponentModel/Rules/RuleCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework/ComponentModel/Rules/RuleCollection.cs -------------------------------------------------------------------------------- /Source/Framework/Framework.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework/Framework.csproj -------------------------------------------------------------------------------- /Source/Framework/Guard/Guard.AreEqual.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework/Guard/Guard.AreEqual.cs -------------------------------------------------------------------------------- /Source/Framework/Guard/Guard.AreNotEqual.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework/Guard/Guard.AreNotEqual.cs -------------------------------------------------------------------------------- /Source/Framework/Guard/Guard.ContainsCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework/Guard/Guard.ContainsCollection.cs -------------------------------------------------------------------------------- /Source/Framework/Guard/Guard.ContainsString.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework/Guard/Guard.ContainsString.cs -------------------------------------------------------------------------------- /Source/Framework/Guard/Guard.DoesNotContainCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework/Guard/Guard.DoesNotContainCollection.cs -------------------------------------------------------------------------------- /Source/Framework/Guard/Guard.DoesNotContainString.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework/Guard/Guard.DoesNotContainString.cs -------------------------------------------------------------------------------- /Source/Framework/Guard/Guard.EndsWith.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework/Guard/Guard.EndsWith.cs -------------------------------------------------------------------------------- /Source/Framework/Guard/Guard.IsInstanceOfType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework/Guard/Guard.IsInstanceOfType.cs -------------------------------------------------------------------------------- /Source/Framework/Guard/Guard.IsLessThan.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework/Guard/Guard.IsLessThan.cs -------------------------------------------------------------------------------- /Source/Framework/Guard/Guard.IsLessThanOrEqualTo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework/Guard/Guard.IsLessThanOrEqualTo.cs -------------------------------------------------------------------------------- /Source/Framework/Guard/Guard.IsMatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework/Guard/Guard.IsMatch.cs -------------------------------------------------------------------------------- /Source/Framework/Guard/Guard.IsMoreThan.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework/Guard/Guard.IsMoreThan.cs -------------------------------------------------------------------------------- /Source/Framework/Guard/Guard.IsMoreThanOrEqualTo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework/Guard/Guard.IsMoreThanOrEqualTo.cs -------------------------------------------------------------------------------- /Source/Framework/Guard/Guard.IsNotInstanceOfType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework/Guard/Guard.IsNotInstanceOfType.cs -------------------------------------------------------------------------------- /Source/Framework/Guard/Guard.IsNotNull.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework/Guard/Guard.IsNotNull.cs -------------------------------------------------------------------------------- /Source/Framework/Guard/Guard.IsNotNullOrEmptyCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework/Guard/Guard.IsNotNullOrEmptyCollection.cs -------------------------------------------------------------------------------- /Source/Framework/Guard/Guard.IsNotNullOrEmptyString.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework/Guard/Guard.IsNotNullOrEmptyString.cs -------------------------------------------------------------------------------- /Source/Framework/Guard/Guard.IsNotNullOrWhiteSpace.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework/Guard/Guard.IsNotNullOrWhiteSpace.cs -------------------------------------------------------------------------------- /Source/Framework/Guard/Guard.IsTrue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework/Guard/Guard.IsTrue.cs -------------------------------------------------------------------------------- /Source/Framework/Guard/Guard.StartsWith.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework/Guard/Guard.StartsWith.cs -------------------------------------------------------------------------------- /Source/Framework/Guard/Guard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework/Guard/Guard.cs -------------------------------------------------------------------------------- /Source/Framework/Guard/Parameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework/Guard/Parameter.cs -------------------------------------------------------------------------------- /Source/Framework/IO/Streams.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework/IO/Streams.cs -------------------------------------------------------------------------------- /Source/Framework/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Source/Framework/RandomExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework/RandomExtensions.cs -------------------------------------------------------------------------------- /Source/Framework/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RehanSaeed/Elysium-Extra/HEAD/Source/Framework/packages.config --------------------------------------------------------------------------------