├── .github
└── FUNDING.yml
├── Src
├── Xceed.Wpf.DataGrid
│ ├── sn.snk
│ ├── NoDrop.cur
│ ├── DataGridControl.icon.16x16.bmp
│ ├── (enums)
│ │ ├── SelectionBehaviorEnum.cs
│ │ ├── ColumnDraggableStatusEnum.cs
│ │ ├── ColumnWidthUnitTypeEnum.cs
│ │ ├── LocationTypeEnum.cs
│ │ ├── PagingBehaviorEnum.cs
│ │ ├── ValidationModeEnum.cs
│ │ ├── ItemScrollingBehaviorEnum.cs
│ │ ├── PropertyRouteSegmentTypeEnum.cs
│ │ ├── SortDirectionEnum.cs
│ │ ├── DropMarkAlignmentEnum.cs
│ │ ├── PrimaryAxisEnum.cs
│ │ ├── CompareResultEnum.cs
│ │ ├── ScrollOrientationEnum.cs
│ │ ├── DataGridDragBehaviorEnum.cs
│ │ ├── CommitModeEnum.cs
│ │ ├── SelectionUnitEnum.cs
│ │ ├── GeneratorNodeTypeEnum.cs
│ │ ├── DistinctValuesUpdateModeEnum.cs
│ │ ├── NavigationBehaviorEnum.cs
│ │ ├── ScrollDirectionEnum.cs
│ │ ├── DataGridConnectionStateEnum.cs
│ │ ├── DistinctValuesConstraintEnum.cs
│ │ ├── DeletingSelectedItemErrorActionEnum.cs
│ │ ├── DataGridUpdateSourceTriggerEnum.cs
│ │ ├── ConnectionLineAlignmentEnum.cs
│ │ ├── CellEditorDisplayConditionsEnum.cs
│ │ └── EditTriggersEnum.cs
│ ├── Utils
│ │ ├── Wpf
│ │ │ ├── ITreeTraversalStrategy.cs
│ │ │ ├── DepthFirstSearchTreeTraversalStrategy.cs
│ │ │ ├── BreadthFirstSearchTreeTraversalStrategy.cs
│ │ │ └── ITreeTraversal.cs
│ │ └── Collections
│ │ │ └── ArrayHelper.cs
│ ├── Views
│ │ ├── (Enums)
│ │ │ ├── ColumnVirtualizationModeEnum.cs
│ │ │ ├── MasterDetailLayoutModeEnum.cs
│ │ │ ├── PassiveLayoutAxisEnum.cs
│ │ │ ├── ColumnStretchModeEnum.cs
│ │ │ ├── FlattenDetailBindingModeEnum.cs
│ │ │ ├── SynchronizedScrollViewerPositionEnum.cs
│ │ │ ├── DropMarkOrientationEnum.cs
│ │ │ └── ViewPropertyModeEnum.cs
│ │ └── DataGridControlBackgroundBrushesResources.xaml.cs
│ ├── CellEditorSelector.cs
│ ├── ColumnGroupCommand.cs
│ ├── AssemblyVersionInfoCommon.cs
│ ├── ICustomVirtualizingPanel.cs
│ ├── ActivationGesture.cs
│ ├── DetailConfigurationSelector.cs
│ ├── (Generator)
│ │ └── IInhibitGenPosToIndexUpdating.cs
│ ├── ActivationGestureCollection.cs
│ ├── AutoResetFlag.cs
│ ├── Column.GenericContentTemplateSelectorResources.cs
│ ├── IDeferableScrollInfoRefresh.cs
│ ├── ValidationRules
│ │ ├── CellContentBindingValidationRule.cs
│ │ └── CellValidationRule.cs
│ ├── GroupConfigurationSelector.cs
│ ├── Markup
│ │ └── FrameworkThemeResourceDictionary.cs
│ ├── (Events)
│ │ └── SelectionChangedInternalEventArgs.cs
│ ├── TextInputActivationGesture.cs
│ └── (CollectionView)
│ │ └── PropertyRelationAttribute.cs
├── Xceed.Wpf.Toolkit
│ ├── sn.snk
│ ├── Panels
│ │ ├── WrapPanel.Icon.bmp
│ │ ├── RandomPanel.Icon.bmp
│ │ ├── ChildEnteredEventHandler.cs
│ │ ├── ChildExitedEventHandler.cs
│ │ ├── ChildExitingEventHandler.cs
│ │ ├── ChildEnteringEventHandler.cs
│ │ └── PanelBase.cs
│ ├── Zoombox
│ │ ├── Zoombox.Icon.bmp
│ │ ├── Resources
│ │ │ ├── Zoom.cur
│ │ │ └── ZoomRelative.cur
│ │ ├── ZoomboxZoomOn.cs
│ │ ├── ZoomboxViewChangedEventHandler.cs
│ │ ├── ZoomboxViewStackMode.cs
│ │ ├── ZoomboxViewKind.cs
│ │ └── ZoomboxViewException.cs
│ ├── MessageBox
│ │ ├── Icons
│ │ │ ├── Error48.png
│ │ │ ├── Warning48.png
│ │ │ ├── Question48.png
│ │ │ └── Information48.png
│ │ └── Implementation
│ │ │ └── MessageBox.Icon.bmp
│ ├── Pie
│ │ └── Implementation
│ │ │ ├── Pie.Icon.bmp
│ │ │ └── PieModeEnum.cs
│ ├── PropertyGrid
│ │ ├── Images
│ │ │ ├── Local11.png
│ │ │ ├── Style11.png
│ │ │ ├── Database11.png
│ │ │ ├── Resource11.png
│ │ │ ├── Categorize16.png
│ │ │ ├── ClearFilter16.png
│ │ │ ├── Inheritance11.png
│ │ │ ├── SortAscending16.png
│ │ │ └── AdvancedProperties11.png
│ │ └── Implementation
│ │ │ ├── PropertyGrid.Icon.bmp
│ │ │ ├── Editors
│ │ │ └── ITypeEditor.cs
│ │ │ ├── FilterInfo.cs
│ │ │ └── PropertyItemsControlAutomationPeer.cs
│ ├── RichTextBox
│ │ ├── RichTextBox.Icon.bmp
│ │ └── Formatters
│ │ │ └── ITextFormatter.cs
│ ├── Primitives
│ │ ├── WindowContainer.Icon.bmp
│ │ ├── WindowControl.Icon.bmp
│ │ ├── ValueRangeTextBox.Icon.bmp
│ │ └── HsvColor.cs
│ ├── TokenizedTextBox
│ │ └── Images
│ │ │ └── delete8.png
│ ├── CollectionControl
│ │ ├── Images
│ │ │ ├── Delete16.png
│ │ │ └── Duplicate.png
│ │ └── Implementation
│ │ │ ├── CollectionControl.Icon.bmp
│ │ │ ├── CollectionControlButton.Icon.bmp
│ │ │ └── PrimitiveTypeCollectionControl.Icon.bmp
│ ├── Themes
│ │ └── Generic
│ │ │ └── Images
│ │ │ ├── close_hover.png
│ │ │ ├── resize_grip.png
│ │ │ ├── close_inactive.png
│ │ │ ├── close_normal.png
│ │ │ ├── close_pressed.png
│ │ │ ├── maximize_hover.png
│ │ │ ├── minimize_hover.png
│ │ │ ├── restore_hover.png
│ │ │ ├── restore_normal.png
│ │ │ ├── maximize_normal.png
│ │ │ ├── maximize_pressed.png
│ │ │ ├── minimize_normal.png
│ │ │ ├── minimize_pressed.png
│ │ │ ├── restore_disabled.png
│ │ │ ├── restore_inactive.png
│ │ │ ├── restore_pressed.png
│ │ │ ├── close_rounded_hover.png
│ │ │ ├── maximize_disabled.png
│ │ │ ├── maximize_inactive.png
│ │ │ ├── minimize_inactive.png
│ │ │ ├── close_rounded_normal.png
│ │ │ ├── close_rounded_pressed.png
│ │ │ ├── close_rounded_inactive.png
│ │ │ ├── close_toolwindow_hover.png
│ │ │ ├── close_toolwindow_normal.png
│ │ │ ├── close_toolwindow_pressed.png
│ │ │ └── close_toolwindow_inactive.png
│ ├── Wizard
│ │ └── Implementation
│ │ │ ├── Wizard.Icon.bmp
│ │ │ ├── WizardPageType.cs
│ │ │ └── WizardPageButtonVisibility.cs
│ ├── MultiLineTextEditor
│ │ ├── Images
│ │ │ └── Notes16.png
│ │ └── Implementation
│ │ │ └── MultiLineTextEditor.Icon.bmp
│ ├── RichTextBoxFormatBar
│ │ ├── Images
│ │ │ ├── Bold16.png
│ │ │ ├── Italic16.png
│ │ │ ├── Bullets16.png
│ │ │ ├── CenterAlign16.png
│ │ │ ├── LeftAlign16.png
│ │ │ ├── Numbering16.png
│ │ │ ├── RightAlign16.png
│ │ │ ├── Underline16.png
│ │ │ ├── JustifyAlign16.png
│ │ │ ├── FontColorPicker16.png
│ │ │ └── TextHighlightColorPicker16.png
│ │ └── RichTextBoxFormatBar.Icon.bmp
│ ├── Calculator
│ │ └── Implementation
│ │ │ └── Calculator.Icon.bmp
│ ├── IconButton
│ │ └── Implementation
│ │ │ └── IconButton.Icon.bmp
│ ├── Magnifier
│ │ └── Implementation
│ │ │ ├── Magnifier.Icon.bmp
│ │ │ └── FrameType.cs
│ ├── TimePicker
│ │ └── Implementation
│ │ │ └── TimePicker.Icon.bmp
│ ├── ChildWindow
│ │ └── Implementation
│ │ │ ├── ChildWindow.Icon.bmp
│ │ │ ├── WindowState.cs
│ │ │ └── WindowStartupLocation.cs
│ ├── ColorCanvas
│ │ └── Implementation
│ │ │ └── ColorCanvas.Icon.bmp
│ ├── ColorPicker
│ │ └── Implementation
│ │ │ └── ColorPicker.Icon.bmp
│ ├── RangeSlider
│ │ └── Implementation
│ │ │ └── RangeSlider.Icon.bmp
│ ├── SplitButton
│ │ └── Implementation
│ │ │ └── SplitButton.Icon.bmp
│ ├── CheckListBox
│ │ └── Implementation
│ │ │ └── CheckListBox.Icon.bmp
│ ├── NumericUpDown
│ │ └── Implementation
│ │ │ ├── ByteUpDown.Icon.bmp
│ │ │ ├── DoubleUpDown.Icon.bmp
│ │ │ ├── LongUpDown.Icon.bmp
│ │ │ ├── SByteUpDown.Icon.bmp
│ │ │ ├── ShortUpDown.Icon.bmp
│ │ │ ├── SingleUpDown.Icon.bmp
│ │ │ ├── ULongUpDown.Icon.bmp
│ │ │ ├── UShortUpDown.Icon.bmp
│ │ │ ├── DecimalUpDown.Icon.bmp
│ │ │ ├── IntegerUpDown.Icon.bmp
│ │ │ ├── UIntegerUpDown.Icon.bmp
│ │ │ └── AllowedSpecialValuesEnum.cs
│ ├── BusyIndicator
│ │ └── Implementation
│ │ │ └── BusyIndicator.Icon.bmp
│ ├── ButtonSpinner
│ │ └── Implementation
│ │ │ └── ButtonSpinner.Icon.bmp
│ ├── CheckComboBox
│ │ └── Implementation
│ │ │ └── CheckComboBox.Icon.bmp
│ ├── MaskedTextBox
│ │ └── Implementation
│ │ │ ├── MaskedTextBox.Icon.bmp
│ │ │ ├── InsertKeyModeEnum.cs
│ │ │ └── MaskFormatEnum.cs
│ ├── TimelinePanel
│ │ └── Implementation
│ │ │ ├── TimelinePanel.Icon.bmp
│ │ │ └── OverlapBehavior.cs
│ ├── DateTimePicker
│ │ └── Implementation
│ │ │ └── DateTimePicker.Icon.bmp
│ ├── DateTimeUpDown
│ │ └── Implementation
│ │ │ ├── DateTimeUpDown.Icon.bmp
│ │ │ ├── DateTimeFormat.cs
│ │ │ └── DateTimePart.cs
│ ├── DropDownButton
│ │ └── Implementation
│ │ │ └── DropDownButton.Icon.bmp
│ ├── StyleableWindow
│ │ └── Implementation
│ │ │ └── StyleableWindow.Icon.bmp
│ ├── TimeSpanUpDown
│ │ └── Implementation
│ │ │ └── TimeSpanUpDown.Icon.bmp
│ ├── CalculatorUpDown
│ │ └── Implementation
│ │ │ └── CalculatorUpDown.Icon.bmp
│ ├── WatermarkTextBox
│ │ └── Implementation
│ │ │ └── WatermarkTextBox.Icon.bmp
│ ├── AutoSelectTextBox
│ │ └── Implementation
│ │ │ ├── AutoSelectTextBox.Icon.bmp
│ │ │ └── AutoSelectBehaviorEnum.cs
│ ├── WatermarkComboBox
│ │ └── Implementation
│ │ │ └── WatermarkComboBox.Icon.bmp
│ ├── WatermarkPasswordBox
│ │ └── Implementation
│ │ │ └── WatermarkPasswordBox.Icon.bmp
│ ├── BrushPicker
│ │ └── Implementation
│ │ │ ├── BrushItem.cs
│ │ │ ├── SpinEventArgs .cs
│ │ │ └── ColorChangedEventArgs.cs
│ ├── VisualStates.cs
│ └── Core
│ │ ├── LocationEnum.cs
│ │ ├── IndexChangedEventHandler.cs
│ │ ├── PropertyChangedEventHandler.cs
│ │ ├── Media
│ │ └── Animation
│ │ │ └── IterativeAnimationEquationDelegate.cs
│ │ ├── Utilities
│ │ └── WindowUtilities.cs
│ │ └── Input
│ │ ├── IValidateInput.cs
│ │ └── KeyModifier.cs
└── Xceed.Wpf.Toolkit.LiveExplorer
│ ├── App.ico
│ ├── sn.snk
│ ├── Resources
│ ├── xceed_logo.png
│ └── toolkitIcon.png
│ ├── Samples
│ ├── Chart
│ │ ├── Photo
│ │ │ ├── 1.bmp
│ │ │ ├── 2.bmp
│ │ │ ├── 3.bmp
│ │ │ ├── 4.bmp
│ │ │ ├── 5.bmp
│ │ │ └── 6.bmp
│ │ ├── OpenSourceImages
│ │ │ ├── ChartAxis.png
│ │ │ ├── ChartLegend.png
│ │ │ ├── ChartBasicTypes.png
│ │ │ ├── ChartStylingAxesGrid.png
│ │ │ ├── ChartStylingLineSeries.png
│ │ │ ├── ChartStylingPieSeries.png
│ │ │ ├── ChartStylingColumnSeries.png
│ │ │ └── ChartSeriesDataPointsBinding.png
│ │ └── Converters
│ │ │ └── GraduationModeToComboBoxConverter.cs
│ ├── Gauge
│ │ ├── Resources
│ │ │ ├── fuel.jpg
│ │ │ ├── arrow.png
│ │ │ ├── smiley.png
│ │ │ └── pointing.jpg
│ │ └── OpenSourceImages
│ │ │ └── Gauge.png
│ ├── Theming
│ │ ├── Images
│ │ │ ├── Working.png
│ │ │ ├── NoPicture.png
│ │ │ ├── NoPictureA.jpg
│ │ │ ├── NoPictureB.jpg
│ │ │ ├── NoPictureC.jpg
│ │ │ ├── NoPictureD.jpg
│ │ │ ├── document.png
│ │ │ ├── property-blue.png
│ │ │ ├── address-book-open.png
│ │ │ ├── alarm-clock-blue.png
│ │ │ └── address-book--pencil.png
│ │ ├── OpenSourceImages
│ │ │ ├── CoreWPFControls.png
│ │ │ ├── ListBoxControls.png
│ │ │ ├── DataGridControls.png
│ │ │ ├── AvalonDockMetroDark.png
│ │ │ ├── AvalonDockMetroLight.png
│ │ │ ├── AvalonDockWindows10.png
│ │ │ ├── AvalonDockOffice2007Black.png
│ │ │ ├── AvalonDockOffice2007Blue.png
│ │ │ ├── AvalonDockOffice2007Silver.png
│ │ │ └── ExtendedWPFToolkitControls.png
│ │ └── Converters
│ │ │ └── FlagPathConverter.cs
│ ├── Button
│ │ ├── Resources
│ │ │ ├── Default.jpg
│ │ │ └── PencilTool16.png
│ │ └── Views
│ │ │ └── IconButtonView.xaml.cs
│ ├── Zoombox
│ │ └── Resources
│ │ │ └── Default.jpg
│ ├── SlideShow
│ │ ├── Resources
│ │ │ ├── photo_1.jpg
│ │ │ ├── photo_2.jpg
│ │ │ ├── photo_3.jpg
│ │ │ ├── photo_4.jpg
│ │ │ ├── photo_5.jpg
│ │ │ ├── photo_6.jpg
│ │ │ ├── photo_7.jpg
│ │ │ ├── photo_8.jpg
│ │ │ └── photo_9.jpg
│ │ └── OpenSourceImages
│ │ │ └── SlideShow.png
│ ├── Text
│ │ ├── Resources
│ │ │ └── PencilTool16.png
│ │ ├── OpenSourceImages
│ │ │ └── TokenizedTextBox.png
│ │ └── Views
│ │ │ ├── AutoSelectTextboxView.xaml.cs
│ │ │ └── WatermarkTextboxView.xaml.cs
│ ├── Window
│ │ └── Resources
│ │ │ └── xceed_icon.png
│ ├── ListBox
│ │ ├── Resources
│ │ │ └── Netflix_icon.png
│ │ ├── OpenSourceImages
│ │ │ └── ListBox.png
│ │ └── Converters
│ │ │ └── BoxArtImageSourceConverter.cs
│ ├── MaterialControls
│ │ ├── Resources
│ │ │ ├── Zip.png
│ │ │ ├── SFTP.png
│ │ │ ├── Business.png
│ │ │ ├── DataGrid.png
│ │ │ ├── Toolkit.png
│ │ │ ├── WhitePen.png
│ │ │ ├── italy.4.gif
│ │ │ ├── building16.png
│ │ │ └── PencilTool16.png
│ │ ├── OpenSourceImages
│ │ │ ├── MaterialFrame.png
│ │ │ ├── MaterialTabs.png
│ │ │ ├── MaterialToast.png
│ │ │ ├── MaterialButton.png
│ │ │ ├── MaterialCheckBox.png
│ │ │ ├── MaterialComboBox.png
│ │ │ ├── MaterialControls.png
│ │ │ ├── MaterialDropDown.png
│ │ │ ├── MaterialListBox.png
│ │ │ ├── MaterialSlider.png
│ │ │ ├── MaterialSwitch.png
│ │ │ ├── MaterialToolTip.png
│ │ │ ├── MaterialHamburger.png
│ │ │ ├── MaterialTextField.png
│ │ │ ├── MaterialProgressBar.png
│ │ │ ├── MaterialRadioButton.png
│ │ │ └── MaterialProgressBarCircular.png
│ │ ├── Data
│ │ │ └── RequiredRule.cs
│ │ └── Converters
│ │ │ └── EqualsMinusOneConverter.cs
│ ├── MultiCalendar
│ │ ├── Resources
│ │ │ ├── April.jpg
│ │ │ ├── July.jpg
│ │ │ ├── June.jpg
│ │ │ ├── March.jpg
│ │ │ ├── December.jpg
│ │ │ ├── February.jpg
│ │ │ ├── October.jpg
│ │ │ └── September.jpg
│ │ └── OpenSourceImages
│ │ │ └── MultiCalendar.png
│ ├── Panels
│ │ └── OpenSourceImages
│ │ │ ├── Canvas.png
│ │ │ ├── Grid.png
│ │ │ ├── Carousel.png
│ │ │ ├── CameraPanel.png
│ │ │ ├── DockPanel.png
│ │ │ ├── StackPanel.png
│ │ │ ├── RadialCanvas.png
│ │ │ ├── PerspectivePanel.png
│ │ │ ├── RelativeCanvas.png
│ │ │ ├── StackedStackPanel.png
│ │ │ ├── AnimatedTimelinePanel.png
│ │ │ └── AutoStretchStackPanel.png
│ ├── PropertyGrid
│ │ ├── Resources
│ │ │ └── woman.png
│ │ └── OpenSourceImages
│ │ │ ├── PropertiesSource.cs.txt
│ │ │ ├── Localization.png
│ │ │ ├── MultiSelectedObjects.png
│ │ │ ├── ExpandingNonPrimitives.png
│ │ │ ├── Properties.cs.txt
│ │ │ ├── PropertiesSource.xaml.txt
│ │ │ ├── DefinitionKey.cs.txt
│ │ │ ├── DefinitionKey.xaml.txt
│ │ │ ├── CustomProperty.xaml.txt
│ │ │ ├── Properties.xaml.txt
│ │ │ └── EditorDefinitions.xaml.txt
│ ├── Rating
│ │ └── OpenSourceImages
│ │ │ └── Rating.png
│ ├── BusyIndicator
│ │ ├── Images
│ │ │ └── CdBurning32.png
│ │ └── Views
│ │ │ └── BusyIndicatorView.xaml.cs
│ ├── DataGrid
│ │ ├── OpenSourceImages
│ │ │ ├── DataGrid.png
│ │ │ └── MultiColumnsComboBox.png
│ │ └── Converters
│ │ │ └── FlagPathConverter.cs
│ ├── ToggleSwitch
│ │ ├── Resources
│ │ │ └── PencilTool16.png
│ │ └── OpenSourceImages
│ │ │ └── ToggleSwitch.png
│ ├── FilePicker
│ │ └── OpenSourceImages
│ │ │ └── FilePicker.png
│ ├── WatermarkComboBox
│ │ └── Resources
│ │ │ └── PencilTool16.png
│ ├── ExtTabControl
│ │ └── OpenSourceImages
│ │ │ └── ExtTabControl.png
│ ├── PileFlowPanel
│ │ ├── OpenSourceImages
│ │ │ └── PileFlowPanel.png
│ │ └── Converters
│ │ │ └── FullNameStringConverter.cs
│ ├── DateTime
│ │ └── Views
│ │ │ └── DateTimeView.xaml.cs
│ ├── Calculator
│ │ └── Views
│ │ │ └── CalculatorView.xaml.cs
│ └── TimelinePanel
│ │ └── Views
│ │ └── TimelinePanelView.xaml.cs
│ ├── Properties
│ └── Settings.settings
│ ├── Core
│ └── Converters
│ │ └── ZeroToBoolConverter.cs
│ ├── CodeFiles
│ ├── DateTimeView.xaml.cs.txt
│ ├── IconButtonView.xaml.cs.txt
│ ├── CalculatorView.xaml.cs.txt
│ ├── BusyIndicatorView.xaml.cs.txt
│ ├── TimelinePanelView.xaml.cs.txt
│ ├── AutoSelectTextboxView.xaml.cs.txt
│ └── WatermarkTextboxView.xaml.cs.txt
│ └── App.xaml.cs
├── Libs
├── Xceed.Wpf.Samples.SampleData.dll
└── READ_ME.txt
├── .editorconfig
└── .vs
└── DotNetProjects.Wpf.Extended.Toolkit.sqlite
/.github/FUNDING.yml:
--------------------------------------------------------------------------------
1 | # These are supported funding model platforms
2 |
3 | github: jogibear9988
4 | patreon: jogibear9988
5 |
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.DataGrid/sn.snk:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.DataGrid/sn.snk
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit/sn.snk:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit/sn.snk
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.DataGrid/NoDrop.cur:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.DataGrid/NoDrop.cur
--------------------------------------------------------------------------------
/Libs/Xceed.Wpf.Samples.SampleData.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Libs/Xceed.Wpf.Samples.SampleData.dll
--------------------------------------------------------------------------------
/.editorconfig:
--------------------------------------------------------------------------------
1 | root = true
2 |
3 | [*]
4 | end_of_line = crlf
5 | insert_final_newline = true
6 | indent_style = space
7 | indent_size = 2
8 |
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit.LiveExplorer/App.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit.LiveExplorer/App.ico
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit.LiveExplorer/sn.snk:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit.LiveExplorer/sn.snk
--------------------------------------------------------------------------------
/.vs/DotNetProjects.Wpf.Extended.Toolkit.sqlite:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/.vs/DotNetProjects.Wpf.Extended.Toolkit.sqlite
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit/Panels/WrapPanel.Icon.bmp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit/Panels/WrapPanel.Icon.bmp
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit/Zoombox/Zoombox.Icon.bmp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit/Zoombox/Zoombox.Icon.bmp
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit/Panels/RandomPanel.Icon.bmp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit/Panels/RandomPanel.Icon.bmp
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit/Zoombox/Resources/Zoom.cur:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit/Zoombox/Resources/Zoom.cur
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit/MessageBox/Icons/Error48.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit/MessageBox/Icons/Error48.png
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit/MessageBox/Icons/Warning48.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit/MessageBox/Icons/Warning48.png
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.DataGrid/DataGridControl.icon.16x16.bmp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.DataGrid/DataGridControl.icon.16x16.bmp
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit/MessageBox/Icons/Question48.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit/MessageBox/Icons/Question48.png
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit/Pie/Implementation/Pie.Icon.bmp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit/Pie/Implementation/Pie.Icon.bmp
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit/PropertyGrid/Images/Local11.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit/PropertyGrid/Images/Local11.png
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit/PropertyGrid/Images/Style11.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit/PropertyGrid/Images/Style11.png
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit/RichTextBox/RichTextBox.Icon.bmp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit/RichTextBox/RichTextBox.Icon.bmp
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit/MessageBox/Icons/Information48.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit/MessageBox/Icons/Information48.png
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit/Primitives/WindowContainer.Icon.bmp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit/Primitives/WindowContainer.Icon.bmp
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit/Primitives/WindowControl.Icon.bmp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit/Primitives/WindowControl.Icon.bmp
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit/PropertyGrid/Images/Database11.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit/PropertyGrid/Images/Database11.png
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit/PropertyGrid/Images/Resource11.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit/PropertyGrid/Images/Resource11.png
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit/TokenizedTextBox/Images/delete8.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit/TokenizedTextBox/Images/delete8.png
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit/Zoombox/Resources/ZoomRelative.cur:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit/Zoombox/Resources/ZoomRelative.cur
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit.LiveExplorer/Resources/xceed_logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit.LiveExplorer/Resources/xceed_logo.png
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit/CollectionControl/Images/Delete16.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit/CollectionControl/Images/Delete16.png
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit/Primitives/ValueRangeTextBox.Icon.bmp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit/Primitives/ValueRangeTextBox.Icon.bmp
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit/PropertyGrid/Images/Categorize16.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit/PropertyGrid/Images/Categorize16.png
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit/PropertyGrid/Images/ClearFilter16.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit/PropertyGrid/Images/ClearFilter16.png
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit/PropertyGrid/Images/Inheritance11.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit/PropertyGrid/Images/Inheritance11.png
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit/Themes/Generic/Images/close_hover.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit/Themes/Generic/Images/close_hover.png
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit/Themes/Generic/Images/resize_grip.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit/Themes/Generic/Images/resize_grip.png
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit/Wizard/Implementation/Wizard.Icon.bmp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit/Wizard/Implementation/Wizard.Icon.bmp
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit.LiveExplorer/Resources/toolkitIcon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit.LiveExplorer/Resources/toolkitIcon.png
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/Chart/Photo/1.bmp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/Chart/Photo/1.bmp
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/Chart/Photo/2.bmp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/Chart/Photo/2.bmp
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/Chart/Photo/3.bmp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/Chart/Photo/3.bmp
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/Chart/Photo/4.bmp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/Chart/Photo/4.bmp
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/Chart/Photo/5.bmp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/Chart/Photo/5.bmp
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/Chart/Photo/6.bmp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/Chart/Photo/6.bmp
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit/CollectionControl/Images/Duplicate.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit/CollectionControl/Images/Duplicate.png
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit/MultiLineTextEditor/Images/Notes16.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit/MultiLineTextEditor/Images/Notes16.png
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit/PropertyGrid/Images/SortAscending16.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit/PropertyGrid/Images/SortAscending16.png
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit/RichTextBoxFormatBar/Images/Bold16.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit/RichTextBoxFormatBar/Images/Bold16.png
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit/RichTextBoxFormatBar/Images/Italic16.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit/RichTextBoxFormatBar/Images/Italic16.png
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit/Themes/Generic/Images/close_inactive.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit/Themes/Generic/Images/close_inactive.png
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit/Themes/Generic/Images/close_normal.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit/Themes/Generic/Images/close_normal.png
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit/Themes/Generic/Images/close_pressed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit/Themes/Generic/Images/close_pressed.png
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit/Themes/Generic/Images/maximize_hover.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit/Themes/Generic/Images/maximize_hover.png
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit/Themes/Generic/Images/minimize_hover.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit/Themes/Generic/Images/minimize_hover.png
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit/Themes/Generic/Images/restore_hover.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit/Themes/Generic/Images/restore_hover.png
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit/Themes/Generic/Images/restore_normal.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit/Themes/Generic/Images/restore_normal.png
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit/RichTextBoxFormatBar/Images/Bullets16.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit/RichTextBoxFormatBar/Images/Bullets16.png
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit/Themes/Generic/Images/maximize_normal.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit/Themes/Generic/Images/maximize_normal.png
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit/Themes/Generic/Images/maximize_pressed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit/Themes/Generic/Images/maximize_pressed.png
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit/Themes/Generic/Images/minimize_normal.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit/Themes/Generic/Images/minimize_normal.png
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit/Themes/Generic/Images/minimize_pressed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit/Themes/Generic/Images/minimize_pressed.png
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit/Themes/Generic/Images/restore_disabled.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit/Themes/Generic/Images/restore_disabled.png
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit/Themes/Generic/Images/restore_inactive.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit/Themes/Generic/Images/restore_inactive.png
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit/Themes/Generic/Images/restore_pressed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit/Themes/Generic/Images/restore_pressed.png
--------------------------------------------------------------------------------
/Libs/READ_ME.txt:
--------------------------------------------------------------------------------
1 | The file Xceed.Wpf.Samples.SampleData.dll has been created from Xceed.Silverlight.Samples.SampleData.dll of the Silverlight ListBox.
2 | Only the Silverlight has been changed to Wpf.
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/Gauge/Resources/fuel.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/Gauge/Resources/fuel.jpg
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit/Calculator/Implementation/Calculator.Icon.bmp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit/Calculator/Implementation/Calculator.Icon.bmp
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit/IconButton/Implementation/IconButton.Icon.bmp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit/IconButton/Implementation/IconButton.Icon.bmp
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit/Magnifier/Implementation/Magnifier.Icon.bmp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit/Magnifier/Implementation/Magnifier.Icon.bmp
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit/MessageBox/Implementation/MessageBox.Icon.bmp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit/MessageBox/Implementation/MessageBox.Icon.bmp
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit/PropertyGrid/Images/AdvancedProperties11.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit/PropertyGrid/Images/AdvancedProperties11.png
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit/RichTextBoxFormatBar/Images/CenterAlign16.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit/RichTextBoxFormatBar/Images/CenterAlign16.png
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit/RichTextBoxFormatBar/Images/LeftAlign16.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit/RichTextBoxFormatBar/Images/LeftAlign16.png
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit/RichTextBoxFormatBar/Images/Numbering16.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit/RichTextBoxFormatBar/Images/Numbering16.png
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit/RichTextBoxFormatBar/Images/RightAlign16.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit/RichTextBoxFormatBar/Images/RightAlign16.png
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit/RichTextBoxFormatBar/Images/Underline16.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit/RichTextBoxFormatBar/Images/Underline16.png
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit/Themes/Generic/Images/close_rounded_hover.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit/Themes/Generic/Images/close_rounded_hover.png
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit/Themes/Generic/Images/maximize_disabled.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit/Themes/Generic/Images/maximize_disabled.png
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit/Themes/Generic/Images/maximize_inactive.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit/Themes/Generic/Images/maximize_inactive.png
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit/Themes/Generic/Images/minimize_inactive.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit/Themes/Generic/Images/minimize_inactive.png
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit/TimePicker/Implementation/TimePicker.Icon.bmp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit/TimePicker/Implementation/TimePicker.Icon.bmp
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/Gauge/Resources/arrow.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/Gauge/Resources/arrow.png
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/Gauge/Resources/smiley.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/Gauge/Resources/smiley.png
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/Theming/Images/Working.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/Theming/Images/Working.png
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit/ChildWindow/Implementation/ChildWindow.Icon.bmp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit/ChildWindow/Implementation/ChildWindow.Icon.bmp
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit/ColorCanvas/Implementation/ColorCanvas.Icon.bmp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit/ColorCanvas/Implementation/ColorCanvas.Icon.bmp
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit/ColorPicker/Implementation/ColorPicker.Icon.bmp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit/ColorPicker/Implementation/ColorPicker.Icon.bmp
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit/RangeSlider/Implementation/RangeSlider.Icon.bmp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit/RangeSlider/Implementation/RangeSlider.Icon.bmp
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit/RichTextBoxFormatBar/Images/JustifyAlign16.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit/RichTextBoxFormatBar/Images/JustifyAlign16.png
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit/SplitButton/Implementation/SplitButton.Icon.bmp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit/SplitButton/Implementation/SplitButton.Icon.bmp
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit/Themes/Generic/Images/close_rounded_normal.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit/Themes/Generic/Images/close_rounded_normal.png
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit/Themes/Generic/Images/close_rounded_pressed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit/Themes/Generic/Images/close_rounded_pressed.png
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/Button/Resources/Default.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/Button/Resources/Default.jpg
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/Gauge/Resources/pointing.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/Gauge/Resources/pointing.jpg
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/Theming/Images/NoPicture.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/Theming/Images/NoPicture.png
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/Theming/Images/NoPictureA.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/Theming/Images/NoPictureA.jpg
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/Theming/Images/NoPictureB.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/Theming/Images/NoPictureB.jpg
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/Theming/Images/NoPictureC.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/Theming/Images/NoPictureC.jpg
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/Theming/Images/NoPictureD.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/Theming/Images/NoPictureD.jpg
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/Theming/Images/document.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/Theming/Images/document.png
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/Zoombox/Resources/Default.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/Zoombox/Resources/Default.jpg
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit/CheckListBox/Implementation/CheckListBox.Icon.bmp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit/CheckListBox/Implementation/CheckListBox.Icon.bmp
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit/NumericUpDown/Implementation/ByteUpDown.Icon.bmp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit/NumericUpDown/Implementation/ByteUpDown.Icon.bmp
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit/NumericUpDown/Implementation/DoubleUpDown.Icon.bmp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit/NumericUpDown/Implementation/DoubleUpDown.Icon.bmp
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit/NumericUpDown/Implementation/LongUpDown.Icon.bmp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit/NumericUpDown/Implementation/LongUpDown.Icon.bmp
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit/NumericUpDown/Implementation/SByteUpDown.Icon.bmp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit/NumericUpDown/Implementation/SByteUpDown.Icon.bmp
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit/NumericUpDown/Implementation/ShortUpDown.Icon.bmp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit/NumericUpDown/Implementation/ShortUpDown.Icon.bmp
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit/NumericUpDown/Implementation/SingleUpDown.Icon.bmp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit/NumericUpDown/Implementation/SingleUpDown.Icon.bmp
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit/NumericUpDown/Implementation/ULongUpDown.Icon.bmp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit/NumericUpDown/Implementation/ULongUpDown.Icon.bmp
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit/NumericUpDown/Implementation/UShortUpDown.Icon.bmp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit/NumericUpDown/Implementation/UShortUpDown.Icon.bmp
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit/PropertyGrid/Implementation/PropertyGrid.Icon.bmp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit/PropertyGrid/Implementation/PropertyGrid.Icon.bmp
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit/RichTextBoxFormatBar/Images/FontColorPicker16.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit/RichTextBoxFormatBar/Images/FontColorPicker16.png
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit/RichTextBoxFormatBar/RichTextBoxFormatBar.Icon.bmp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit/RichTextBoxFormatBar/RichTextBoxFormatBar.Icon.bmp
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit/Themes/Generic/Images/close_rounded_inactive.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit/Themes/Generic/Images/close_rounded_inactive.png
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit/Themes/Generic/Images/close_toolwindow_hover.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit/Themes/Generic/Images/close_toolwindow_hover.png
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit/Themes/Generic/Images/close_toolwindow_normal.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit/Themes/Generic/Images/close_toolwindow_normal.png
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit/Themes/Generic/Images/close_toolwindow_pressed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit/Themes/Generic/Images/close_toolwindow_pressed.png
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/SlideShow/Resources/photo_1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/SlideShow/Resources/photo_1.jpg
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/SlideShow/Resources/photo_2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/SlideShow/Resources/photo_2.jpg
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/SlideShow/Resources/photo_3.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/SlideShow/Resources/photo_3.jpg
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/SlideShow/Resources/photo_4.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/SlideShow/Resources/photo_4.jpg
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/SlideShow/Resources/photo_5.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/SlideShow/Resources/photo_5.jpg
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/SlideShow/Resources/photo_6.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/SlideShow/Resources/photo_6.jpg
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/SlideShow/Resources/photo_7.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/SlideShow/Resources/photo_7.jpg
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/SlideShow/Resources/photo_8.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/SlideShow/Resources/photo_8.jpg
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/SlideShow/Resources/photo_9.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/SlideShow/Resources/photo_9.jpg
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/Text/Resources/PencilTool16.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/Text/Resources/PencilTool16.png
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/Window/Resources/xceed_icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/Window/Resources/xceed_icon.png
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit/BusyIndicator/Implementation/BusyIndicator.Icon.bmp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit/BusyIndicator/Implementation/BusyIndicator.Icon.bmp
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit/ButtonSpinner/Implementation/ButtonSpinner.Icon.bmp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit/ButtonSpinner/Implementation/ButtonSpinner.Icon.bmp
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit/CheckComboBox/Implementation/CheckComboBox.Icon.bmp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit/CheckComboBox/Implementation/CheckComboBox.Icon.bmp
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit/MaskedTextBox/Implementation/MaskedTextBox.Icon.bmp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit/MaskedTextBox/Implementation/MaskedTextBox.Icon.bmp
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit/NumericUpDown/Implementation/DecimalUpDown.Icon.bmp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit/NumericUpDown/Implementation/DecimalUpDown.Icon.bmp
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit/NumericUpDown/Implementation/IntegerUpDown.Icon.bmp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit/NumericUpDown/Implementation/IntegerUpDown.Icon.bmp
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit/NumericUpDown/Implementation/UIntegerUpDown.Icon.bmp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit/NumericUpDown/Implementation/UIntegerUpDown.Icon.bmp
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit/Themes/Generic/Images/close_toolwindow_inactive.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit/Themes/Generic/Images/close_toolwindow_inactive.png
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit/TimelinePanel/Implementation/TimelinePanel.Icon.bmp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit/TimelinePanel/Implementation/TimelinePanel.Icon.bmp
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/Button/Resources/PencilTool16.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/Button/Resources/PencilTool16.png
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/Gauge/OpenSourceImages/Gauge.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/Gauge/OpenSourceImages/Gauge.png
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/ListBox/Resources/Netflix_icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/ListBox/Resources/Netflix_icon.png
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/MaterialControls/Resources/Zip.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/MaterialControls/Resources/Zip.png
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/MultiCalendar/Resources/April.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/MultiCalendar/Resources/April.jpg
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/MultiCalendar/Resources/July.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/MultiCalendar/Resources/July.jpg
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/MultiCalendar/Resources/June.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/MultiCalendar/Resources/June.jpg
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/MultiCalendar/Resources/March.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/MultiCalendar/Resources/March.jpg
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/Panels/OpenSourceImages/Canvas.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/Panels/OpenSourceImages/Canvas.png
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/Panels/OpenSourceImages/Grid.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/Panels/OpenSourceImages/Grid.png
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/PropertyGrid/Resources/woman.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/PropertyGrid/Resources/woman.png
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/Rating/OpenSourceImages/Rating.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/Rating/OpenSourceImages/Rating.png
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/Theming/Images/property-blue.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/Theming/Images/property-blue.png
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit/DateTimePicker/Implementation/DateTimePicker.Icon.bmp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit/DateTimePicker/Implementation/DateTimePicker.Icon.bmp
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit/DateTimeUpDown/Implementation/DateTimeUpDown.Icon.bmp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit/DateTimeUpDown/Implementation/DateTimeUpDown.Icon.bmp
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit/DropDownButton/Implementation/DropDownButton.Icon.bmp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit/DropDownButton/Implementation/DropDownButton.Icon.bmp
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit/StyleableWindow/Implementation/StyleableWindow.Icon.bmp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit/StyleableWindow/Implementation/StyleableWindow.Icon.bmp
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit/TimeSpanUpDown/Implementation/TimeSpanUpDown.Icon.bmp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit/TimeSpanUpDown/Implementation/TimeSpanUpDown.Icon.bmp
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/BusyIndicator/Images/CdBurning32.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/BusyIndicator/Images/CdBurning32.png
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/Chart/OpenSourceImages/ChartAxis.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/Chart/OpenSourceImages/ChartAxis.png
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/ListBox/OpenSourceImages/ListBox.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/ListBox/OpenSourceImages/ListBox.png
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/MaterialControls/Resources/SFTP.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/MaterialControls/Resources/SFTP.png
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/MultiCalendar/Resources/December.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/MultiCalendar/Resources/December.jpg
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/MultiCalendar/Resources/February.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/MultiCalendar/Resources/February.jpg
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/MultiCalendar/Resources/October.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/MultiCalendar/Resources/October.jpg
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/Panels/OpenSourceImages/Carousel.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/Panels/OpenSourceImages/Carousel.png
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/PropertyGrid/OpenSourceImages/PropertiesSource.cs.txt:
--------------------------------------------------------------------------------
1 |
2 | private class MyData
3 | {
4 | public string MyName { get; set; }
5 | public object MyValue { get; set; }
6 | }
7 |
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/Theming/Images/address-book-open.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/Theming/Images/address-book-open.png
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/Theming/Images/alarm-clock-blue.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/Theming/Images/alarm-clock-blue.png
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit/CalculatorUpDown/Implementation/CalculatorUpDown.Icon.bmp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit/CalculatorUpDown/Implementation/CalculatorUpDown.Icon.bmp
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit/WatermarkTextBox/Implementation/WatermarkTextBox.Icon.bmp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit/WatermarkTextBox/Implementation/WatermarkTextBox.Icon.bmp
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/Chart/OpenSourceImages/ChartLegend.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/Chart/OpenSourceImages/ChartLegend.png
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/DataGrid/OpenSourceImages/DataGrid.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/DataGrid/OpenSourceImages/DataGrid.png
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/MaterialControls/Resources/Business.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/MaterialControls/Resources/Business.png
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/MaterialControls/Resources/DataGrid.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/MaterialControls/Resources/DataGrid.png
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/MaterialControls/Resources/Toolkit.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/MaterialControls/Resources/Toolkit.png
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/MaterialControls/Resources/WhitePen.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/MaterialControls/Resources/WhitePen.png
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/MaterialControls/Resources/italy.4.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/MaterialControls/Resources/italy.4.gif
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/MultiCalendar/Resources/September.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/MultiCalendar/Resources/September.jpg
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/Panels/OpenSourceImages/CameraPanel.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/Panels/OpenSourceImages/CameraPanel.png
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/Panels/OpenSourceImages/DockPanel.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/Panels/OpenSourceImages/DockPanel.png
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/Panels/OpenSourceImages/StackPanel.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/Panels/OpenSourceImages/StackPanel.png
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/Theming/Images/address-book--pencil.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/Theming/Images/address-book--pencil.png
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/ToggleSwitch/Resources/PencilTool16.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/ToggleSwitch/Resources/PencilTool16.png
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit/AutoSelectTextBox/Implementation/AutoSelectTextBox.Icon.bmp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit/AutoSelectTextBox/Implementation/AutoSelectTextBox.Icon.bmp
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit/CollectionControl/Implementation/CollectionControl.Icon.bmp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit/CollectionControl/Implementation/CollectionControl.Icon.bmp
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit/RichTextBoxFormatBar/Images/TextHighlightColorPicker16.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit/RichTextBoxFormatBar/Images/TextHighlightColorPicker16.png
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit/WatermarkComboBox/Implementation/WatermarkComboBox.Icon.bmp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit/WatermarkComboBox/Implementation/WatermarkComboBox.Icon.bmp
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/MaterialControls/Resources/building16.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/MaterialControls/Resources/building16.png
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/Panels/OpenSourceImages/RadialCanvas.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/Panels/OpenSourceImages/RadialCanvas.png
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/SlideShow/OpenSourceImages/SlideShow.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/SlideShow/OpenSourceImages/SlideShow.png
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/Chart/OpenSourceImages/ChartBasicTypes.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/Chart/OpenSourceImages/ChartBasicTypes.png
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/FilePicker/OpenSourceImages/FilePicker.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/FilePicker/OpenSourceImages/FilePicker.png
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/MaterialControls/Resources/PencilTool16.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/MaterialControls/Resources/PencilTool16.png
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/Panels/OpenSourceImages/PerspectivePanel.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/Panels/OpenSourceImages/PerspectivePanel.png
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/Panels/OpenSourceImages/RelativeCanvas.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/Panels/OpenSourceImages/RelativeCanvas.png
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/Text/OpenSourceImages/TokenizedTextBox.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/Text/OpenSourceImages/TokenizedTextBox.png
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/Theming/OpenSourceImages/CoreWPFControls.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/Theming/OpenSourceImages/CoreWPFControls.png
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/Theming/OpenSourceImages/ListBoxControls.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/Theming/OpenSourceImages/ListBoxControls.png
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/WatermarkComboBox/Resources/PencilTool16.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/WatermarkComboBox/Resources/PencilTool16.png
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit/CollectionControl/Implementation/CollectionControlButton.Icon.bmp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit/CollectionControl/Implementation/CollectionControlButton.Icon.bmp
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit/MultiLineTextEditor/Implementation/MultiLineTextEditor.Icon.bmp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit/MultiLineTextEditor/Implementation/MultiLineTextEditor.Icon.bmp
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit/WatermarkPasswordBox/Implementation/WatermarkPasswordBox.Icon.bmp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit/WatermarkPasswordBox/Implementation/WatermarkPasswordBox.Icon.bmp
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/Panels/OpenSourceImages/StackedStackPanel.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/Panels/OpenSourceImages/StackedStackPanel.png
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/PropertyGrid/OpenSourceImages/Localization.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/PropertyGrid/OpenSourceImages/Localization.png
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/Theming/OpenSourceImages/DataGridControls.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/Theming/OpenSourceImages/DataGridControls.png
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/ToggleSwitch/OpenSourceImages/ToggleSwitch.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/ToggleSwitch/OpenSourceImages/ToggleSwitch.png
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/Chart/OpenSourceImages/ChartStylingAxesGrid.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/Chart/OpenSourceImages/ChartStylingAxesGrid.png
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/Chart/OpenSourceImages/ChartStylingLineSeries.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/Chart/OpenSourceImages/ChartStylingLineSeries.png
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/Chart/OpenSourceImages/ChartStylingPieSeries.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/Chart/OpenSourceImages/ChartStylingPieSeries.png
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/ExtTabControl/OpenSourceImages/ExtTabControl.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/ExtTabControl/OpenSourceImages/ExtTabControl.png
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/MultiCalendar/OpenSourceImages/MultiCalendar.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/MultiCalendar/OpenSourceImages/MultiCalendar.png
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/Panels/OpenSourceImages/AnimatedTimelinePanel.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/Panels/OpenSourceImages/AnimatedTimelinePanel.png
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/Panels/OpenSourceImages/AutoStretchStackPanel.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/Panels/OpenSourceImages/AutoStretchStackPanel.png
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/PileFlowPanel/OpenSourceImages/PileFlowPanel.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/PileFlowPanel/OpenSourceImages/PileFlowPanel.png
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/Theming/OpenSourceImages/AvalonDockMetroDark.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/Theming/OpenSourceImages/AvalonDockMetroDark.png
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/Theming/OpenSourceImages/AvalonDockMetroLight.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/Theming/OpenSourceImages/AvalonDockMetroLight.png
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/Theming/OpenSourceImages/AvalonDockWindows10.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/Theming/OpenSourceImages/AvalonDockWindows10.png
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/Chart/OpenSourceImages/ChartStylingColumnSeries.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/Chart/OpenSourceImages/ChartStylingColumnSeries.png
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/DataGrid/OpenSourceImages/MultiColumnsComboBox.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/DataGrid/OpenSourceImages/MultiColumnsComboBox.png
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/MaterialControls/OpenSourceImages/MaterialFrame.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/MaterialControls/OpenSourceImages/MaterialFrame.png
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/MaterialControls/OpenSourceImages/MaterialTabs.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/MaterialControls/OpenSourceImages/MaterialTabs.png
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/MaterialControls/OpenSourceImages/MaterialToast.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/MaterialControls/OpenSourceImages/MaterialToast.png
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit/CollectionControl/Implementation/PrimitiveTypeCollectionControl.Icon.bmp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit/CollectionControl/Implementation/PrimitiveTypeCollectionControl.Icon.bmp
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/MaterialControls/OpenSourceImages/MaterialButton.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/MaterialControls/OpenSourceImages/MaterialButton.png
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/MaterialControls/OpenSourceImages/MaterialCheckBox.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/MaterialControls/OpenSourceImages/MaterialCheckBox.png
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/MaterialControls/OpenSourceImages/MaterialComboBox.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/MaterialControls/OpenSourceImages/MaterialComboBox.png
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/MaterialControls/OpenSourceImages/MaterialControls.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/MaterialControls/OpenSourceImages/MaterialControls.png
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/MaterialControls/OpenSourceImages/MaterialDropDown.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/MaterialControls/OpenSourceImages/MaterialDropDown.png
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/MaterialControls/OpenSourceImages/MaterialListBox.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/MaterialControls/OpenSourceImages/MaterialListBox.png
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/MaterialControls/OpenSourceImages/MaterialSlider.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/MaterialControls/OpenSourceImages/MaterialSlider.png
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/MaterialControls/OpenSourceImages/MaterialSwitch.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/MaterialControls/OpenSourceImages/MaterialSwitch.png
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/MaterialControls/OpenSourceImages/MaterialToolTip.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/MaterialControls/OpenSourceImages/MaterialToolTip.png
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/PropertyGrid/OpenSourceImages/MultiSelectedObjects.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/PropertyGrid/OpenSourceImages/MultiSelectedObjects.png
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/Theming/OpenSourceImages/AvalonDockOffice2007Black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/Theming/OpenSourceImages/AvalonDockOffice2007Black.png
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/Theming/OpenSourceImages/AvalonDockOffice2007Blue.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/Theming/OpenSourceImages/AvalonDockOffice2007Blue.png
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/Chart/OpenSourceImages/ChartSeriesDataPointsBinding.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/Chart/OpenSourceImages/ChartSeriesDataPointsBinding.png
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/MaterialControls/OpenSourceImages/MaterialHamburger.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/MaterialControls/OpenSourceImages/MaterialHamburger.png
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/MaterialControls/OpenSourceImages/MaterialTextField.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/MaterialControls/OpenSourceImages/MaterialTextField.png
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/PropertyGrid/OpenSourceImages/ExpandingNonPrimitives.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/PropertyGrid/OpenSourceImages/ExpandingNonPrimitives.png
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/Theming/OpenSourceImages/AvalonDockOffice2007Silver.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/Theming/OpenSourceImages/AvalonDockOffice2007Silver.png
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/Theming/OpenSourceImages/ExtendedWPFToolkitControls.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/Theming/OpenSourceImages/ExtendedWPFToolkitControls.png
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/MaterialControls/OpenSourceImages/MaterialProgressBar.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/MaterialControls/OpenSourceImages/MaterialProgressBar.png
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/MaterialControls/OpenSourceImages/MaterialRadioButton.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/MaterialControls/OpenSourceImages/MaterialRadioButton.png
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/PropertyGrid/OpenSourceImages/Properties.cs.txt:
--------------------------------------------------------------------------------
1 |
2 | public class Employee
3 | {
4 | public string Name { get; set; }
5 | public bool IsConfirmed { get; set; }
6 | public string Department { get; set; }
7 | }
8 |
9 |
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/MaterialControls/OpenSourceImages/MaterialProgressBarCircular.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetprojects/WpfExtendedToolkit/HEAD/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/MaterialControls/OpenSourceImages/MaterialProgressBarCircular.png
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/PropertyGrid/OpenSourceImages/PropertiesSource.xaml.txt:
--------------------------------------------------------------------------------
1 |
2 |
5 |
6 |
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit/BrushPicker/Implementation/BrushItem.cs:
--------------------------------------------------------------------------------
1 | using System.Windows.Media;
2 |
3 | namespace Xceed.Wpf.Toolkit.BrushPicker.Implementation
4 | {
5 | public class BrushItem
6 | {
7 | public string Name { get; set; }
8 | public Brush Brush { get; set; }
9 | }
10 | }
11 |
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/PropertyGrid/OpenSourceImages/DefinitionKey.cs.txt:
--------------------------------------------------------------------------------
1 |
2 | private class Person
3 | {
4 | [DefinitionKey( "nameType" )]
5 | public string FirstName { get; set; }
6 | [DefinitionKey( "nameType" )]
7 | public string LastName { get; set; }
8 | [DefinitionKey( typeof( int? ) )]
9 | public object ReferenceNo { get; set; }
10 | }
11 |
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit.LiveExplorer/Properties/Settings.settings:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/PropertyGrid/OpenSourceImages/DefinitionKey.xaml.txt:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
9 |
10 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit/VisualStates.cs:
--------------------------------------------------------------------------------
1 | /*************************************************************************************
2 |
3 | Toolkit for WPF
4 |
5 | Copyright (C) 2007-2018 Xceed Software Inc.
6 |
7 | This program is provided to you under the terms of the Microsoft Public
8 | License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
9 |
10 | For more features, controls, and fast professional support,
11 | pick up the Plus Edition at https://xceed.com/xceed-toolkit-plus-for-wpf/
12 |
13 | Stay informed: follow @datagrid on Twitter or Like http://facebook.com/datagrids
14 |
15 | ***********************************************************************************/
16 |
17 | namespace Xceed.Wpf.Toolkit
18 | {
19 | internal static partial class VisualStates
20 | {
21 |
22 | }
23 | }
24 |
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.DataGrid/(enums)/SelectionBehaviorEnum.cs:
--------------------------------------------------------------------------------
1 | /*************************************************************************************
2 |
3 | Extended WPF Toolkit
4 |
5 | Copyright (C) 2007-2013 Xceed Software Inc.
6 |
7 | This program is provided to you under the terms of the Microsoft Public
8 | License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
9 |
10 | For more features, controls, and fast professional support,
11 | pick up the Plus Edition at http://xceed.com/wpf_toolkit
12 |
13 | Stay informed: follow @datagrid on Twitter or Like http://facebook.com/datagrids
14 |
15 | ***********************************************************************************/
16 |
17 | namespace Xceed.Wpf.DataGrid
18 | {
19 | public enum SelectionBehavior
20 | {
21 | Default,
22 | None,
23 | All
24 | }
25 | }
26 |
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.DataGrid/Utils/Wpf/ITreeTraversalStrategy.cs:
--------------------------------------------------------------------------------
1 | /*************************************************************************************
2 |
3 | Extended WPF Toolkit
4 |
5 | Copyright (C) 2007-2013 Xceed Software Inc.
6 |
7 | This program is provided to you under the terms of the Microsoft Public
8 | License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
9 |
10 | For more features, controls, and fast professional support,
11 | pick up the Plus Edition at http://xceed.com/wpf_toolkit
12 |
13 | Stay informed: follow @datagrid on Twitter or Like http://facebook.com/datagrids
14 |
15 | ***********************************************************************************/
16 |
17 |
18 | namespace Xceed.Utils.Wpf
19 | {
20 | internal interface ITreeTraversalStrategy
21 | {
22 | ITreeTraversal Create();
23 | }
24 | }
25 |
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit/Core/LocationEnum.cs:
--------------------------------------------------------------------------------
1 | /*************************************************************************************
2 |
3 | Toolkit for WPF
4 |
5 | Copyright (C) 2007-2019 Xceed Software Inc.
6 |
7 | This program is provided to you under the terms of the Microsoft Public
8 | License (Ms-PL) as published at https://github.com/xceedsoftware/wpftoolkit/blob/master/license.md
9 |
10 | For more features, controls, and fast professional support,
11 | pick up the Plus Edition at https://xceed.com/xceed-toolkit-plus-for-wpf/
12 |
13 | Stay informed: follow @datagrid on Twitter or Like http://facebook.com/datagrids
14 |
15 | ***********************************************************************************/
16 |
17 | namespace Xceed.Wpf.Toolkit.Core
18 | {
19 | public enum Location
20 | {
21 | Left,
22 | Right
23 | }
24 | }
25 |
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.DataGrid/(enums)/ColumnDraggableStatusEnum.cs:
--------------------------------------------------------------------------------
1 | /*************************************************************************************
2 |
3 | Extended WPF Toolkit
4 |
5 | Copyright (C) 2007-2013 Xceed Software Inc.
6 |
7 | This program is provided to you under the terms of the Microsoft Public
8 | License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
9 |
10 | For more features, controls, and fast professional support,
11 | pick up the Plus Edition at http://xceed.com/wpf_toolkit
12 |
13 | Stay informed: follow @datagrid on Twitter or Like http://facebook.com/datagrids
14 |
15 | ***********************************************************************************/
16 |
17 | namespace Xceed.Wpf.DataGrid
18 | {
19 | public enum ColumnDraggableStatus
20 | {
21 | Draggable = 0,
22 | FirstUndraggable,
23 | LastUndraggable,
24 | }
25 | }
26 |
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.DataGrid/(enums)/ColumnWidthUnitTypeEnum.cs:
--------------------------------------------------------------------------------
1 | /*************************************************************************************
2 |
3 | Extended WPF Toolkit
4 |
5 | Copyright (C) 2007-2013 Xceed Software Inc.
6 |
7 | This program is provided to you under the terms of the Microsoft Public
8 | License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
9 |
10 | For more features, controls, and fast professional support,
11 | pick up the Plus Edition at http://xceed.com/wpf_toolkit
12 |
13 | Stay informed: follow @datagrid on Twitter or Like http://facebook.com/datagrids
14 |
15 | ***********************************************************************************/
16 |
17 | using System;
18 |
19 | namespace Xceed.Wpf.DataGrid
20 | {
21 | public enum ColumnWidthUnitType
22 | {
23 | Pixel,
24 | Star
25 | }
26 | }
27 |
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.DataGrid/(enums)/LocationTypeEnum.cs:
--------------------------------------------------------------------------------
1 | /*************************************************************************************
2 |
3 | Extended WPF Toolkit
4 |
5 | Copyright (C) 2007-2013 Xceed Software Inc.
6 |
7 | This program is provided to you under the terms of the Microsoft Public
8 | License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
9 |
10 | For more features, controls, and fast professional support,
11 | pick up the Plus Edition at http://xceed.com/wpf_toolkit
12 |
13 | Stay informed: follow @datagrid on Twitter or Like http://facebook.com/datagrids
14 |
15 | ***********************************************************************************/
16 |
17 |
18 | namespace Xceed.Wpf.DataGrid
19 | {
20 | internal enum LocationType
21 | {
22 | Column,
23 | Start,
24 | End,
25 | Splitter,
26 | Orphan,
27 | }
28 | }
29 |
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.DataGrid/Views/(Enums)/ColumnVirtualizationModeEnum.cs:
--------------------------------------------------------------------------------
1 | /*************************************************************************************
2 |
3 | Extended WPF Toolkit
4 |
5 | Copyright (C) 2007-2013 Xceed Software Inc.
6 |
7 | This program is provided to you under the terms of the Microsoft Public
8 | License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
9 |
10 | For more features, controls, and fast professional support,
11 | pick up the Plus Edition at http://xceed.com/wpf_toolkit
12 |
13 | Stay informed: follow @datagrid on Twitter or Like http://facebook.com/datagrids
14 |
15 | ***********************************************************************************/
16 |
17 | namespace Xceed.Wpf.DataGrid.Views
18 | {
19 | public enum ColumnVirtualizationMode
20 | {
21 | None,
22 | Recycling,
23 | Virtualizing
24 | }
25 | }
26 |
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.DataGrid/(enums)/PagingBehaviorEnum.cs:
--------------------------------------------------------------------------------
1 | /*************************************************************************************
2 |
3 | Extended WPF Toolkit
4 |
5 | Copyright (C) 2007-2013 Xceed Software Inc.
6 |
7 | This program is provided to you under the terms of the Microsoft Public
8 | License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
9 |
10 | For more features, controls, and fast professional support,
11 | pick up the Plus Edition at http://xceed.com/wpf_toolkit
12 |
13 | Stay informed: follow @datagrid on Twitter or Like http://facebook.com/datagrids
14 |
15 | ***********************************************************************************/
16 |
17 | using System;
18 |
19 | namespace Xceed.Wpf.DataGrid
20 | {
21 | public enum PagingBehavior
22 | {
23 | TopToBottom,
24 | LeftToRight
25 | }
26 | }
27 |
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.DataGrid/(enums)/ValidationModeEnum.cs:
--------------------------------------------------------------------------------
1 | /*************************************************************************************
2 |
3 | Extended WPF Toolkit
4 |
5 | Copyright (C) 2007-2013 Xceed Software Inc.
6 |
7 | This program is provided to you under the terms of the Microsoft Public
8 | License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
9 |
10 | For more features, controls, and fast professional support,
11 | pick up the Plus Edition at http://xceed.com/wpf_toolkit
12 |
13 | Stay informed: follow @datagrid on Twitter or Like http://facebook.com/datagrids
14 |
15 | ***********************************************************************************/
16 |
17 | using System;
18 |
19 | namespace Xceed.Wpf.DataGrid
20 | {
21 | public enum ValidationMode
22 | {
23 | CellEndingEdit,
24 | RowEndingEdit
25 | }
26 | }
27 |
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.DataGrid/(enums)/ItemScrollingBehaviorEnum.cs:
--------------------------------------------------------------------------------
1 | /*************************************************************************************
2 |
3 | Extended WPF Toolkit
4 |
5 | Copyright (C) 2007-2013 Xceed Software Inc.
6 |
7 | This program is provided to you under the terms of the Microsoft Public
8 | License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
9 |
10 | For more features, controls, and fast professional support,
11 | pick up the Plus Edition at http://xceed.com/wpf_toolkit
12 |
13 | Stay informed: follow @datagrid on Twitter or Like http://facebook.com/datagrids
14 |
15 | ***********************************************************************************/
16 |
17 | using System;
18 |
19 | namespace Xceed.Wpf.DataGrid
20 | {
21 | public enum ItemScrollingBehavior
22 | {
23 | Deferred,
24 | Immediate
25 | }
26 | }
27 |
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.DataGrid/(enums)/PropertyRouteSegmentTypeEnum.cs:
--------------------------------------------------------------------------------
1 | /*************************************************************************************
2 |
3 | Extended WPF Toolkit
4 |
5 | Copyright (C) 2007-2013 Xceed Software Inc.
6 |
7 | This program is provided to you under the terms of the Microsoft Public
8 | License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
9 |
10 | For more features, controls, and fast professional support,
11 | pick up the Plus Edition at http://xceed.com/wpf_toolkit
12 |
13 | Stay informed: follow @datagrid on Twitter or Like http://facebook.com/datagrids
14 |
15 | ***********************************************************************************/
16 |
17 |
18 | namespace Xceed.Wpf.DataGrid
19 | {
20 | internal enum PropertyRouteSegmentType : byte
21 | {
22 | Self,
23 | Property,
24 | Indexer,
25 | Other,
26 | }
27 | }
28 |
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.DataGrid/(enums)/SortDirectionEnum.cs:
--------------------------------------------------------------------------------
1 | /*************************************************************************************
2 |
3 | Extended WPF Toolkit
4 |
5 | Copyright (C) 2007-2013 Xceed Software Inc.
6 |
7 | This program is provided to you under the terms of the Microsoft Public
8 | License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
9 |
10 | For more features, controls, and fast professional support,
11 | pick up the Plus Edition at http://xceed.com/wpf_toolkit
12 |
13 | Stay informed: follow @datagrid on Twitter or Like http://facebook.com/datagrids
14 |
15 | ***********************************************************************************/
16 |
17 | using System;
18 |
19 | namespace Xceed.Wpf.DataGrid
20 | {
21 | public enum SortDirection
22 | {
23 | None,
24 | Ascending,
25 | Descending,
26 | }
27 | }
28 |
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit/ChildWindow/Implementation/WindowState.cs:
--------------------------------------------------------------------------------
1 | /*************************************************************************************
2 |
3 | Toolkit for WPF
4 |
5 | Copyright (C) 2007-2019 Xceed Software Inc.
6 |
7 | This program is provided to you under the terms of the Microsoft Public
8 | License (Ms-PL) as published at https://github.com/xceedsoftware/wpftoolkit/blob/master/license.md
9 |
10 | For more features, controls, and fast professional support,
11 | pick up the Plus Edition at https://xceed.com/xceed-toolkit-plus-for-wpf/
12 |
13 | Stay informed: follow @datagrid on Twitter or Like http://facebook.com/datagrids
14 |
15 | ***********************************************************************************/
16 |
17 | namespace Xceed.Wpf.Toolkit
18 | {
19 | public enum WindowState
20 | {
21 | Closed,
22 | Open
23 | }
24 | }
25 |
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit/Magnifier/Implementation/FrameType.cs:
--------------------------------------------------------------------------------
1 | /*************************************************************************************
2 |
3 | Toolkit for WPF
4 |
5 | Copyright (C) 2007-2019 Xceed Software Inc.
6 |
7 | This program is provided to you under the terms of the Microsoft Public
8 | License (Ms-PL) as published at https://github.com/xceedsoftware/wpftoolkit/blob/master/license.md
9 |
10 | For more features, controls, and fast professional support,
11 | pick up the Plus Edition at https://xceed.com/xceed-toolkit-plus-for-wpf/
12 |
13 | Stay informed: follow @datagrid on Twitter or Like http://facebook.com/datagrids
14 |
15 | ***********************************************************************************/
16 |
17 | namespace Xceed.Wpf.Toolkit
18 | {
19 | public enum FrameType
20 | {
21 | Circle,
22 | Rectangle
23 | }
24 | }
25 |
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit/Zoombox/ZoomboxZoomOn.cs:
--------------------------------------------------------------------------------
1 | /*************************************************************************************
2 |
3 | Toolkit for WPF
4 |
5 | Copyright (C) 2007-2019 Xceed Software Inc.
6 |
7 | This program is provided to you under the terms of the Microsoft Public
8 | License (Ms-PL) as published at https://github.com/xceedsoftware/wpftoolkit/blob/master/license.md
9 |
10 | For more features, controls, and fast professional support,
11 | pick up the Plus Edition at https://xceed.com/xceed-toolkit-plus-for-wpf/
12 |
13 | Stay informed: follow @datagrid on Twitter or Like http://facebook.com/datagrids
14 |
15 | ***********************************************************************************/
16 |
17 | namespace Xceed.Wpf.Toolkit.Zoombox
18 | {
19 | public enum ZoomboxZoomOn
20 | {
21 | Content = 1,
22 | View,
23 | }
24 | }
25 |
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.DataGrid/(enums)/DropMarkAlignmentEnum.cs:
--------------------------------------------------------------------------------
1 | /*************************************************************************************
2 |
3 | Extended WPF Toolkit
4 |
5 | Copyright (C) 2007-2013 Xceed Software Inc.
6 |
7 | This program is provided to you under the terms of the Microsoft Public
8 | License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
9 |
10 | For more features, controls, and fast professional support,
11 | pick up the Plus Edition at http://xceed.com/wpf_toolkit
12 |
13 | Stay informed: follow @datagrid on Twitter or Like http://facebook.com/datagrids
14 |
15 | ***********************************************************************************/
16 |
17 | using System;
18 |
19 | namespace Xceed.Wpf.DataGrid
20 | {
21 | internal enum DropMarkAlignment
22 | {
23 | Near,
24 | Far,
25 | ExplicitPosition
26 | }
27 | }
28 |
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.DataGrid/(enums)/PrimaryAxisEnum.cs:
--------------------------------------------------------------------------------
1 | /*************************************************************************************
2 |
3 | Extended WPF Toolkit
4 |
5 | Copyright (C) 2007-2013 Xceed Software Inc.
6 |
7 | This program is provided to you under the terms of the Microsoft Public
8 | License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
9 |
10 | For more features, controls, and fast professional support,
11 | pick up the Plus Edition at http://xceed.com/wpf_toolkit
12 |
13 | Stay informed: follow @datagrid on Twitter or Like http://facebook.com/datagrids
14 |
15 | ***********************************************************************************/
16 |
17 | using System;
18 |
19 | namespace Xceed.Wpf.DataGrid
20 | {
21 | public enum PrimaryAxis
22 | {
23 | Vertical,
24 | Horizontal,
25 | Both,
26 | None
27 | }
28 | }
29 |
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit/Core/IndexChangedEventHandler.cs:
--------------------------------------------------------------------------------
1 | /*************************************************************************************
2 |
3 | Toolkit for WPF
4 |
5 | Copyright (C) 2007-2019 Xceed Software Inc.
6 |
7 | This program is provided to you under the terms of the Microsoft Public
8 | License (Ms-PL) as published at https://github.com/xceedsoftware/wpftoolkit/blob/master/license.md
9 |
10 | For more features, controls, and fast professional support,
11 | pick up the Plus Edition at https://xceed.com/xceed-toolkit-plus-for-wpf/
12 |
13 | Stay informed: follow @datagrid on Twitter or Like http://facebook.com/datagrids
14 |
15 | ***********************************************************************************/
16 |
17 | namespace Xceed.Wpf.Toolkit.Core
18 | {
19 | public delegate void IndexChangedEventHandler( object sender, IndexChangedEventArgs e );
20 | }
21 |
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit/Panels/ChildEnteredEventHandler.cs:
--------------------------------------------------------------------------------
1 | /*************************************************************************************
2 |
3 | Toolkit for WPF
4 |
5 | Copyright (C) 2007-2019 Xceed Software Inc.
6 |
7 | This program is provided to you under the terms of the Microsoft Public
8 | License (Ms-PL) as published at https://github.com/xceedsoftware/wpftoolkit/blob/master/license.md
9 |
10 | For more features, controls, and fast professional support,
11 | pick up the Plus Edition at https://xceed.com/xceed-toolkit-plus-for-wpf/
12 |
13 | Stay informed: follow @datagrid on Twitter or Like http://facebook.com/datagrids
14 |
15 | ***********************************************************************************/
16 |
17 | namespace Xceed.Wpf.Toolkit.Panels
18 | {
19 | public delegate void ChildEnteredEventHandler( object sender, ChildEnteredEventArgs e );
20 | }
21 |
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit/Panels/ChildExitedEventHandler.cs:
--------------------------------------------------------------------------------
1 | /*************************************************************************************
2 |
3 | Toolkit for WPF
4 |
5 | Copyright (C) 2007-2019 Xceed Software Inc.
6 |
7 | This program is provided to you under the terms of the Microsoft Public
8 | License (Ms-PL) as published at https://github.com/xceedsoftware/wpftoolkit/blob/master/license.md
9 |
10 | For more features, controls, and fast professional support,
11 | pick up the Plus Edition at https://xceed.com/xceed-toolkit-plus-for-wpf/
12 |
13 | Stay informed: follow @datagrid on Twitter or Like http://facebook.com/datagrids
14 |
15 | ***********************************************************************************/
16 |
17 | namespace Xceed.Wpf.Toolkit.Panels
18 | {
19 | public delegate void ChildExitedEventHandler( object sender, ChildExitedEventArgs e );
20 | }
21 |
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit/Panels/ChildExitingEventHandler.cs:
--------------------------------------------------------------------------------
1 | /*************************************************************************************
2 |
3 | Toolkit for WPF
4 |
5 | Copyright (C) 2007-2019 Xceed Software Inc.
6 |
7 | This program is provided to you under the terms of the Microsoft Public
8 | License (Ms-PL) as published at https://github.com/xceedsoftware/wpftoolkit/blob/master/license.md
9 |
10 | For more features, controls, and fast professional support,
11 | pick up the Plus Edition at https://xceed.com/xceed-toolkit-plus-for-wpf/
12 |
13 | Stay informed: follow @datagrid on Twitter or Like http://facebook.com/datagrids
14 |
15 | ***********************************************************************************/
16 |
17 | namespace Xceed.Wpf.Toolkit.Panels
18 | {
19 | public delegate void ChildExitingEventHandler( object sender, ChildExitingEventArgs e );
20 | }
21 |
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit/Pie/Implementation/PieModeEnum.cs:
--------------------------------------------------------------------------------
1 | /*************************************************************************************
2 |
3 | Toolkit for WPF
4 |
5 | Copyright (C) 2007-2019 Xceed Software Inc.
6 |
7 | This program is provided to you under the terms of the Microsoft Public
8 | License (Ms-PL) as published at https://github.com/xceedsoftware/wpftoolkit/blob/master/license.md
9 |
10 | For more features, controls, and fast professional support,
11 | pick up the Plus Edition at https://xceed.com/xceed-toolkit-plus-for-wpf/
12 |
13 | Stay informed: follow @datagrid on Twitter or Like http://facebook.com/datagrids
14 |
15 | ***********************************************************************************/
16 |
17 | namespace Xceed.Wpf.Toolkit
18 | {
19 | public enum PieMode
20 | {
21 | Manual,
22 | EndAngle,
23 | Slice,
24 | }
25 | }
26 |
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.DataGrid/Views/(Enums)/MasterDetailLayoutModeEnum.cs:
--------------------------------------------------------------------------------
1 | /*************************************************************************************
2 |
3 | Extended WPF Toolkit
4 |
5 | Copyright (C) 2007-2013 Xceed Software Inc.
6 |
7 | This program is provided to you under the terms of the Microsoft Public
8 | License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
9 |
10 | For more features, controls, and fast professional support,
11 | pick up the Plus Edition at http://xceed.com/wpf_toolkit
12 |
13 | Stay informed: follow @datagrid on Twitter or Like http://facebook.com/datagrids
14 |
15 | ***********************************************************************************/
16 |
17 | using System;
18 |
19 | namespace Xceed.Wpf.DataGrid.Views
20 | {
21 | internal enum MasterDetailLayoutMode
22 | {
23 | Default,
24 | Flatten,
25 | }
26 | }
27 |
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit/Panels/ChildEnteringEventHandler.cs:
--------------------------------------------------------------------------------
1 | /*************************************************************************************
2 |
3 | Toolkit for WPF
4 |
5 | Copyright (C) 2007-2019 Xceed Software Inc.
6 |
7 | This program is provided to you under the terms of the Microsoft Public
8 | License (Ms-PL) as published at https://github.com/xceedsoftware/wpftoolkit/blob/master/license.md
9 |
10 | For more features, controls, and fast professional support,
11 | pick up the Plus Edition at https://xceed.com/xceed-toolkit-plus-for-wpf/
12 |
13 | Stay informed: follow @datagrid on Twitter or Like http://facebook.com/datagrids
14 |
15 | ***********************************************************************************/
16 |
17 | namespace Xceed.Wpf.Toolkit.Panels
18 | {
19 | public delegate void ChildEnteringEventHandler( object sender, ChildEnteringEventArgs e );
20 | }
21 |
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.DataGrid/Views/(Enums)/PassiveLayoutAxisEnum.cs:
--------------------------------------------------------------------------------
1 | /*************************************************************************************
2 |
3 | Extended WPF Toolkit
4 |
5 | Copyright (C) 2007-2013 Xceed Software Inc.
6 |
7 | This program is provided to you under the terms of the Microsoft Public
8 | License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
9 |
10 | For more features, controls, and fast professional support,
11 | pick up the Plus Edition at http://xceed.com/wpf_toolkit
12 |
13 | Stay informed: follow @datagrid on Twitter or Like http://facebook.com/datagrids
14 |
15 | ***********************************************************************************/
16 |
17 | using System;
18 |
19 | namespace Xceed.Wpf.DataGrid.Views
20 | {
21 | public enum PassiveLayoutAxis
22 | {
23 | Vertical,
24 | Horizontal,
25 | Both
26 | }
27 | }
28 |
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit/ChildWindow/Implementation/WindowStartupLocation.cs:
--------------------------------------------------------------------------------
1 | /*************************************************************************************
2 |
3 | Toolkit for WPF
4 |
5 | Copyright (C) 2007-2019 Xceed Software Inc.
6 |
7 | This program is provided to you under the terms of the Microsoft Public
8 | License (Ms-PL) as published at https://github.com/xceedsoftware/wpftoolkit/blob/master/license.md
9 |
10 | For more features, controls, and fast professional support,
11 | pick up the Plus Edition at https://xceed.com/xceed-toolkit-plus-for-wpf/
12 |
13 | Stay informed: follow @datagrid on Twitter or Like http://facebook.com/datagrids
14 |
15 | ***********************************************************************************/
16 |
17 | namespace Xceed.Wpf.Toolkit
18 | {
19 | public enum WindowStartupLocation
20 | {
21 | Center,
22 | Manual
23 | }
24 | }
25 |
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.DataGrid/Views/(Enums)/ColumnStretchModeEnum.cs:
--------------------------------------------------------------------------------
1 | /*************************************************************************************
2 |
3 | Extended WPF Toolkit
4 |
5 | Copyright (C) 2007-2013 Xceed Software Inc.
6 |
7 | This program is provided to you under the terms of the Microsoft Public
8 | License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
9 |
10 | For more features, controls, and fast professional support,
11 | pick up the Plus Edition at http://xceed.com/wpf_toolkit
12 |
13 | Stay informed: follow @datagrid on Twitter or Like http://facebook.com/datagrids
14 |
15 | ***********************************************************************************/
16 |
17 | using System;
18 |
19 | namespace Xceed.Wpf.DataGrid.Views
20 | {
21 | public enum ColumnStretchMode
22 | {
23 | None,
24 | First,
25 | Last,
26 | All
27 | }
28 | }
29 |
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit/Core/PropertyChangedEventHandler.cs:
--------------------------------------------------------------------------------
1 | /*************************************************************************************
2 |
3 | Toolkit for WPF
4 |
5 | Copyright (C) 2007-2019 Xceed Software Inc.
6 |
7 | This program is provided to you under the terms of the Microsoft Public
8 | License (Ms-PL) as published at https://github.com/xceedsoftware/wpftoolkit/blob/master/license.md
9 |
10 | For more features, controls, and fast professional support,
11 | pick up the Plus Edition at https://xceed.com/xceed-toolkit-plus-for-wpf/
12 |
13 | Stay informed: follow @datagrid on Twitter or Like http://facebook.com/datagrids
14 |
15 | ***********************************************************************************/
16 |
17 | namespace Xceed.Wpf.Toolkit.Core
18 | {
19 | public delegate void PropertyChangedEventHandler( object sender, PropertyChangedEventArgs e );
20 | }
21 |
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit/Wizard/Implementation/WizardPageType.cs:
--------------------------------------------------------------------------------
1 | /*************************************************************************************
2 |
3 | Toolkit for WPF
4 |
5 | Copyright (C) 2007-2019 Xceed Software Inc.
6 |
7 | This program is provided to you under the terms of the Microsoft Public
8 | License (Ms-PL) as published at https://github.com/xceedsoftware/wpftoolkit/blob/master/license.md
9 |
10 | For more features, controls, and fast professional support,
11 | pick up the Plus Edition at https://xceed.com/xceed-toolkit-plus-for-wpf/
12 |
13 | Stay informed: follow @datagrid on Twitter or Like http://facebook.com/datagrids
14 |
15 | ***********************************************************************************/
16 |
17 | namespace Xceed.Wpf.Toolkit
18 | {
19 | public enum WizardPageType
20 | {
21 | Blank,
22 | Exterior,
23 | Interior
24 | }
25 | }
26 |
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.DataGrid/(enums)/CompareResultEnum.cs:
--------------------------------------------------------------------------------
1 | /*************************************************************************************
2 |
3 | Extended WPF Toolkit
4 |
5 | Copyright (C) 2007-2013 Xceed Software Inc.
6 |
7 | This program is provided to you under the terms of the Microsoft Public
8 | License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
9 |
10 | For more features, controls, and fast professional support,
11 | pick up the Plus Edition at http://xceed.com/wpf_toolkit
12 |
13 | Stay informed: follow @datagrid on Twitter or Like http://facebook.com/datagrids
14 |
15 | ***********************************************************************************/
16 |
17 | using System;
18 |
19 | namespace Xceed.Wpf.DataGrid
20 | {
21 | internal enum CompareResult
22 | {
23 | DifferentThan,
24 | EqualsTo,
25 | LessThan,
26 | GreaterThan
27 | }
28 | }
29 |
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit/Zoombox/ZoomboxViewChangedEventHandler.cs:
--------------------------------------------------------------------------------
1 | /*************************************************************************************
2 |
3 | Toolkit for WPF
4 |
5 | Copyright (C) 2007-2019 Xceed Software Inc.
6 |
7 | This program is provided to you under the terms of the Microsoft Public
8 | License (Ms-PL) as published at https://github.com/xceedsoftware/wpftoolkit/blob/master/license.md
9 |
10 | For more features, controls, and fast professional support,
11 | pick up the Plus Edition at https://xceed.com/xceed-toolkit-plus-for-wpf/
12 |
13 | Stay informed: follow @datagrid on Twitter or Like http://facebook.com/datagrids
14 |
15 | ***********************************************************************************/
16 |
17 | namespace Xceed.Wpf.Toolkit.Zoombox
18 | {
19 | public delegate void ZoomboxViewChangedEventHandler( object sender, ZoomboxViewChangedEventArgs e );
20 | }
21 |
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.DataGrid/(enums)/ScrollOrientationEnum.cs:
--------------------------------------------------------------------------------
1 | /*************************************************************************************
2 |
3 | Extended WPF Toolkit
4 |
5 | Copyright (C) 2007-2013 Xceed Software Inc.
6 |
7 | This program is provided to you under the terms of the Microsoft Public
8 | License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
9 |
10 | For more features, controls, and fast professional support,
11 | pick up the Plus Edition at http://xceed.com/wpf_toolkit
12 |
13 | Stay informed: follow @datagrid on Twitter or Like http://facebook.com/datagrids
14 |
15 | ***********************************************************************************/
16 |
17 | using System;
18 |
19 | namespace Xceed.Wpf.DataGrid
20 | {
21 | [Flags]
22 | public enum ScrollOrientation
23 | {
24 | None = 0,
25 | Horizontal = 1,
26 | Vertical = 2,
27 | }
28 | }
29 |
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.DataGrid/CellEditorSelector.cs:
--------------------------------------------------------------------------------
1 | /*************************************************************************************
2 |
3 | Extended WPF Toolkit
4 |
5 | Copyright (C) 2007-2013 Xceed Software Inc.
6 |
7 | This program is provided to you under the terms of the Microsoft Public
8 | License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
9 |
10 | For more features, controls, and fast professional support,
11 | pick up the Plus Edition at http://xceed.com/wpf_toolkit
12 |
13 | Stay informed: follow @datagrid on Twitter or Like http://facebook.com/datagrids
14 |
15 | ***********************************************************************************/
16 |
17 | namespace Xceed.Wpf.DataGrid
18 | {
19 | public abstract class CellEditorSelector
20 | {
21 | public virtual CellEditor SelectCellEditor( ColumnBase column, object item )
22 | {
23 | return null;
24 | }
25 | }
26 | }
27 |
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.DataGrid/ColumnGroupCommand.cs:
--------------------------------------------------------------------------------
1 | /*************************************************************************************
2 |
3 | Extended WPF Toolkit
4 |
5 | Copyright (C) 2007-2013 Xceed Software Inc.
6 |
7 | This program is provided to you under the terms of the Microsoft Public
8 | License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
9 |
10 | For more features, controls, and fast professional support,
11 | pick up the Plus Edition at http://xceed.com/wpf_toolkit
12 |
13 | Stay informed: follow @datagrid on Twitter or Like http://facebook.com/datagrids
14 |
15 | ***********************************************************************************/
16 |
17 | using System;
18 | using System.Diagnostics;
19 | using System.Windows.Input;
20 |
21 | namespace Xceed.Wpf.DataGrid
22 | {
23 | internal abstract class ColumnGroupCommand : ColumnCommand
24 | {
25 | }
26 | }
27 |
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/PropertyGrid/OpenSourceImages/CustomProperty.xaml.txt:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
8 |
9 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit/BrushPicker/Implementation/SpinEventArgs .cs:
--------------------------------------------------------------------------------
1 | /***************** NCore Softwares Pvt. Ltd., India **************************
2 |
3 | ColorBox
4 |
5 | Copyright (C) 2013 NCore Softwares Pvt. Ltd.
6 |
7 | This program is provided to you under the terms of the Microsoft Public
8 | License (Ms-PL) as published at http://colorbox.codeplex.com/license
9 |
10 | ***********************************************************************************/
11 |
12 | using System.Windows;
13 |
14 | namespace ColorBox
15 | {
16 | class SpinEventArgs : RoutedEventArgs
17 | {
18 | public SpinDirection Direction
19 | {
20 | get;
21 | private set;
22 | }
23 |
24 | public SpinEventArgs(SpinDirection direction)
25 | : base()
26 | {
27 | Direction = direction;
28 | }
29 | }
30 | }
31 |
32 |
33 |
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.DataGrid/Views/(Enums)/FlattenDetailBindingModeEnum.cs:
--------------------------------------------------------------------------------
1 | /*************************************************************************************
2 |
3 | Extended WPF Toolkit
4 |
5 | Copyright (C) 2007-2013 Xceed Software Inc.
6 |
7 | This program is provided to you under the terms of the Microsoft Public
8 | License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
9 |
10 | For more features, controls, and fast professional support,
11 | pick up the Plus Edition at http://xceed.com/wpf_toolkit
12 |
13 | Stay informed: follow @datagrid on Twitter or Like http://facebook.com/datagrids
14 |
15 | ***********************************************************************************/
16 |
17 | using System;
18 |
19 | namespace Xceed.Wpf.DataGrid.Views
20 | {
21 | internal enum FlattenDetailBindingMode
22 | {
23 | Default,
24 | None,
25 | MasterOneWay,
26 | }
27 | }
28 |
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.DataGrid/AssemblyVersionInfoCommon.cs:
--------------------------------------------------------------------------------
1 | /*************************************************************************************
2 |
3 | Extended WPF Toolkit
4 |
5 | Copyright (C) 2007-2013 Xceed Software Inc.
6 |
7 | This program is provided to you under the terms of the Microsoft Public
8 | License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
9 |
10 | For more features, controls, and fast professional support,
11 | pick up the Plus Edition at http://xceed.com/wpf_toolkit
12 |
13 | Stay informed: follow @datagrid on Twitter or Like http://facebook.com/datagrids
14 |
15 | ***********************************************************************************/
16 |
17 | internal static class _XceedVersionInfoCommon
18 | {
19 | [System.Diagnostics.CodeAnalysis.SuppressMessage( "Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields" )]
20 | public const string Build = ".*";
21 |
22 | }
23 |
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/PropertyGrid/OpenSourceImages/Properties.xaml.txt:
--------------------------------------------------------------------------------
1 |
2 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit/TimelinePanel/Implementation/OverlapBehavior.cs:
--------------------------------------------------------------------------------
1 | /*************************************************************************************
2 |
3 | Toolkit for WPF
4 |
5 | Copyright (C) 2007-2019 Xceed Software Inc.
6 |
7 | This program is provided to you under the terms of the Microsoft Public
8 | License (Ms-PL) as published at https://github.com/xceedsoftware/wpftoolkit/blob/master/license.md
9 |
10 | For more features, controls, and fast professional support,
11 | pick up the Plus Edition at https://xceed.com/xceed-toolkit-plus-for-wpf/
12 |
13 | Stay informed: follow @datagrid on Twitter or Like http://facebook.com/datagrids
14 |
15 | ***********************************************************************************/
16 |
17 | namespace Xceed.Wpf.Toolkit
18 | {
19 | public enum OverlapBehavior
20 | {
21 | Stack,
22 | Stretch,
23 | Hide,
24 | None
25 | }
26 | }
27 |
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit/Zoombox/ZoomboxViewStackMode.cs:
--------------------------------------------------------------------------------
1 | /*************************************************************************************
2 |
3 | Toolkit for WPF
4 |
5 | Copyright (C) 2007-2019 Xceed Software Inc.
6 |
7 | This program is provided to you under the terms of the Microsoft Public
8 | License (Ms-PL) as published at https://github.com/xceedsoftware/wpftoolkit/blob/master/license.md
9 |
10 | For more features, controls, and fast professional support,
11 | pick up the Plus Edition at https://xceed.com/xceed-toolkit-plus-for-wpf/
12 |
13 | Stay informed: follow @datagrid on Twitter or Like http://facebook.com/datagrids
14 |
15 | ***********************************************************************************/
16 |
17 | namespace Xceed.Wpf.Toolkit.Zoombox
18 | {
19 | public enum ZoomboxViewStackMode
20 | {
21 | Auto,
22 | Default,
23 | Disabled,
24 | Manual,
25 | }
26 | }
27 |
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.DataGrid/(enums)/DataGridDragBehaviorEnum.cs:
--------------------------------------------------------------------------------
1 | /*************************************************************************************
2 |
3 | Extended WPF Toolkit
4 |
5 | Copyright (C) 2007-2013 Xceed Software Inc.
6 |
7 | This program is provided to you under the terms of the Microsoft Public
8 | License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
9 |
10 | For more features, controls, and fast professional support,
11 | pick up the Plus Edition at http://xceed.com/wpf_toolkit
12 |
13 | Stay informed: follow @datagrid on Twitter or Like http://facebook.com/datagrids
14 |
15 | ***********************************************************************************/
16 |
17 | using System;
18 | using System.Collections.Generic;
19 | using System.Linq;
20 | using System.Text;
21 |
22 | namespace Xceed.Wpf.DataGrid
23 | {
24 | public enum DataGridDragBehavior
25 | {
26 | DragDrop = 0,
27 | Select
28 | }
29 | }
30 |
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.DataGrid/ICustomVirtualizingPanel.cs:
--------------------------------------------------------------------------------
1 | /*************************************************************************************
2 |
3 | Extended WPF Toolkit
4 |
5 | Copyright (C) 2007-2013 Xceed Software Inc.
6 |
7 | This program is provided to you under the terms of the Microsoft Public
8 | License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
9 |
10 | For more features, controls, and fast professional support,
11 | pick up the Plus Edition at http://xceed.com/wpf_toolkit
12 |
13 | Stay informed: follow @datagrid on Twitter or Like http://facebook.com/datagrids
14 |
15 | ***********************************************************************************/
16 |
17 | using System;
18 | using System.Collections.Generic;
19 | using System.Text;
20 |
21 | namespace Xceed.Wpf.DataGrid
22 | {
23 | public interface ICustomVirtualizingPanel
24 | {
25 | void BringIntoView( int index );
26 | }
27 | }
28 |
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.DataGrid/(enums)/CommitModeEnum.cs:
--------------------------------------------------------------------------------
1 | /*************************************************************************************
2 |
3 | Extended WPF Toolkit
4 |
5 | Copyright (C) 2007-2013 Xceed Software Inc.
6 |
7 | This program is provided to you under the terms of the Microsoft Public
8 | License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
9 |
10 | For more features, controls, and fast professional support,
11 | pick up the Plus Edition at http://xceed.com/wpf_toolkit
12 |
13 | Stay informed: follow @datagrid on Twitter or Like http://facebook.com/datagrids
14 |
15 | ***********************************************************************************/
16 |
17 | using System;
18 | using System.Collections.Generic;
19 | using System.Text;
20 |
21 | namespace Xceed.Wpf.DataGrid
22 | {
23 | public enum CommitMode
24 | {
25 | PageReleasedFromMemory = 0,
26 | EditCommitted = 1
27 | }
28 | }
29 |
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.DataGrid/(enums)/SelectionUnitEnum.cs:
--------------------------------------------------------------------------------
1 | /*************************************************************************************
2 |
3 | Extended WPF Toolkit
4 |
5 | Copyright (C) 2007-2013 Xceed Software Inc.
6 |
7 | This program is provided to you under the terms of the Microsoft Public
8 | License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
9 |
10 | For more features, controls, and fast professional support,
11 | pick up the Plus Edition at http://xceed.com/wpf_toolkit
12 |
13 | Stay informed: follow @datagrid on Twitter or Like http://facebook.com/datagrids
14 |
15 | ***********************************************************************************/
16 |
17 | using System;
18 | using System.Collections.Generic;
19 | using System.Linq;
20 | using System.Text;
21 |
22 | namespace Xceed.Wpf.DataGrid
23 | {
24 | public enum SelectionUnit
25 | {
26 | Row = 0,
27 | Cell = 1
28 | }
29 | }
30 |
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit.LiveExplorer/Core/Converters/ZeroToBoolConverter.cs:
--------------------------------------------------------------------------------
1 | /*************************************************************************************
2 |
3 | Toolkit for WPF
4 |
5 | Copyright (C) 2007-2019 Xceed Software Inc.
6 |
7 | This program is provided to you under the terms of the Microsoft Public
8 | License (Ms-PL) as published at https://github.com/xceedsoftware/wpftoolkit/blob/master/license.md
9 |
10 | For more features, controls, and fast professional support,
11 | pick up the Plus Edition at https://xceed.com/xceed-toolkit-plus-for-wpf/
12 |
13 | Stay informed: follow @datagrid on Twitter or Like http://facebook.com/datagrids
14 |
15 | ***********************************************************************************/
16 | using System;
17 | using System.Globalization;
18 | using System.Windows.Data;
19 |
20 | namespace Xceed.Wpf.Toolkit.LiveExplorer.Samples.Converters
21 | {
22 |
23 |
24 |
25 |
26 | }
27 |
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit/Wizard/Implementation/WizardPageButtonVisibility.cs:
--------------------------------------------------------------------------------
1 | /*************************************************************************************
2 |
3 | Toolkit for WPF
4 |
5 | Copyright (C) 2007-2019 Xceed Software Inc.
6 |
7 | This program is provided to you under the terms of the Microsoft Public
8 | License (Ms-PL) as published at https://github.com/xceedsoftware/wpftoolkit/blob/master/license.md
9 |
10 | For more features, controls, and fast professional support,
11 | pick up the Plus Edition at https://xceed.com/xceed-toolkit-plus-for-wpf/
12 |
13 | Stay informed: follow @datagrid on Twitter or Like http://facebook.com/datagrids
14 |
15 | ***********************************************************************************/
16 |
17 | namespace Xceed.Wpf.Toolkit
18 | {
19 | public enum WizardPageButtonVisibility
20 | {
21 | Inherit,
22 | Collapsed,
23 | Hidden,
24 | Visible
25 | }
26 | }
27 |
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.DataGrid/Views/(Enums)/SynchronizedScrollViewerPositionEnum.cs:
--------------------------------------------------------------------------------
1 | /*************************************************************************************
2 |
3 | Extended WPF Toolkit
4 |
5 | Copyright (C) 2007-2013 Xceed Software Inc.
6 |
7 | This program is provided to you under the terms of the Microsoft Public
8 | License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
9 |
10 | For more features, controls, and fast professional support,
11 | pick up the Plus Edition at http://xceed.com/wpf_toolkit
12 |
13 | Stay informed: follow @datagrid on Twitter or Like http://facebook.com/datagrids
14 |
15 | ***********************************************************************************/
16 |
17 | using System;
18 |
19 | namespace Xceed.Wpf.DataGrid.Views
20 | {
21 | public enum SynchronizedScrollViewerPosition
22 | {
23 | Top,
24 | Bottom,
25 | Left,
26 | Right,
27 | None,
28 | }
29 | }
30 |
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.DataGrid/(enums)/GeneratorNodeTypeEnum.cs:
--------------------------------------------------------------------------------
1 | /*************************************************************************************
2 |
3 | Extended WPF Toolkit
4 |
5 | Copyright (C) 2007-2013 Xceed Software Inc.
6 |
7 | This program is provided to you under the terms of the Microsoft Public
8 | License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
9 |
10 | For more features, controls, and fast professional support,
11 | pick up the Plus Edition at http://xceed.com/wpf_toolkit
12 |
13 | Stay informed: follow @datagrid on Twitter or Like http://facebook.com/datagrids
14 |
15 | ***********************************************************************************/
16 |
17 | using System;
18 | using System.Collections.Generic;
19 | using System.Text;
20 |
21 | namespace Xceed.Wpf.DataGrid
22 | {
23 | internal enum GeneratorNodeType
24 | {
25 | HeadersOrFooters,
26 | Group,
27 | Items,
28 | }
29 | }
30 |
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.DataGrid/(enums)/DistinctValuesUpdateModeEnum.cs:
--------------------------------------------------------------------------------
1 | /*************************************************************************************
2 |
3 | Extended WPF Toolkit
4 |
5 | Copyright (C) 2007-2013 Xceed Software Inc.
6 |
7 | This program is provided to you under the terms of the Microsoft Public
8 | License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
9 |
10 | For more features, controls, and fast professional support,
11 | pick up the Plus Edition at http://xceed.com/wpf_toolkit
12 |
13 | Stay informed: follow @datagrid on Twitter or Like http://facebook.com/datagrids
14 |
15 | ***********************************************************************************/
16 |
17 | using System;
18 | using System.Collections.Generic;
19 | using System.Linq;
20 | using System.Text;
21 |
22 | namespace Xceed.Wpf.DataGrid
23 | {
24 | public enum DistinctValuesUpdateMode
25 | {
26 | Manual,
27 | Auto
28 | }
29 | }
30 |
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.DataGrid/Views/(Enums)/DropMarkOrientationEnum.cs:
--------------------------------------------------------------------------------
1 | /*************************************************************************************
2 |
3 | Extended WPF Toolkit
4 |
5 | Copyright (C) 2007-2013 Xceed Software Inc.
6 |
7 | This program is provided to you under the terms of the Microsoft Public
8 | License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
9 |
10 | For more features, controls, and fast professional support,
11 | pick up the Plus Edition at http://xceed.com/wpf_toolkit
12 |
13 | Stay informed: follow @datagrid on Twitter or Like http://facebook.com/datagrids
14 |
15 | ***********************************************************************************/
16 |
17 | using System;
18 | using System.Collections.Generic;
19 | using System.Text;
20 |
21 | namespace Xceed.Wpf.DataGrid.Views
22 | {
23 | public enum DropMarkOrientation
24 | {
25 | Default,
26 | Vertical,
27 | Horizontal
28 | }
29 | }
30 |
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.DataGrid/(enums)/NavigationBehaviorEnum.cs:
--------------------------------------------------------------------------------
1 | /*************************************************************************************
2 |
3 | Extended WPF Toolkit
4 |
5 | Copyright (C) 2007-2013 Xceed Software Inc.
6 |
7 | This program is provided to you under the terms of the Microsoft Public
8 | License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
9 |
10 | For more features, controls, and fast professional support,
11 | pick up the Plus Edition at http://xceed.com/wpf_toolkit
12 |
13 | Stay informed: follow @datagrid on Twitter or Like http://facebook.com/datagrids
14 |
15 | ***********************************************************************************/
16 |
17 | using System;
18 | using System.Collections.Generic;
19 | using System.Text;
20 |
21 | namespace Xceed.Wpf.DataGrid
22 | {
23 | public enum NavigationBehavior
24 | {
25 | None,
26 | RowOnly,
27 | CellOnly,
28 | RowOrCell
29 | }
30 | }
31 |
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.DataGrid/(enums)/ScrollDirectionEnum.cs:
--------------------------------------------------------------------------------
1 | /*************************************************************************************
2 |
3 | Extended WPF Toolkit
4 |
5 | Copyright (C) 2007-2013 Xceed Software Inc.
6 |
7 | This program is provided to you under the terms of the Microsoft Public
8 | License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
9 |
10 | For more features, controls, and fast professional support,
11 | pick up the Plus Edition at http://xceed.com/wpf_toolkit
12 |
13 | Stay informed: follow @datagrid on Twitter or Like http://facebook.com/datagrids
14 |
15 | ***********************************************************************************/
16 |
17 | using System;
18 | using System.Collections.Generic;
19 | using System.Linq;
20 | using System.Text;
21 |
22 | namespace Xceed.Wpf.DataGrid
23 | {
24 | internal enum ScrollDirection
25 | {
26 | None,
27 | Backward,
28 | Forward
29 | }
30 | }
31 |
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit/Core/Media/Animation/IterativeAnimationEquationDelegate.cs:
--------------------------------------------------------------------------------
1 | /*************************************************************************************
2 |
3 | Toolkit for WPF
4 |
5 | Copyright (C) 2007-2019 Xceed Software Inc.
6 |
7 | This program is provided to you under the terms of the Microsoft Public
8 | License (Ms-PL) as published at https://github.com/xceedsoftware/wpftoolkit/blob/master/license.md
9 |
10 | For more features, controls, and fast professional support,
11 | pick up the Plus Edition at https://xceed.com/xceed-toolkit-plus-for-wpf/
12 |
13 | Stay informed: follow @datagrid on Twitter or Like http://facebook.com/datagrids
14 |
15 | ***********************************************************************************/
16 |
17 | using System;
18 |
19 | namespace Xceed.Wpf.Toolkit.Media.Animation
20 | {
21 | public delegate T IterativeAnimationEquationDelegate( TimeSpan currentTime, T from, T to, TimeSpan duration );
22 | }
23 |
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.DataGrid/(enums)/DataGridConnectionStateEnum.cs:
--------------------------------------------------------------------------------
1 | /*************************************************************************************
2 |
3 | Extended WPF Toolkit
4 |
5 | Copyright (C) 2007-2013 Xceed Software Inc.
6 |
7 | This program is provided to you under the terms of the Microsoft Public
8 | License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
9 |
10 | For more features, controls, and fast professional support,
11 | pick up the Plus Edition at http://xceed.com/wpf_toolkit
12 |
13 | Stay informed: follow @datagrid on Twitter or Like http://facebook.com/datagrids
14 |
15 | ***********************************************************************************/
16 |
17 | using System;
18 | using System.Collections.Generic;
19 | using System.Text;
20 |
21 | namespace Xceed.Wpf.DataGrid
22 | {
23 | public enum DataGridConnectionState
24 | {
25 | Idle,
26 | Loading,
27 | Committing,
28 | Error
29 | }
30 | }
31 |
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.DataGrid/(enums)/DistinctValuesConstraintEnum.cs:
--------------------------------------------------------------------------------
1 | /*************************************************************************************
2 |
3 | Extended WPF Toolkit
4 |
5 | Copyright (C) 2007-2013 Xceed Software Inc.
6 |
7 | This program is provided to you under the terms of the Microsoft Public
8 | License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
9 |
10 | For more features, controls, and fast professional support,
11 | pick up the Plus Edition at http://xceed.com/wpf_toolkit
12 |
13 | Stay informed: follow @datagrid on Twitter or Like http://facebook.com/datagrids
14 |
15 | ***********************************************************************************/
16 |
17 | using System;
18 | using System.Collections.Generic;
19 | using System.Text;
20 |
21 | namespace Xceed.Wpf.DataGrid
22 | {
23 | public enum DistinctValuesConstraint
24 | {
25 | All,
26 | Filtered,
27 | FilteredWithAllFilters
28 | }
29 | }
30 |
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit/Zoombox/ZoomboxViewKind.cs:
--------------------------------------------------------------------------------
1 | /*************************************************************************************
2 |
3 | Toolkit for WPF
4 |
5 | Copyright (C) 2007-2019 Xceed Software Inc.
6 |
7 | This program is provided to you under the terms of the Microsoft Public
8 | License (Ms-PL) as published at https://github.com/xceedsoftware/wpftoolkit/blob/master/license.md
9 |
10 | For more features, controls, and fast professional support,
11 | pick up the Plus Edition at https://xceed.com/xceed-toolkit-plus-for-wpf/
12 |
13 | Stay informed: follow @datagrid on Twitter or Like http://facebook.com/datagrids
14 |
15 | ***********************************************************************************/
16 |
17 |
18 | namespace Xceed.Wpf.Toolkit.Zoombox
19 | {
20 | public enum ZoomboxViewKind
21 | {
22 | Absolute = -5,
23 | Fit = -4,
24 | Fill = -3,
25 | Center = -2,
26 | Empty = -1,
27 | Region,
28 | }
29 | }
30 |
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.DataGrid/Views/(Enums)/ViewPropertyModeEnum.cs:
--------------------------------------------------------------------------------
1 | /*************************************************************************************
2 |
3 | Extended WPF Toolkit
4 |
5 | Copyright (C) 2007-2013 Xceed Software Inc.
6 |
7 | This program is provided to you under the terms of the Microsoft Public
8 | License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
9 |
10 | For more features, controls, and fast professional support,
11 | pick up the Plus Edition at http://xceed.com/wpf_toolkit
12 |
13 | Stay informed: follow @datagrid on Twitter or Like http://facebook.com/datagrids
14 |
15 | ***********************************************************************************/
16 |
17 | using System;
18 | using System.Collections.Generic;
19 | using System.Text;
20 |
21 | namespace Xceed.Wpf.DataGrid.Views
22 | {
23 | public enum ViewPropertyMode
24 | {
25 | None,
26 | ViewOnly,
27 | Routed,
28 | RoutedNoFallback,
29 | }
30 | }
31 |
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit/PropertyGrid/Implementation/Editors/ITypeEditor.cs:
--------------------------------------------------------------------------------
1 | /*************************************************************************************
2 |
3 | Toolkit for WPF
4 |
5 | Copyright (C) 2007-2019 Xceed Software Inc.
6 |
7 | This program is provided to you under the terms of the Microsoft Public
8 | License (Ms-PL) as published at https://github.com/xceedsoftware/wpftoolkit/blob/master/license.md
9 |
10 | For more features, controls, and fast professional support,
11 | pick up the Plus Edition at https://xceed.com/xceed-toolkit-plus-for-wpf/
12 |
13 | Stay informed: follow @datagrid on Twitter or Like http://facebook.com/datagrids
14 |
15 | ***********************************************************************************/
16 |
17 | using System.Windows;
18 |
19 | namespace Xceed.Wpf.Toolkit.PropertyGrid.Editors
20 | {
21 | public interface ITypeEditor
22 | {
23 | FrameworkElement ResolveEditor( PropertyItem propertyItem );
24 | }
25 | }
26 |
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.DataGrid/ActivationGesture.cs:
--------------------------------------------------------------------------------
1 | /*************************************************************************************
2 |
3 | Extended WPF Toolkit
4 |
5 | Copyright (C) 2007-2013 Xceed Software Inc.
6 |
7 | This program is provided to you under the terms of the Microsoft Public
8 | License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
9 |
10 | For more features, controls, and fast professional support,
11 | pick up the Plus Edition at http://xceed.com/wpf_toolkit
12 |
13 | Stay informed: follow @datagrid on Twitter or Like http://facebook.com/datagrids
14 |
15 | ***********************************************************************************/
16 |
17 | using System;
18 | using System.Collections.Generic;
19 | using System.Text;
20 | using System.Windows;
21 |
22 | namespace Xceed.Wpf.DataGrid
23 | {
24 | public abstract class ActivationGesture : Freezable
25 | {
26 | internal ActivationGesture()
27 | {
28 | }
29 | }
30 | }
31 |
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.DataGrid/DetailConfigurationSelector.cs:
--------------------------------------------------------------------------------
1 | /*************************************************************************************
2 |
3 | Extended WPF Toolkit
4 |
5 | Copyright (C) 2007-2013 Xceed Software Inc.
6 |
7 | This program is provided to you under the terms of the Microsoft Public
8 | License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
9 |
10 | For more features, controls, and fast professional support,
11 | pick up the Plus Edition at http://xceed.com/wpf_toolkit
12 |
13 | Stay informed: follow @datagrid on Twitter or Like http://facebook.com/datagrids
14 |
15 | ***********************************************************************************/
16 |
17 | namespace Xceed.Wpf.DataGrid
18 | {
19 | public abstract class DetailConfigurationSelector
20 | {
21 | internal virtual DetailConfiguration SelectDetailConfiguration( string relationName, DataGridDetailDescription dataGridDetailDescription )
22 | {
23 | return null;
24 | }
25 | }
26 | }
27 |
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.DataGrid/(enums)/DeletingSelectedItemErrorActionEnum.cs:
--------------------------------------------------------------------------------
1 | /*************************************************************************************
2 |
3 | Extended WPF Toolkit
4 |
5 | Copyright (C) 2007-2013 Xceed Software Inc.
6 |
7 | This program is provided to you under the terms of the Microsoft Public
8 | License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
9 |
10 | For more features, controls, and fast professional support,
11 | pick up the Plus Edition at http://xceed.com/wpf_toolkit
12 |
13 | Stay informed: follow @datagrid on Twitter or Like http://facebook.com/datagrids
14 |
15 | ***********************************************************************************/
16 |
17 | using System;
18 | using System.Collections.Generic;
19 | using System.Linq;
20 | using System.Text;
21 |
22 | namespace Xceed.Wpf.DataGrid
23 | {
24 | public enum DeletingSelectedItemErrorAction
25 | {
26 | Abort,
27 | Retry,
28 | Skip,
29 | }
30 | }
31 |
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.DataGrid/Utils/Wpf/DepthFirstSearchTreeTraversalStrategy.cs:
--------------------------------------------------------------------------------
1 | /*************************************************************************************
2 |
3 | Extended WPF Toolkit
4 |
5 | Copyright (C) 2007-2013 Xceed Software Inc.
6 |
7 | This program is provided to you under the terms of the Microsoft Public
8 | License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
9 |
10 | For more features, controls, and fast professional support,
11 | pick up the Plus Edition at http://xceed.com/wpf_toolkit
12 |
13 | Stay informed: follow @datagrid on Twitter or Like http://facebook.com/datagrids
14 |
15 | ***********************************************************************************/
16 |
17 |
18 | namespace Xceed.Utils.Wpf
19 | {
20 | internal sealed class DepthFirstSearchTreeTraversalStrategy : ITreeTraversalStrategy
21 | {
22 | public ITreeTraversal Create()
23 | {
24 | return new DepthFirstSearchTreeTraversal();
25 | }
26 | }
27 | }
28 |
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit/AutoSelectTextBox/Implementation/AutoSelectBehaviorEnum.cs:
--------------------------------------------------------------------------------
1 | /*************************************************************************************
2 |
3 | Toolkit for WPF
4 |
5 | Copyright (C) 2007-2019 Xceed Software Inc.
6 |
7 | This program is provided to you under the terms of the Microsoft Public
8 | License (Ms-PL) as published at https://github.com/xceedsoftware/wpftoolkit/blob/master/license.md
9 |
10 | For more features, controls, and fast professional support,
11 | pick up the Plus Edition at https://xceed.com/xceed-toolkit-plus-for-wpf/
12 |
13 | Stay informed: follow @datagrid on Twitter or Like http://facebook.com/datagrids
14 |
15 | ***********************************************************************************/
16 |
17 | using System;
18 | using System.Collections.Generic;
19 | using System.Text;
20 |
21 | namespace Xceed.Wpf.Toolkit
22 | {
23 | public enum AutoSelectBehavior
24 | {
25 | Never,
26 | OnFocus
27 | }
28 | }
29 |
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.DataGrid/(Generator)/IInhibitGenPosToIndexUpdating.cs:
--------------------------------------------------------------------------------
1 | /*************************************************************************************
2 |
3 | Extended WPF Toolkit
4 |
5 | Copyright (C) 2007-2013 Xceed Software Inc.
6 |
7 | This program is provided to you under the terms of the Microsoft Public
8 | License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
9 |
10 | For more features, controls, and fast professional support,
11 | pick up the Plus Edition at http://xceed.com/wpf_toolkit
12 |
13 | Stay informed: follow @datagrid on Twitter or Like http://facebook.com/datagrids
14 |
15 | ***********************************************************************************/
16 |
17 | using System;
18 | using System.Collections.Generic;
19 | using System.Linq;
20 | using System.Text;
21 |
22 | namespace Xceed.Wpf.DataGrid
23 | {
24 | internal interface IInhibitGenPosToIndexUpdating
25 | {
26 | IDisposable InhibitGenPosToIndexUpdates();
27 | }
28 | }
29 |
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.DataGrid/Utils/Wpf/BreadthFirstSearchTreeTraversalStrategy.cs:
--------------------------------------------------------------------------------
1 | /*************************************************************************************
2 |
3 | Extended WPF Toolkit
4 |
5 | Copyright (C) 2007-2013 Xceed Software Inc.
6 |
7 | This program is provided to you under the terms of the Microsoft Public
8 | License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
9 |
10 | For more features, controls, and fast professional support,
11 | pick up the Plus Edition at http://xceed.com/wpf_toolkit
12 |
13 | Stay informed: follow @datagrid on Twitter or Like http://facebook.com/datagrids
14 |
15 | ***********************************************************************************/
16 |
17 |
18 | namespace Xceed.Utils.Wpf
19 | {
20 | internal sealed class BreadthFirstSearchTreeTraversalStrategy : ITreeTraversalStrategy
21 | {
22 | public ITreeTraversal Create()
23 | {
24 | return new BreadthFirstSearchTreeTraversal();
25 | }
26 | }
27 | }
28 |
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit/Panels/PanelBase.cs:
--------------------------------------------------------------------------------
1 | /*************************************************************************************
2 |
3 | Toolkit for WPF
4 |
5 | Copyright (C) 2007-2019 Xceed Software Inc.
6 |
7 | This program is provided to you under the terms of the Microsoft Public
8 | License (Ms-PL) as published at https://github.com/xceedsoftware/wpftoolkit/blob/master/license.md
9 |
10 | For more features, controls, and fast professional support,
11 | pick up the Plus Edition at https://xceed.com/xceed-toolkit-plus-for-wpf/
12 |
13 | Stay informed: follow @datagrid on Twitter or Like http://facebook.com/datagrids
14 |
15 | ***********************************************************************************/
16 |
17 | using System.Windows.Controls;
18 |
19 | namespace Xceed.Wpf.Toolkit.Panels
20 | {
21 | public abstract class PanelBase : Panel
22 | {
23 | #region Constructor
24 |
25 | public PanelBase()
26 | {
27 | }
28 |
29 | #endregion
30 | }
31 | }
32 |
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit/RichTextBox/Formatters/ITextFormatter.cs:
--------------------------------------------------------------------------------
1 | /*************************************************************************************
2 |
3 | Toolkit for WPF
4 |
5 | Copyright (C) 2007-2019 Xceed Software Inc.
6 |
7 | This program is provided to you under the terms of the Microsoft Public
8 | License (Ms-PL) as published at https://github.com/xceedsoftware/wpftoolkit/blob/master/license.md
9 |
10 | For more features, controls, and fast professional support,
11 | pick up the Plus Edition at https://xceed.com/xceed-toolkit-plus-for-wpf/
12 |
13 | Stay informed: follow @datagrid on Twitter or Like http://facebook.com/datagrids
14 |
15 | ***********************************************************************************/
16 |
17 | using System.Windows.Documents;
18 |
19 | namespace Xceed.Wpf.Toolkit
20 | {
21 | public interface ITextFormatter
22 | {
23 | string GetText( FlowDocument document );
24 | void SetText( FlowDocument document, string text );
25 | }
26 | }
27 |
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.DataGrid/ActivationGestureCollection.cs:
--------------------------------------------------------------------------------
1 | /*************************************************************************************
2 |
3 | Extended WPF Toolkit
4 |
5 | Copyright (C) 2007-2013 Xceed Software Inc.
6 |
7 | This program is provided to you under the terms of the Microsoft Public
8 | License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
9 |
10 | For more features, controls, and fast professional support,
11 | pick up the Plus Edition at http://xceed.com/wpf_toolkit
12 |
13 | Stay informed: follow @datagrid on Twitter or Like http://facebook.com/datagrids
14 |
15 | ***********************************************************************************/
16 |
17 | using System;
18 | using System.Collections.Generic;
19 | using System.Text;
20 | using System.Collections.ObjectModel;
21 | using System.Windows;
22 |
23 | namespace Xceed.Wpf.DataGrid
24 | {
25 | public class ActivationGestureCollection: FreezableCollection
26 | {
27 | }
28 | }
29 |
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.DataGrid/AutoResetFlag.cs:
--------------------------------------------------------------------------------
1 | /*************************************************************************************
2 |
3 | Extended WPF Toolkit
4 |
5 | Copyright (C) 2007-2013 Xceed Software Inc.
6 |
7 | This program is provided to you under the terms of the Microsoft Public
8 | License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
9 |
10 | For more features, controls, and fast professional support,
11 | pick up the Plus Edition at http://xceed.com/wpf_toolkit
12 |
13 | Stay informed: follow @datagrid on Twitter or Like http://facebook.com/datagrids
14 |
15 | ***********************************************************************************/
16 |
17 | using System;
18 |
19 | namespace Xceed.Wpf.DataGrid
20 | {
21 | internal abstract class AutoResetFlag
22 | {
23 | #region IsSet Property
24 |
25 | public abstract bool IsSet
26 | {
27 | get;
28 | }
29 |
30 | #endregion
31 |
32 | public abstract IDisposable Set();
33 | }
34 | }
35 |
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.DataGrid/Column.GenericContentTemplateSelectorResources.cs:
--------------------------------------------------------------------------------
1 | /*************************************************************************************
2 |
3 | Extended WPF Toolkit
4 |
5 | Copyright (C) 2007-2013 Xceed Software Inc.
6 |
7 | This program is provided to you under the terms of the Microsoft Public
8 | License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
9 |
10 | For more features, controls, and fast professional support,
11 | pick up the Plus Edition at http://xceed.com/wpf_toolkit
12 |
13 | Stay informed: follow @datagrid on Twitter or Like http://facebook.com/datagrids
14 |
15 | ***********************************************************************************/
16 |
17 | using System;
18 | using System.Collections.Generic;
19 | using System.Linq;
20 | using System.Text;
21 | using System.Windows;
22 |
23 | namespace Xceed.Wpf.DataGrid
24 | {
25 | internal partial class GenericContentTemplateSelectorResources : ResourceDictionary
26 | {
27 | }
28 | }
29 |
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.DataGrid/IDeferableScrollInfoRefresh.cs:
--------------------------------------------------------------------------------
1 | /*************************************************************************************
2 |
3 | Extended WPF Toolkit
4 |
5 | Copyright (C) 2007-2013 Xceed Software Inc.
6 |
7 | This program is provided to you under the terms of the Microsoft Public
8 | License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
9 |
10 | For more features, controls, and fast professional support,
11 | pick up the Plus Edition at http://xceed.com/wpf_toolkit
12 |
13 | Stay informed: follow @datagrid on Twitter or Like http://facebook.com/datagrids
14 |
15 | ***********************************************************************************/
16 |
17 | using System;
18 | using System.Collections.Generic;
19 | using System.Text;
20 | using System.Windows.Controls;
21 |
22 | namespace Xceed.Wpf.DataGrid
23 | {
24 | internal interface IDeferableScrollInfoRefresh
25 | {
26 | IDisposable DeferScrollInfoRefresh( Orientation orientation );
27 | }
28 | }
29 |
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/DataGrid/Converters/FlagPathConverter.cs:
--------------------------------------------------------------------------------
1 | /*************************************************************************************
2 |
3 | Toolkit for WPF
4 |
5 | Copyright (C) 2007-2019 Xceed Software Inc.
6 |
7 | This program is provided to you under the terms of the Microsoft Public
8 | License (Ms-PL) as published at https://github.com/xceedsoftware/wpftoolkit/blob/master/license.md
9 |
10 | For more features, controls, and fast professional support,
11 | pick up the Plus Edition at https://xceed.com/xceed-toolkit-plus-for-wpf/
12 |
13 | Stay informed: follow @datagrid on Twitter or Like http://facebook.com/datagrids
14 |
15 | ***********************************************************************************/
16 | using System;
17 | using System.Windows.Data;
18 | using Xceed.Wpf.Samples.SampleData;
19 | using System.Globalization;
20 | using System.Windows;
21 |
22 | namespace Xceed.Wpf.Toolkit.LiveExplorer.Samples.DataGrid.Converters
23 | {
24 |
25 | }
26 |
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit/Core/Utilities/WindowUtilities.cs:
--------------------------------------------------------------------------------
1 | /*************************************************************************************
2 |
3 | Toolkit for WPF
4 |
5 | Copyright (C) 2007-2019 Xceed Software Inc.
6 |
7 | This program is provided to you under the terms of the Microsoft Public
8 | License (Ms-PL) as published at https://github.com/xceedsoftware/wpftoolkit/blob/master/license.md
9 |
10 | For more features, controls, and fast professional support,
11 | pick up the Plus Edition at https://xceed.com/xceed-toolkit-plus-for-wpf/
12 |
13 | Stay informed: follow @datagrid on Twitter or Like http://facebook.com/datagrids
14 |
15 | ***********************************************************************************/
16 |
17 | using System;
18 | using System.Collections.Generic;
19 | using System.Linq;
20 | using System.Text;
21 | using System.Windows;
22 |
23 | namespace Xceed.Wpf.Toolkit.Core.Utilities
24 | {
25 | internal class WindowUtilities
26 | {
27 |
28 |
29 | }
30 | }
31 |
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit/MaskedTextBox/Implementation/InsertKeyModeEnum.cs:
--------------------------------------------------------------------------------
1 | /*************************************************************************************
2 |
3 | Toolkit for WPF
4 |
5 | Copyright (C) 2007-2019 Xceed Software Inc.
6 |
7 | This program is provided to you under the terms of the Microsoft Public
8 | License (Ms-PL) as published at https://github.com/xceedsoftware/wpftoolkit/blob/master/license.md
9 |
10 | For more features, controls, and fast professional support,
11 | pick up the Plus Edition at https://xceed.com/xceed-toolkit-plus-for-wpf/
12 |
13 | Stay informed: follow @datagrid on Twitter or Like http://facebook.com/datagrids
14 |
15 | ***********************************************************************************/
16 |
17 | using System;
18 | using System.Collections.Generic;
19 | using System.Text;
20 |
21 | namespace Xceed.Wpf.Toolkit
22 | {
23 | public enum InsertKeyMode
24 | {
25 | Default = 0,
26 | Insert = 1,
27 | Overwrite = 2
28 | }
29 | }
30 |
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.DataGrid/(enums)/DataGridUpdateSourceTriggerEnum.cs:
--------------------------------------------------------------------------------
1 | /*************************************************************************************
2 |
3 | Extended WPF Toolkit
4 |
5 | Copyright (C) 2007-2013 Xceed Software Inc.
6 |
7 | This program is provided to you under the terms of the Microsoft Public
8 | License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
9 |
10 | For more features, controls, and fast professional support,
11 | pick up the Plus Edition at http://xceed.com/wpf_toolkit
12 |
13 | Stay informed: follow @datagrid on Twitter or Like http://facebook.com/datagrids
14 |
15 | ***********************************************************************************/
16 |
17 | using System;
18 | using System.Collections.Generic;
19 | using System.Linq;
20 | using System.Text;
21 |
22 | namespace Xceed.Wpf.DataGrid
23 | {
24 | public enum DataGridUpdateSourceTrigger
25 | {
26 | RowEndingEdit = 0,
27 | CellEndingEdit = 1,
28 | CellContentChanged = 2
29 | }
30 | }
31 |
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/ListBox/Converters/BoxArtImageSourceConverter.cs:
--------------------------------------------------------------------------------
1 | /**************************************************************************************
2 |
3 | Toolkit for WPF
4 |
5 | Copyright (C) 2007-2019 Xceed Software Inc.
6 |
7 | This program is provided to you under the terms of the Microsoft Public
8 | License (Ms-PL) as published at https://github.com/xceedsoftware/wpftoolkit/blob/master/license.md
9 |
10 | For more features, controls, and fast professional support,
11 | pick up the Plus Edition at https://xceed.com/xceed-toolkit-plus-for-wpf/
12 |
13 | Stay informed: follow @datagrid on Twitter or Like http://facebook.com/datagrids
14 |
15 | *************************************************************************************/
16 | using System;
17 | using System.Windows.Data;
18 | using System.Windows.Media;
19 |
20 |
21 | namespace Xceed.Wpf.Toolkit.LiveExplorer.Samples.ListBox.Converters
22 | {
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 | }
35 |
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.DataGrid/(enums)/ConnectionLineAlignmentEnum.cs:
--------------------------------------------------------------------------------
1 | /*************************************************************************************
2 |
3 | Extended WPF Toolkit
4 |
5 | Copyright (C) 2007-2013 Xceed Software Inc.
6 |
7 | This program is provided to you under the terms of the Microsoft Public
8 | License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
9 |
10 | For more features, controls, and fast professional support,
11 | pick up the Plus Edition at http://xceed.com/wpf_toolkit
12 |
13 | Stay informed: follow @datagrid on Twitter or Like http://facebook.com/datagrids
14 |
15 | ***********************************************************************************/
16 |
17 | using System;
18 | using System.Collections.Generic;
19 | using System.Text;
20 |
21 | namespace Xceed.Wpf.DataGrid
22 | {
23 | public enum ConnectionLineAlignment
24 | {
25 | RightToBottom = 0,
26 | LeftToBottom = 1,
27 | RightToTop = 2,
28 | LeftToTop = 3,
29 | CenterToCenter = 4,
30 | }
31 | }
32 |
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.DataGrid/Utils/Wpf/ITreeTraversal.cs:
--------------------------------------------------------------------------------
1 | /*************************************************************************************
2 |
3 | Extended WPF Toolkit
4 |
5 | Copyright (C) 2007-2013 Xceed Software Inc.
6 |
7 | This program is provided to you under the terms of the Microsoft Public
8 | License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
9 |
10 | For more features, controls, and fast professional support,
11 | pick up the Plus Edition at http://xceed.com/wpf_toolkit
12 |
13 | Stay informed: follow @datagrid on Twitter or Like http://facebook.com/datagrids
14 |
15 | ***********************************************************************************/
16 |
17 | using System.Collections.Generic;
18 | using System.Windows;
19 |
20 | namespace Xceed.Utils.Wpf
21 | {
22 | internal interface ITreeTraversal
23 | {
24 | DependencyObject Current
25 | {
26 | get;
27 | }
28 |
29 | bool MoveNext();
30 | void VisitNodes( IEnumerable nodes );
31 | }
32 | }
33 |
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.DataGrid/Views/DataGridControlBackgroundBrushesResources.xaml.cs:
--------------------------------------------------------------------------------
1 | /*************************************************************************************
2 |
3 | Extended WPF Toolkit
4 |
5 | Copyright (C) 2007-2013 Xceed Software Inc.
6 |
7 | This program is provided to you under the terms of the Microsoft Public
8 | License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
9 |
10 | For more features, controls, and fast professional support,
11 | pick up the Plus Edition at http://xceed.com/wpf_toolkit
12 |
13 | Stay informed: follow @datagrid on Twitter or Like http://facebook.com/datagrids
14 |
15 | ***********************************************************************************/
16 |
17 | using System.Windows;
18 |
19 | namespace Xceed.Wpf.DataGrid.Views
20 | {
21 | internal partial class DataGridControlBackgroundBrushesResources : ResourceDictionary
22 | {
23 | public DataGridControlBackgroundBrushesResources()
24 | {
25 | this.InitializeComponent();
26 | }
27 | }
28 | }
29 |
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/MaterialControls/Data/RequiredRule.cs:
--------------------------------------------------------------------------------
1 | /**************************************************************************************
2 |
3 | Toolkit for WPF
4 |
5 | Copyright (C) 2007-2019 Xceed Software Inc.
6 |
7 | This program is provided to you under the terms of the Microsoft Public
8 | License (Ms-PL) as published at https://github.com/xceedsoftware/wpftoolkit/blob/master/license.md
9 |
10 | For more features, controls, and fast professional support,
11 | pick up the Plus Edition at https://xceed.com/xceed-toolkit-plus-for-wpf/
12 |
13 | Stay informed: follow @datagrid on Twitter or Like http://facebook.com/datagrids
14 |
15 | ************************************************************************************/
16 | using System;
17 | using System.Collections.Generic;
18 | using System.Globalization;
19 | using System.Linq;
20 | using System.Text;
21 | using System.Windows.Controls;
22 |
23 | namespace Xceed.Wpf.Toolkit.LiveExplorer.Samples.MaterialControls.Data
24 | {
25 |
26 |
27 | }
28 |
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit.LiveExplorer/Samples/PropertyGrid/OpenSourceImages/EditorDefinitions.xaml.txt:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
8 |
9 |
13 |
14 |
17 |
18 |
20 |
21 |
22 |
23 |
24 |
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit/BrushPicker/Implementation/ColorChangedEventArgs.cs:
--------------------------------------------------------------------------------
1 | /***************** NCore Softwares Pvt. Ltd., India **************************
2 |
3 | ColorBox
4 |
5 | Copyright (C) 2013 NCore Softwares Pvt. Ltd.
6 |
7 | This program is provided to you under the terms of the Microsoft Public
8 | License (Ms-PL) as published at http://colorbox.codeplex.com/license
9 |
10 | ***********************************************************************************/
11 |
12 | using System;
13 | using System.Windows.Media;
14 | using System.Windows;
15 |
16 | namespace ColorBox
17 | {
18 | public class ColorChangedEventArgs : RoutedEventArgs
19 | {
20 | public ColorChangedEventArgs(RoutedEvent routedEvent, Color color)
21 | {
22 | this.RoutedEvent = routedEvent;
23 | this.Color = color;
24 | }
25 |
26 | private Color _Color;
27 | public Color Color
28 | {
29 | get { return _Color; }
30 | set { _Color = value; }
31 | }
32 | }
33 | }
34 |
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit/MaskedTextBox/Implementation/MaskFormatEnum.cs:
--------------------------------------------------------------------------------
1 | /*************************************************************************************
2 |
3 | Toolkit for WPF
4 |
5 | Copyright (C) 2007-2019 Xceed Software Inc.
6 |
7 | This program is provided to you under the terms of the Microsoft Public
8 | License (Ms-PL) as published at https://github.com/xceedsoftware/wpftoolkit/blob/master/license.md
9 |
10 | For more features, controls, and fast professional support,
11 | pick up the Plus Edition at https://xceed.com/xceed-toolkit-plus-for-wpf/
12 |
13 | Stay informed: follow @datagrid on Twitter or Like http://facebook.com/datagrids
14 |
15 | ***********************************************************************************/
16 |
17 | using System;
18 | using System.Collections.Generic;
19 | using System.Text;
20 |
21 | namespace Xceed.Wpf.Toolkit
22 | {
23 | public enum MaskFormat
24 | {
25 | ExcludePromptAndLiterals,
26 | IncludeLiterals,
27 | IncludePrompt,
28 | IncludePromptAndLiterals
29 | }
30 | }
31 |
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit/Primitives/HsvColor.cs:
--------------------------------------------------------------------------------
1 | /*************************************************************************************
2 |
3 | Toolkit for WPF
4 |
5 | Copyright (C) 2007-2019 Xceed Software Inc.
6 |
7 | This program is provided to you under the terms of the Microsoft Public
8 | License (Ms-PL) as published at https://github.com/xceedsoftware/wpftoolkit/blob/master/license.md
9 |
10 | For more features, controls, and fast professional support,
11 | pick up the Plus Edition at https://xceed.com/xceed-toolkit-plus-for-wpf/
12 |
13 | Stay informed: follow @datagrid on Twitter or Like http://facebook.com/datagrids
14 |
15 | ***********************************************************************************/
16 |
17 | namespace Xceed.Wpf.Toolkit.Primitives
18 | {
19 | internal struct HsvColor
20 | {
21 | public double H;
22 | public double S;
23 | public double V;
24 |
25 | public HsvColor( double h, double s, double v )
26 | {
27 | H = h;
28 | S = s;
29 | V = v;
30 | }
31 | }
32 | }
33 |
--------------------------------------------------------------------------------
/Src/Xceed.Wpf.Toolkit/PropertyGrid/Implementation/FilterInfo.cs:
--------------------------------------------------------------------------------
1 | /*************************************************************************************
2 |
3 | Toolkit for WPF
4 |
5 | Copyright (C) 2007-2019 Xceed Software Inc.
6 |
7 | This program is provided to you under the terms of the Microsoft Public
8 | License (Ms-PL) as published at https://github.com/xceedsoftware/wpftoolkit/blob/master/license.md
9 |
10 | For more features, controls, and fast professional support,
11 | pick up the Plus Edition at https://xceed.com/xceed-toolkit-plus-for-wpf/
12 |
13 | Stay informed: follow @datagrid on Twitter or Like http://facebook.com/datagrids
14 |
15 | ***********************************************************************************/
16 |
17 | using System;
18 | using System.Collections.Generic;
19 | using System.Linq;
20 | using System.Text;
21 |
22 | namespace Xceed.Wpf.Toolkit.PropertyGrid
23 | {
24 | internal struct FilterInfo
25 | {
26 | public string InputString;
27 | public Predicate