├── .gitattributes ├── .gitignore ├── LICENSE ├── ModernUI.Xceed ├── Examples │ ├── ModernUI.Standard.Controls.Example │ │ ├── App.config │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── MainWindow.xaml │ │ ├── MainWindow.xaml.cs │ │ ├── ModernUI.Standard.Controls.Example.csproj │ │ ├── Pages │ │ │ ├── About.xaml │ │ │ ├── About.xaml.cs │ │ │ ├── ControlsRoot.xaml │ │ │ ├── ControlsRoot.xaml.cs │ │ │ ├── Expander.xaml │ │ │ ├── Expander.xaml.cs │ │ │ ├── GroupBox.xaml │ │ │ ├── GroupBox.xaml.cs │ │ │ ├── License.xaml │ │ │ ├── License.xaml.cs │ │ │ ├── TabControl.xaml │ │ │ ├── TabControl.xaml.cs │ │ │ ├── ToggleSwitch.xaml │ │ │ └── ToggleSwitch.xaml.cs │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.cs │ │ │ └── Settings.settings │ │ ├── Resources │ │ │ ├── Icon.ico │ │ │ └── Icon.png │ │ └── packages.config │ ├── ModernUI.Xceed.AvalonDock.Example │ │ ├── App.config │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── MainWindow.xaml │ │ ├── MainWindow.xaml.cs │ │ ├── ModernUI.Xceed.AvalonDock.Example.csproj │ │ ├── Pages │ │ │ ├── About.xaml │ │ │ ├── About.xaml.cs │ │ │ ├── AvalonDock.xaml │ │ │ ├── AvalonDock.xaml.cs │ │ │ ├── License.xaml │ │ │ └── License.xaml.cs │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.cs │ │ │ └── Settings.settings │ │ ├── Resources │ │ │ └── Icon.ico │ │ └── packages.config │ ├── ModernUI.Xceed.Toolkit.Example │ │ ├── App.config │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── MainWindow.xaml │ │ ├── MainWindow.xaml.cs │ │ ├── ModernUI.Xceed.Toolkit.Example.csproj │ │ ├── Pages │ │ │ ├── About.xaml │ │ │ ├── About.xaml.cs │ │ │ ├── CalculatorControl.xaml │ │ │ ├── CalculatorControl.xaml.cs │ │ │ ├── CheckListControls.xaml │ │ │ ├── CheckListControls.xaml.cs │ │ │ ├── CollectionControl.xaml │ │ │ ├── CollectionControl.xaml.cs │ │ │ ├── ColorControls.xaml │ │ │ ├── ColorControls.xaml.cs │ │ │ ├── ControlsRoot.xaml │ │ │ ├── ControlsRoot.xaml.cs │ │ │ ├── License.xaml │ │ │ ├── License.xaml.cs │ │ │ ├── PropertyGrid.xaml │ │ │ ├── PropertyGrid.xaml.cs │ │ │ ├── RichTextControl.xaml │ │ │ ├── RichTextControl.xaml.cs │ │ │ ├── StandardControls.xaml │ │ │ ├── StandardControls.xaml.cs │ │ │ ├── UpDownControls.xaml │ │ │ └── UpDownControls.xaml.cs │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.cs │ │ │ └── Settings.settings │ │ ├── Resources │ │ │ └── Icon.ico │ │ └── packages.config │ └── Resources │ │ ├── Icon.ico │ │ └── Icon.png ├── ModernUI.Standard.Controls │ ├── Assets │ │ ├── Controls │ │ │ ├── Expander.xaml │ │ │ ├── GroupBox.xaml │ │ │ └── TabControl.xaml │ │ └── ModernUI.Standard.Controls.xaml │ ├── ModernUI.Standard.Controls.csproj │ ├── ModernUI.Standard.Controls.nuspec │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── README.md │ └── packages.config ├── ModernUI.Xceed.AvalonDock │ ├── Assets │ │ ├── Brushes.xaml │ │ └── Theme.xaml │ ├── Images │ │ ├── DockAnchorableBottom.png │ │ ├── DockAnchorableLeft.png │ │ ├── DockAnchorableRight.png │ │ ├── DockAnchorableTop.png │ │ ├── DockDocumentAsAnchorableBottom.png │ │ ├── DockDocumentAsAnchorableLeft.png │ │ ├── DockDocumentAsAnchorableRight.png │ │ ├── DockDocumentAsAnchorableTop.png │ │ ├── DockDocumentBottom.png │ │ ├── DockDocumentInside.png │ │ ├── DockDocumentLeft.png │ │ ├── DockDocumentRight.png │ │ ├── DockDocumentTop.png │ │ ├── DockPaneEmpty.png │ │ ├── DockPaneLargeEmpty.png │ │ ├── HTabGroup.png │ │ ├── Locked.png │ │ ├── PinAutoHide.png │ │ ├── PinAutoHide_Black.png │ │ ├── PinAutoHide_Dark.png │ │ ├── PinClose.png │ │ ├── PinClose_Black.png │ │ ├── PinClose_Dark.png │ │ ├── PinDocMenu.png │ │ ├── PinDocMenu_Black.png │ │ ├── PinMaximize.png │ │ ├── PinMaximize_Black.png │ │ ├── PinMaximize_Dark.png │ │ ├── PinMenu.png │ │ ├── PinMenu_Black.png │ │ ├── PinMenu_Dark.png │ │ ├── PinRestore.png │ │ ├── PinRestore_Black.png │ │ ├── PinRestore_Dark.png │ │ └── VTabGroup.png │ ├── ModernUI.Xceed.AvalonDock.csproj │ ├── ModernUI.Xceed.AvalonDock.nuspec │ ├── ModernUiTheme.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── packages.config ├── ModernUI.Xceed.ToggleSwitch │ ├── Assets │ │ ├── Common │ │ │ └── DropShadowTextBlock.cs │ │ ├── ModernUI.ToggleSwitch.xaml │ │ └── Styles │ │ │ └── ModernUI.xaml │ ├── ModernUI.ToggleSwitch.csproj │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ └── packages.config ├── ModernUI.Xceed.Toolkit │ ├── Assets │ │ ├── Controls │ │ │ ├── AutoSelectTextBox.xaml │ │ │ ├── ButtonChrome.xaml │ │ │ ├── ButtonSpinner.xaml │ │ │ ├── Calculator.xaml │ │ │ ├── CalculatorUpDown.xaml │ │ │ ├── CheckComboBox.xaml │ │ │ ├── CheckListBox.xaml │ │ │ ├── CollectionControl.xaml │ │ │ ├── ColorCanvas.xaml │ │ │ ├── ColorPicker.xaml │ │ │ ├── DateTimePicker.xaml │ │ │ ├── DateTimeUpDown.xaml │ │ │ ├── DropDownButton.xaml │ │ │ ├── MaskedTextBox.xaml │ │ │ ├── MultiLineTextEditor.xaml │ │ │ ├── NumericUpDown.xaml │ │ │ ├── PropertyGrid.xaml │ │ │ ├── RangeSlider.xaml │ │ │ ├── RichTextBox.xaml │ │ │ ├── RichTextBoxFormatBar.xaml │ │ │ ├── SelectorItem.xaml │ │ │ ├── SplitButton.xaml │ │ │ ├── TimePicker.xaml │ │ │ ├── TimeSpanUpDown.xaml │ │ │ ├── ValueRangeTextBox.xaml │ │ │ ├── WatermarkComboBox.xaml │ │ │ └── WatermarkTextBox.xaml │ │ └── ModernUI.Xceed.Toolkit.xaml │ ├── ModernUI.Xceed.Toolkit.csproj │ ├── ModernUI.Xceed.Toolkit.nuspec │ ├── Properties │ │ └── AssemblyInfo.cs │ └── packages.config └── ModernUI.Xceed.sln ├── README.md ├── Resources └── icon_ModernUI.Xceed.Toolkit.png └── Screenshots ├── ModernUI.Xceed.Toolkit-Dark-Calculator-Controls.gif ├── ModernUI.Xceed.Toolkit-Dark-CheckList-Controls.gif ├── ModernUI.Xceed.Toolkit-Dark-Collection-Controls.gif ├── ModernUI.Xceed.Toolkit-Dark-Color-Controls.gif ├── ModernUI.Xceed.Toolkit-Dark-Property-Grid-Controls.gif ├── ModernUI.Xceed.Toolkit-Dark-RichTextBox-Controls.png ├── ModernUI.Xceed.Toolkit-Dark-Standard-Controls.gif └── ModernUI.Xceed.Toolkit-Dark-Up-Down-Controls.gif /.gitattributes: -------------------------------------------------------------------------------- 1 | ############################################################################### 2 | # Set default behavior to automatically normalize line endings. 3 | ############################################################################### 4 | * text=auto 5 | 6 | ############################################################################### 7 | # Set default behavior for command prompt diff. 8 | # 9 | # This is need for earlier builds of msysgit that does not have it on by 10 | # default for csharp files. 11 | # Note: This is only used by command line 12 | ############################################################################### 13 | #*.cs diff=csharp 14 | 15 | ############################################################################### 16 | # Set the merge driver for project and solution files 17 | # 18 | # Merging from the command prompt will add diff markers to the files if there 19 | # are conflicts (Merging from VS is not affected by the settings below, in VS 20 | # the diff markers are never inserted). Diff markers may cause the following 21 | # file extensions to fail to load in VS. An alternative would be to treat 22 | # these files as binary and thus will always conflict and require user 23 | # intervention with every merge. To do so, just uncomment the entries below 24 | ############################################################################### 25 | #*.sln merge=binary 26 | #*.csproj merge=binary 27 | #*.vbproj merge=binary 28 | #*.vcxproj merge=binary 29 | #*.vcproj merge=binary 30 | #*.dbproj merge=binary 31 | #*.fsproj merge=binary 32 | #*.lsproj merge=binary 33 | #*.wixproj merge=binary 34 | #*.modelproj merge=binary 35 | #*.sqlproj merge=binary 36 | #*.wwaproj merge=binary 37 | 38 | ############################################################################### 39 | # behavior for image files 40 | # 41 | # image files are treated as binary by default. 42 | ############################################################################### 43 | #*.jpg binary 44 | #*.png binary 45 | #*.gif binary 46 | 47 | ############################################################################### 48 | # diff behavior for common document formats 49 | # 50 | # Convert binary document formats to text before diffing them. This feature 51 | # is only available from the command line. Turn it on by uncommenting the 52 | # entries below. 53 | ############################################################################### 54 | #*.doc diff=astextplain 55 | #*.DOC diff=astextplain 56 | #*.docx diff=astextplain 57 | #*.DOCX diff=astextplain 58 | #*.dot diff=astextplain 59 | #*.DOT diff=astextplain 60 | #*.pdf diff=astextplain 61 | #*.PDF diff=astextplain 62 | #*.rtf diff=astextplain 63 | #*.RTF diff=astextplain 64 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # User-specific files 2 | *.suo 3 | *.user 4 | *.sln.docstates 5 | 6 | # Build results 7 | 8 | [Dd]ebug/ 9 | [Rr]elease/ 10 | x64/ 11 | build/ 12 | [Bb]in/ 13 | [Oo]bj/ 14 | 15 | # NuGet Packages 16 | *.nupkg 17 | # The packages folder can be ignored because of Package Restore 18 | **/packages/* 19 | # except build/, which is used as an MSBuild target. 20 | !**/packages/build/ 21 | # Uncomment if necessary however generally it will be regenerated when needed 22 | #!**/packages/repositories.config 23 | 24 | # MSTest test Results 25 | [Tt]est[Rr]esult*/ 26 | [Bb]uild[Ll]og.* 27 | 28 | *_i.c 29 | *_p.c 30 | *.ilk 31 | *.meta 32 | *.obj 33 | *.pch 34 | *.pdb 35 | *.pgc 36 | *.pgd 37 | *.rsp 38 | *.sbr 39 | *.tlb 40 | *.tli 41 | *.tlh 42 | *.tmp 43 | *.tmp_proj 44 | *.log 45 | *.vspscc 46 | *.vssscc 47 | .builds 48 | *.pidb 49 | *.log 50 | *.scc 51 | 52 | # OS generated files # 53 | .DS_Store* 54 | Icon? 55 | 56 | # Visual C++ cache files 57 | ipch/ 58 | *.aps 59 | *.ncb 60 | *.opensdf 61 | *.sdf 62 | *.cachefile 63 | 64 | # Visual Studio profiler 65 | *.psess 66 | *.vsp 67 | *.vspx 68 | 69 | # Guidance Automation Toolkit 70 | *.gpState 71 | 72 | # ReSharper is a .NET coding add-in 73 | _ReSharper*/ 74 | *.[Rr]e[Ss]harper 75 | 76 | # TeamCity is a build add-in 77 | _TeamCity* 78 | 79 | # DotCover is a Code Coverage Tool 80 | *.dotCover 81 | 82 | # NCrunch 83 | *.ncrunch* 84 | .*crunch*.local.xml 85 | 86 | # Installshield output folder 87 | [Ee]xpress/ 88 | 89 | # DocProject is a documentation generator add-in 90 | DocProject/buildhelp/ 91 | DocProject/Help/*.HxT 92 | DocProject/Help/*.HxC 93 | DocProject/Help/*.hhc 94 | DocProject/Help/*.hhk 95 | DocProject/Help/*.hhp 96 | DocProject/Help/Html2 97 | DocProject/Help/html 98 | 99 | # Click-Once directory 100 | publish/ 101 | 102 | # Publish Web Output 103 | *.Publish.xml 104 | 105 | # Windows Azure Build Output 106 | csx 107 | *.build.csdef 108 | 109 | # Windows Store app package directory 110 | AppPackages/ 111 | 112 | # Others 113 | *.Cache 114 | ClientBin/ 115 | [Ss]tyle[Cc]op.* 116 | ~$* 117 | *~ 118 | *.dbmdl 119 | *.[Pp]ublish.xml 120 | *.pfx 121 | *.publishsettings 122 | modulesbin/ 123 | tempbin/ 124 | 125 | # EPiServer Site file (VPP) 126 | AppData/ 127 | 128 | # RIA/Silverlight projects 129 | Generated_Code/ 130 | 131 | # Backup & report files from converting an old project file to a newer 132 | # Visual Studio version. Backup files are not needed, because we have git ;-) 133 | _UpgradeReport_Files/ 134 | Backup*/ 135 | UpgradeLog*.XML 136 | UpgradeLog*.htm 137 | 138 | # vim 139 | *.txt~ 140 | *.swp 141 | *.swo 142 | 143 | # svn 144 | .svn 145 | 146 | # Remainings from resolvings conflicts in Source Control 147 | *.orig 148 | 149 | # SQL Server files 150 | **/App_Data/*.mdf 151 | **/App_Data/*.ldf 152 | **/App_Data/*.sdf 153 | 154 | 155 | #LightSwitch generated files 156 | GeneratedArtifacts/ 157 | _Pvt_Extensions/ 158 | ModelManifest.xml 159 | 160 | # ========================= 161 | # Windows detritus 162 | # ========================= 163 | 164 | # Windows image file caches 165 | Thumbs.db 166 | ehthumbs.db 167 | 168 | # Folder config file 169 | Desktop.ini 170 | 171 | # Recycle Bin used on file shares 172 | $RECYCLE.BIN/ 173 | 174 | # Mac desktop service store files 175 | .DS_Store 176 | 177 | # SASS Compiler cache 178 | .sass-cache 179 | 180 | # Visual Studio 2014 CTP 181 | **/*.sln.ide 182 | 183 | # Visual Studio temp something 184 | .vs/ -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2016 Sam Oates 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /ModernUI.Xceed/Examples/ModernUI.Standard.Controls.Example/App.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /ModernUI.Xceed/Examples/ModernUI.Standard.Controls.Example/App.xaml: -------------------------------------------------------------------------------- 1 |  5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | #7777FF 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /ModernUI.Xceed/Examples/ModernUI.Standard.Controls.Example/App.xaml.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Configuration; 4 | using System.Data; 5 | using System.Linq; 6 | using System.Threading.Tasks; 7 | using System.Windows; 8 | 9 | namespace ModernUI.Xceed.AvalonDock.Example 10 | { 11 | /// 12 | /// Interaction logic for App.xaml 13 | /// 14 | public partial class App : Application 15 | { 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /ModernUI.Xceed/Examples/ModernUI.Standard.Controls.Example/MainWindow.xaml: -------------------------------------------------------------------------------- 1 |  12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | -------------------------------------------------------------------------------- /ModernUI.Xceed/Examples/ModernUI.Standard.Controls.Example/MainWindow.xaml.cs: -------------------------------------------------------------------------------- 1 | namespace ModernUI.Xceed.AvalonDock.Example 2 | { 3 | /// 4 | /// Interaction logic for MainWindow.xaml 5 | /// 6 | public partial class MainWindow 7 | { 8 | public MainWindow() 9 | { 10 | InitializeComponent(); 11 | } 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /ModernUI.Xceed/Examples/ModernUI.Standard.Controls.Example/Pages/About.xaml: -------------------------------------------------------------------------------- 1 |  5 | 6 | 7 | The aim of the ModernUI.Standard.Controls library is to implement 8 | ModernUI styles for all standard windows controls which are not currently 9 | implemented by the core library. 10 | 11 | -------------------------------------------------------------------------------- /ModernUI.Xceed/Examples/ModernUI.Standard.Controls.Example/Pages/About.xaml.cs: -------------------------------------------------------------------------------- 1 | namespace ModernUI.Standard.Controls.Example.Pages 2 | { 3 | /// 4 | /// Interaction logic for About.xaml 5 | /// 6 | public partial class About 7 | { 8 | public About() 9 | { 10 | InitializeComponent(); 11 | } 12 | } 13 | } -------------------------------------------------------------------------------- /ModernUI.Xceed/Examples/ModernUI.Standard.Controls.Example/Pages/ControlsRoot.xaml: -------------------------------------------------------------------------------- 1 |  6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /ModernUI.Xceed/Examples/ModernUI.Standard.Controls.Example/Pages/ControlsRoot.xaml.cs: -------------------------------------------------------------------------------- 1 | namespace ModernUI.Standard.Controls.Example.Pages 2 | { 3 | /// 4 | /// Interaction logic for ControlsRoot.xaml 5 | /// 6 | public partial class ControlsRoot 7 | { 8 | public ControlsRoot() 9 | { 10 | InitializeComponent(); 11 | } 12 | } 13 | } -------------------------------------------------------------------------------- /ModernUI.Xceed/Examples/ModernUI.Standard.Controls.Example/Pages/Expander.xaml: -------------------------------------------------------------------------------- 1 |  8 | 9 | 10 | 11 | 12 | 13 | Expander styled using a ModernUI based theme. 14 | 15 | 16 | 17 | 18 | 19 | 20 | Expander styled using a ModernUI based theme. 21 | 22 | 23 | 24 | 25 | 26 | 27 | Expander styled using a ModernUI based theme. 28 | 29 | 30 | 31 | 32 | 33 | Expander styled using a ModernUI based theme. 34 | 35 | 36 | 37 | 38 | 39 | Expander styled using a ModernUI based theme. 40 | 41 | 42 | 43 | 44 | -------------------------------------------------------------------------------- /ModernUI.Xceed/Examples/ModernUI.Standard.Controls.Example/Pages/Expander.xaml.cs: -------------------------------------------------------------------------------- 1 |  2 | namespace ModernUI.Standard.Controls.Example.Pages 3 | { 4 | /// 5 | /// Interaction logic for Expander.xaml 6 | /// 7 | public partial class Expander 8 | { 9 | public Expander() 10 | { 11 | InitializeComponent(); 12 | } 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /ModernUI.Xceed/Examples/ModernUI.Standard.Controls.Example/Pages/GroupBox.xaml: -------------------------------------------------------------------------------- 1 |  8 | 9 | 10 | 11 | 12 | 13 | Group box styled using a ModernUI based theme. 14 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /ModernUI.Xceed/Examples/ModernUI.Standard.Controls.Example/Pages/GroupBox.xaml.cs: -------------------------------------------------------------------------------- 1 |  2 | namespace ModernUI.Standard.Controls.Example.Pages 3 | { 4 | /// 5 | /// Interaction logic for GroupBox.xaml 6 | /// 7 | public partial class GroupBox 8 | { 9 | public GroupBox() 10 | { 11 | InitializeComponent(); 12 | } 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /ModernUI.Xceed/Examples/ModernUI.Standard.Controls.Example/Pages/License.xaml: -------------------------------------------------------------------------------- 1 |  5 | 6 | 7 | MIT License 8 | 9 | Copyright (c) 2017 Sam Oates 10 | 11 | Permission is hereby granted, free of charge, to any person obtaining a copy 12 | of this software and associated documentation files (the "Software"), to deal 13 | in the Software without restriction, including without limitation the rights 14 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 15 | copies of the Software, and to permit persons to whom the Software is 16 | furnished to do so, subject to the following conditions: 17 | 18 | The above copyright notice and this permission notice shall be included in all 19 | copies or substantial portions of the Software. 20 | 21 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 22 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 23 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 24 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 25 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 26 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 27 | SOFTWARE. 28 | 29 | 30 | -------------------------------------------------------------------------------- /ModernUI.Xceed/Examples/ModernUI.Standard.Controls.Example/Pages/License.xaml.cs: -------------------------------------------------------------------------------- 1 | namespace ModernUI.Standard.Controls.Example.Pages 2 | { 3 | /// 4 | /// Interaction logic for License.xaml 5 | /// 6 | public partial class License 7 | { 8 | public License() 9 | { 10 | InitializeComponent(); 11 | } 12 | } 13 | } -------------------------------------------------------------------------------- /ModernUI.Xceed/Examples/ModernUI.Standard.Controls.Example/Pages/TabControl.xaml: -------------------------------------------------------------------------------- 1 |  4 | 5 | 6 | 7 | 8 | 9 | This is tab one of the tab control 10 | 11 | 12 | 13 | 14 | 15 | This is tab two of the tab control 16 | 17 | 18 | 19 | 20 | 21 | This is tab three of the tab control 22 | 23 | 24 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /ModernUI.Xceed/Examples/ModernUI.Standard.Controls.Example/Pages/TabControl.xaml.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Threading.Tasks; 6 | 7 | namespace ModernUI.Standard.Controls.Example.Pages 8 | { 9 | /// 10 | /// Interaction logic for TabControl.xaml 11 | /// 12 | public partial class TabControl 13 | { 14 | public TabControl() 15 | { 16 | InitializeComponent(); 17 | } 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /ModernUI.Xceed/Examples/ModernUI.Standard.Controls.Example/Pages/ToggleSwitch.xaml: -------------------------------------------------------------------------------- 1 |  5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /ModernUI.Xceed/Examples/ModernUI.Standard.Controls.Example/Pages/ToggleSwitch.xaml.cs: -------------------------------------------------------------------------------- 1 | namespace ModernUI.Standard.Controls.Example.Pages 2 | { 3 | /// 4 | /// Interaction logic for ToggleSwitch.xaml 5 | /// 6 | public partial class ToggleSwitch 7 | { 8 | public ToggleSwitch() 9 | { 10 | InitializeComponent(); 11 | } 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /ModernUI.Xceed/Examples/ModernUI.Standard.Controls.Example/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Resources; 3 | using System.Runtime.CompilerServices; 4 | using System.Runtime.InteropServices; 5 | using System.Windows; 6 | 7 | // General Information about an assembly is controlled through the following 8 | // set of attributes. Change these attribute values to modify the information 9 | // associated with an assembly. 10 | [assembly: AssemblyTitle("ModernUI.Xceed.AvalonDock.Example")] 11 | [assembly: AssemblyDescription("")] 12 | [assembly: AssemblyConfiguration("")] 13 | [assembly: AssemblyCompany("Sam Oates Games")] 14 | [assembly: AssemblyProduct("ModernUI.Xceed.AvalonDock.Example")] 15 | [assembly: AssemblyCopyright("Copyright © Sam Oates 2017")] 16 | [assembly: AssemblyTrademark("")] 17 | [assembly: AssemblyCulture("")] 18 | 19 | // Setting ComVisible to false makes the types in this assembly not visible 20 | // to COM components. If you need to access a type in this assembly from 21 | // COM, set the ComVisible attribute to true on that type. 22 | [assembly: ComVisible(false)] 23 | 24 | //In order to begin building localizable applications, set 25 | //CultureYouAreCodingWith in your .csproj file 26 | //inside a . For example, if you are using US english 27 | //in your source files, set the to en-US. Then uncomment 28 | //the NeutralResourceLanguage attribute below. Update the "en-US" in 29 | //the line below to match the UICulture setting in the project file. 30 | 31 | //[assembly: NeutralResourcesLanguage("en-US", UltimateResourceFallbackLocation.Satellite)] 32 | 33 | 34 | [assembly: ThemeInfo( 35 | ResourceDictionaryLocation.None, //where theme specific resource dictionaries are located 36 | //(used if a resource is not found in the page, 37 | // or application resource dictionaries) 38 | ResourceDictionaryLocation.SourceAssembly //where the generic resource dictionary is located 39 | //(used if a resource is not found in the page, 40 | // app, or any theme specific resource dictionaries) 41 | )] 42 | 43 | 44 | // Version information for an assembly consists of the following four values: 45 | // 46 | // Major Version 47 | // Minor Version 48 | // Build Number 49 | // Revision 50 | // 51 | // You can specify all the values or you can default the Build and Revision Numbers 52 | // by using the '*' as shown below: 53 | // [assembly: AssemblyVersion("1.0.*")] 54 | [assembly: AssemblyVersion("1.0.0.0")] 55 | [assembly: AssemblyFileVersion("1.0.0.0")] 56 | -------------------------------------------------------------------------------- /ModernUI.Xceed/Examples/ModernUI.Standard.Controls.Example/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by a tool. 4 | // Runtime Version:4.0.30319.42000 5 | // 6 | // Changes to this file may cause incorrect behavior and will be lost if 7 | // the code is regenerated. 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | namespace ModernUI.Standard.Controls.Example.Properties { 12 | using System; 13 | 14 | 15 | /// 16 | /// A strongly-typed resource class, for looking up localized strings, etc. 17 | /// 18 | // This class was auto-generated by the StronglyTypedResourceBuilder 19 | // class via a tool like ResGen or Visual Studio. 20 | // To add or remove a member, edit your .ResX file then rerun ResGen 21 | // with the /str option, or rebuild your VS project. 22 | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "16.0.0.0")] 23 | [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 24 | [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] 25 | internal class Resources { 26 | 27 | private static global::System.Resources.ResourceManager resourceMan; 28 | 29 | private static global::System.Globalization.CultureInfo resourceCulture; 30 | 31 | [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] 32 | internal Resources() { 33 | } 34 | 35 | /// 36 | /// Returns the cached ResourceManager instance used by this class. 37 | /// 38 | [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] 39 | internal static global::System.Resources.ResourceManager ResourceManager { 40 | get { 41 | if (object.ReferenceEquals(resourceMan, null)) { 42 | global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("ModernUI.Standard.Controls.Example.Properties.Resources", typeof(Resources).Assembly); 43 | resourceMan = temp; 44 | } 45 | return resourceMan; 46 | } 47 | } 48 | 49 | /// 50 | /// Overrides the current thread's CurrentUICulture property for all 51 | /// resource lookups using this strongly typed resource class. 52 | /// 53 | [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] 54 | internal static global::System.Globalization.CultureInfo Culture { 55 | get { 56 | return resourceCulture; 57 | } 58 | set { 59 | resourceCulture = value; 60 | } 61 | } 62 | } 63 | } 64 | -------------------------------------------------------------------------------- /ModernUI.Xceed/Examples/ModernUI.Standard.Controls.Example/Properties/Resources.resx: -------------------------------------------------------------------------------- 1 |  2 | 3 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | text/microsoft-resx 107 | 108 | 109 | 2.0 110 | 111 | 112 | System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 113 | 114 | 115 | System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 116 | 117 | -------------------------------------------------------------------------------- /ModernUI.Xceed/Examples/ModernUI.Standard.Controls.Example/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by a tool. 4 | // Runtime Version:4.0.30319.42000 5 | // 6 | // Changes to this file may cause incorrect behavior and will be lost if 7 | // the code is regenerated. 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | namespace ModernUI.Standard.Controls.Example.Properties { 12 | 13 | 14 | [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] 15 | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "16.10.0.0")] 16 | internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase { 17 | 18 | private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings()))); 19 | 20 | public static Settings Default { 21 | get { 22 | return defaultInstance; 23 | } 24 | } 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /ModernUI.Xceed/Examples/ModernUI.Standard.Controls.Example/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /ModernUI.Xceed/Examples/ModernUI.Standard.Controls.Example/Resources/Icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samoatesgames/mui.extended.toolkit/ccf92f654d67a37b2a72f1d6fac897c97092972d/ModernUI.Xceed/Examples/ModernUI.Standard.Controls.Example/Resources/Icon.ico -------------------------------------------------------------------------------- /ModernUI.Xceed/Examples/ModernUI.Standard.Controls.Example/Resources/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samoatesgames/mui.extended.toolkit/ccf92f654d67a37b2a72f1d6fac897c97092972d/ModernUI.Xceed/Examples/ModernUI.Standard.Controls.Example/Resources/Icon.png -------------------------------------------------------------------------------- /ModernUI.Xceed/Examples/ModernUI.Standard.Controls.Example/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /ModernUI.Xceed/Examples/ModernUI.Xceed.AvalonDock.Example/App.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /ModernUI.Xceed/Examples/ModernUI.Xceed.AvalonDock.Example/App.xaml: -------------------------------------------------------------------------------- 1 |  6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | #D61111 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /ModernUI.Xceed/Examples/ModernUI.Xceed.AvalonDock.Example/App.xaml.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Configuration; 4 | using System.Data; 5 | using System.Linq; 6 | using System.Threading.Tasks; 7 | using System.Windows; 8 | 9 | namespace ModernUI.Xceed.AvalonDock.Example 10 | { 11 | /// 12 | /// Interaction logic for App.xaml 13 | /// 14 | public partial class App : Application 15 | { 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /ModernUI.Xceed/Examples/ModernUI.Xceed.AvalonDock.Example/MainWindow.xaml: -------------------------------------------------------------------------------- 1 |  11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | -------------------------------------------------------------------------------- /ModernUI.Xceed/Examples/ModernUI.Xceed.AvalonDock.Example/MainWindow.xaml.cs: -------------------------------------------------------------------------------- 1 | namespace ModernUI.Xceed.AvalonDock.Example 2 | { 3 | /// 4 | /// Interaction logic for MainWindow.xaml 5 | /// 6 | public partial class MainWindow 7 | { 8 | public MainWindow() 9 | { 10 | InitializeComponent(); 11 | } 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /ModernUI.Xceed/Examples/ModernUI.Xceed.AvalonDock.Example/Pages/About.xaml: -------------------------------------------------------------------------------- 1 |  5 | 6 | 7 | ModernUI.Xceed.AvalonDock contains all style resources to seamlessly integrate Xceeds AvalonDock into the ModernUI framework. 8 | 9 | 10 | WPF Extended Toolkit: 11 | http://wpftoolkit.codeplex.com/ 12 | 13 | ModernUI Framework: 14 | https://github.com/firstfloorsoftware/mui 15 | 16 | 17 | -------------------------------------------------------------------------------- /ModernUI.Xceed/Examples/ModernUI.Xceed.AvalonDock.Example/Pages/About.xaml.cs: -------------------------------------------------------------------------------- 1 | namespace ModernUI.Xceed.Toolkit.Example.Pages 2 | { 3 | /// 4 | /// Interaction logic for About.xaml 5 | /// 6 | public partial class About 7 | { 8 | public About() 9 | { 10 | InitializeComponent(); 11 | } 12 | } 13 | } -------------------------------------------------------------------------------- /ModernUI.Xceed/Examples/ModernUI.Xceed.AvalonDock.Example/Pages/AvalonDock.xaml: -------------------------------------------------------------------------------- 1 |  9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | Alarm 1 39 | Alarm 2 40 | Alarm 3 41 | 42 | 43 | 44 | 45 | 46 | 47 | This is the content of the Journal Pane. 48 | 49 | A 50 | RichTextBox has been added here 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | -------------------------------------------------------------------------------- /ModernUI.Xceed/Examples/ModernUI.Xceed.AvalonDock.Example/Pages/AvalonDock.xaml.cs: -------------------------------------------------------------------------------- 1 | namespace ModernUI.Xceed.Toolkit.Example.Pages 2 | { 3 | /// 4 | /// Interaction logic for AvalonDockExample.xaml 5 | /// 6 | public partial class AvalonDockExample 7 | { 8 | public AvalonDockExample() 9 | { 10 | InitializeComponent(); 11 | } 12 | } 13 | } -------------------------------------------------------------------------------- /ModernUI.Xceed/Examples/ModernUI.Xceed.AvalonDock.Example/Pages/License.xaml: -------------------------------------------------------------------------------- 1 |  5 | 6 | 7 | MIT License 8 | 9 | Copyright (c) 2017 Sam Oates 10 | 11 | Permission is hereby granted, free of charge, to any person obtaining a copy 12 | of this software and associated documentation files (the "Software"), to deal 13 | in the Software without restriction, including without limitation the rights 14 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 15 | copies of the Software, and to permit persons to whom the Software is 16 | furnished to do so, subject to the following conditions: 17 | 18 | The above copyright notice and this permission notice shall be included in all 19 | copies or substantial portions of the Software. 20 | 21 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 22 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 23 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 24 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 25 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 26 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 27 | SOFTWARE. 28 | 29 | 30 | -------------------------------------------------------------------------------- /ModernUI.Xceed/Examples/ModernUI.Xceed.AvalonDock.Example/Pages/License.xaml.cs: -------------------------------------------------------------------------------- 1 | namespace ModernUI.Xceed.Toolkit.Example.Pages 2 | { 3 | /// 4 | /// Interaction logic for License.xaml 5 | /// 6 | public partial class License 7 | { 8 | public License() 9 | { 10 | InitializeComponent(); 11 | } 12 | } 13 | } -------------------------------------------------------------------------------- /ModernUI.Xceed/Examples/ModernUI.Xceed.AvalonDock.Example/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Resources; 3 | using System.Runtime.CompilerServices; 4 | using System.Runtime.InteropServices; 5 | using System.Windows; 6 | 7 | // General Information about an assembly is controlled through the following 8 | // set of attributes. Change these attribute values to modify the information 9 | // associated with an assembly. 10 | [assembly: AssemblyTitle("ModernUI.Xceed.AvalonDock.Example")] 11 | [assembly: AssemblyDescription("")] 12 | [assembly: AssemblyConfiguration("")] 13 | [assembly: AssemblyCompany("")] 14 | [assembly: AssemblyProduct("ModernUI.Xceed.AvalonDock.Example")] 15 | [assembly: AssemblyCopyright("Copyright © 2016")] 16 | [assembly: AssemblyTrademark("")] 17 | [assembly: AssemblyCulture("")] 18 | 19 | // Setting ComVisible to false makes the types in this assembly not visible 20 | // to COM components. If you need to access a type in this assembly from 21 | // COM, set the ComVisible attribute to true on that type. 22 | [assembly: ComVisible(false)] 23 | 24 | //In order to begin building localizable applications, set 25 | //CultureYouAreCodingWith in your .csproj file 26 | //inside a . For example, if you are using US english 27 | //in your source files, set the to en-US. Then uncomment 28 | //the NeutralResourceLanguage attribute below. Update the "en-US" in 29 | //the line below to match the UICulture setting in the project file. 30 | 31 | //[assembly: NeutralResourcesLanguage("en-US", UltimateResourceFallbackLocation.Satellite)] 32 | 33 | 34 | [assembly: ThemeInfo( 35 | ResourceDictionaryLocation.None, //where theme specific resource dictionaries are located 36 | //(used if a resource is not found in the page, 37 | // or application resource dictionaries) 38 | ResourceDictionaryLocation.SourceAssembly //where the generic resource dictionary is located 39 | //(used if a resource is not found in the page, 40 | // app, or any theme specific resource dictionaries) 41 | )] 42 | 43 | 44 | // Version information for an assembly consists of the following four values: 45 | // 46 | // Major Version 47 | // Minor Version 48 | // Build Number 49 | // Revision 50 | // 51 | // You can specify all the values or you can default the Build and Revision Numbers 52 | // by using the '*' as shown below: 53 | // [assembly: AssemblyVersion("1.0.*")] 54 | [assembly: AssemblyVersion("1.0.0.0")] 55 | [assembly: AssemblyFileVersion("1.0.0.0")] 56 | -------------------------------------------------------------------------------- /ModernUI.Xceed/Examples/ModernUI.Xceed.AvalonDock.Example/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by a tool. 4 | // Runtime Version:4.0.30319.42000 5 | // 6 | // Changes to this file may cause incorrect behavior and will be lost if 7 | // the code is regenerated. 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | namespace ModernUI.Xceed.AvalonDock.Example.Properties { 12 | using System; 13 | 14 | 15 | /// 16 | /// A strongly-typed resource class, for looking up localized strings, etc. 17 | /// 18 | // This class was auto-generated by the StronglyTypedResourceBuilder 19 | // class via a tool like ResGen or Visual Studio. 20 | // To add or remove a member, edit your .ResX file then rerun ResGen 21 | // with the /str option, or rebuild your VS project. 22 | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "16.0.0.0")] 23 | [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 24 | [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] 25 | internal class Resources { 26 | 27 | private static global::System.Resources.ResourceManager resourceMan; 28 | 29 | private static global::System.Globalization.CultureInfo resourceCulture; 30 | 31 | [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] 32 | internal Resources() { 33 | } 34 | 35 | /// 36 | /// Returns the cached ResourceManager instance used by this class. 37 | /// 38 | [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] 39 | internal static global::System.Resources.ResourceManager ResourceManager { 40 | get { 41 | if (object.ReferenceEquals(resourceMan, null)) { 42 | global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("ModernUI.Xceed.AvalonDock.Example.Properties.Resources", typeof(Resources).Assembly); 43 | resourceMan = temp; 44 | } 45 | return resourceMan; 46 | } 47 | } 48 | 49 | /// 50 | /// Overrides the current thread's CurrentUICulture property for all 51 | /// resource lookups using this strongly typed resource class. 52 | /// 53 | [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] 54 | internal static global::System.Globalization.CultureInfo Culture { 55 | get { 56 | return resourceCulture; 57 | } 58 | set { 59 | resourceCulture = value; 60 | } 61 | } 62 | } 63 | } 64 | -------------------------------------------------------------------------------- /ModernUI.Xceed/Examples/ModernUI.Xceed.AvalonDock.Example/Properties/Resources.resx: -------------------------------------------------------------------------------- 1 |  2 | 3 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | text/microsoft-resx 107 | 108 | 109 | 2.0 110 | 111 | 112 | System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 113 | 114 | 115 | System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 116 | 117 | -------------------------------------------------------------------------------- /ModernUI.Xceed/Examples/ModernUI.Xceed.AvalonDock.Example/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by a tool. 4 | // Runtime Version:4.0.30319.42000 5 | // 6 | // Changes to this file may cause incorrect behavior and will be lost if 7 | // the code is regenerated. 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | namespace ModernUI.Xceed.AvalonDock.Example.Properties { 12 | 13 | 14 | [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] 15 | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "16.10.0.0")] 16 | internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase { 17 | 18 | private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings()))); 19 | 20 | public static Settings Default { 21 | get { 22 | return defaultInstance; 23 | } 24 | } 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /ModernUI.Xceed/Examples/ModernUI.Xceed.AvalonDock.Example/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /ModernUI.Xceed/Examples/ModernUI.Xceed.AvalonDock.Example/Resources/Icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samoatesgames/mui.extended.toolkit/ccf92f654d67a37b2a72f1d6fac897c97092972d/ModernUI.Xceed/Examples/ModernUI.Xceed.AvalonDock.Example/Resources/Icon.ico -------------------------------------------------------------------------------- /ModernUI.Xceed/Examples/ModernUI.Xceed.AvalonDock.Example/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /ModernUI.Xceed/Examples/ModernUI.Xceed.Toolkit.Example/App.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /ModernUI.Xceed/Examples/ModernUI.Xceed.Toolkit.Example/App.xaml: -------------------------------------------------------------------------------- 1 |  5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | #FF2C8742 13 | 14 | 15 | -------------------------------------------------------------------------------- /ModernUI.Xceed/Examples/ModernUI.Xceed.Toolkit.Example/App.xaml.cs: -------------------------------------------------------------------------------- 1 | namespace ModernUI.Xceed.Toolkit.Example 2 | { 3 | /// 4 | /// Interaction logic for App.xaml 5 | /// 6 | public partial class App 7 | { 8 | } 9 | } -------------------------------------------------------------------------------- /ModernUI.Xceed/Examples/ModernUI.Xceed.Toolkit.Example/MainWindow.xaml: -------------------------------------------------------------------------------- 1 |  12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | -------------------------------------------------------------------------------- /ModernUI.Xceed/Examples/ModernUI.Xceed.Toolkit.Example/MainWindow.xaml.cs: -------------------------------------------------------------------------------- 1 | namespace ModernUI.Xceed.Toolkit.Example 2 | { 3 | /// 4 | /// Interaction logic for MainWindow.xaml 5 | /// 6 | public partial class MainWindow 7 | { 8 | public MainWindow() 9 | { 10 | InitializeComponent(); 11 | } 12 | } 13 | } -------------------------------------------------------------------------------- /ModernUI.Xceed/Examples/ModernUI.Xceed.Toolkit.Example/Pages/About.xaml: -------------------------------------------------------------------------------- 1 |  5 | 6 | 7 | ModernUI.Xceed.Toolkit contains all style resources to seamlessly integrate Xceeds WPF extended toolkit into the ModernUI framework. 8 | 9 | 10 | WPF Extended Toolkit: 11 | http://wpftoolkit.codeplex.com/ 12 | 13 | ModernUI Framework: 14 | https://github.com/firstfloorsoftware/mui 15 | 16 | 17 | -------------------------------------------------------------------------------- /ModernUI.Xceed/Examples/ModernUI.Xceed.Toolkit.Example/Pages/About.xaml.cs: -------------------------------------------------------------------------------- 1 | namespace ModernUI.Xceed.Toolkit.Example.Pages 2 | { 3 | /// 4 | /// Interaction logic for About.xaml 5 | /// 6 | public partial class About 7 | { 8 | public About() 9 | { 10 | InitializeComponent(); 11 | } 12 | } 13 | } -------------------------------------------------------------------------------- /ModernUI.Xceed/Examples/ModernUI.Xceed.Toolkit.Example/Pages/CalculatorControl.xaml: -------------------------------------------------------------------------------- 1 |  5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /ModernUI.Xceed/Examples/ModernUI.Xceed.Toolkit.Example/Pages/CalculatorControl.xaml.cs: -------------------------------------------------------------------------------- 1 | namespace ModernUI.Xceed.Toolkit.Example.Pages 2 | { 3 | /// 4 | /// Interaction logic for CalculatorControl.xaml 5 | /// 6 | public partial class CalculatorControl 7 | { 8 | public CalculatorControl() 9 | { 10 | InitializeComponent(); 11 | } 12 | } 13 | } -------------------------------------------------------------------------------- /ModernUI.Xceed/Examples/ModernUI.Xceed.Toolkit.Example/Pages/CheckListControls.xaml: -------------------------------------------------------------------------------- 1 |  5 | 6 | 7 | 8 | 14 | 15 | 16 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /ModernUI.Xceed/Examples/ModernUI.Xceed.Toolkit.Example/Pages/CheckListControls.xaml.cs: -------------------------------------------------------------------------------- 1 | namespace ModernUI.Xceed.Toolkit.Example.Pages 2 | { 3 | /// 4 | /// Interaction logic for CheckListControls.xaml 5 | /// 6 | public partial class CheckListControls 7 | { 8 | public CheckListControls() 9 | { 10 | InitializeComponent(); 11 | } 12 | } 13 | } -------------------------------------------------------------------------------- /ModernUI.Xceed/Examples/ModernUI.Xceed.Toolkit.Example/Pages/CollectionControl.xaml: -------------------------------------------------------------------------------- 1 |  6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /ModernUI.Xceed/Examples/ModernUI.Xceed.Toolkit.Example/Pages/CollectionControl.xaml.cs: -------------------------------------------------------------------------------- 1 |  2 | using System; 3 | using System.Collections.Generic; 4 | using System.Collections.ObjectModel; 5 | 6 | namespace ModernUI.Xceed.Toolkit.Example.Pages 7 | { 8 | /// 9 | /// Interaction logic for CollectionControl.xaml 10 | /// 11 | public partial class CollectionControl 12 | { 13 | public CollectionControl() 14 | { 15 | InitializeComponent(); 16 | 17 | DataContext = new CollectionControlViewModel(); 18 | } 19 | 20 | public class CollectionControlViewModel 21 | { 22 | public ObservableCollection Users { get; private set; } 23 | 24 | public List NewItemTypes { get; private set; } 25 | 26 | public CollectionControlViewModel() 27 | { 28 | Users = new ObservableCollection 29 | { 30 | new UserViewModel() 31 | }; 32 | 33 | NewItemTypes = new List 34 | { 35 | typeof(UserViewModel) 36 | }; 37 | } 38 | } 39 | } 40 | } 41 | -------------------------------------------------------------------------------- /ModernUI.Xceed/Examples/ModernUI.Xceed.Toolkit.Example/Pages/ColorControls.xaml: -------------------------------------------------------------------------------- 1 |  5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /ModernUI.Xceed/Examples/ModernUI.Xceed.Toolkit.Example/Pages/ColorControls.xaml.cs: -------------------------------------------------------------------------------- 1 | namespace ModernUI.Xceed.Toolkit.Example.Pages 2 | { 3 | /// 4 | /// Interaction logic for ColorControls.xaml 5 | /// 6 | public partial class ColorControls 7 | { 8 | public ColorControls() 9 | { 10 | InitializeComponent(); 11 | } 12 | } 13 | } -------------------------------------------------------------------------------- /ModernUI.Xceed/Examples/ModernUI.Xceed.Toolkit.Example/Pages/ControlsRoot.xaml: -------------------------------------------------------------------------------- 1 |  6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /ModernUI.Xceed/Examples/ModernUI.Xceed.Toolkit.Example/Pages/ControlsRoot.xaml.cs: -------------------------------------------------------------------------------- 1 | namespace ModernUI.Xceed.Toolkit.Example.Pages 2 | { 3 | /// 4 | /// Interaction logic for ControlsRoot.xaml 5 | /// 6 | public partial class ControlsRoot 7 | { 8 | public ControlsRoot() 9 | { 10 | InitializeComponent(); 11 | } 12 | } 13 | } -------------------------------------------------------------------------------- /ModernUI.Xceed/Examples/ModernUI.Xceed.Toolkit.Example/Pages/License.xaml: -------------------------------------------------------------------------------- 1 |  5 | 6 | 7 | MIT License 8 | 9 | Copyright (c) 2017 Sam Oates 10 | 11 | Permission is hereby granted, free of charge, to any person obtaining a copy 12 | of this software and associated documentation files (the "Software"), to deal 13 | in the Software without restriction, including without limitation the rights 14 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 15 | copies of the Software, and to permit persons to whom the Software is 16 | furnished to do so, subject to the following conditions: 17 | 18 | The above copyright notice and this permission notice shall be included in all 19 | copies or substantial portions of the Software. 20 | 21 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 22 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 23 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 24 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 25 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 26 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 27 | SOFTWARE. 28 | 29 | 30 | -------------------------------------------------------------------------------- /ModernUI.Xceed/Examples/ModernUI.Xceed.Toolkit.Example/Pages/License.xaml.cs: -------------------------------------------------------------------------------- 1 | namespace ModernUI.Xceed.Toolkit.Example.Pages 2 | { 3 | /// 4 | /// Interaction logic for License.xaml 5 | /// 6 | public partial class License 7 | { 8 | public License() 9 | { 10 | InitializeComponent(); 11 | } 12 | } 13 | } -------------------------------------------------------------------------------- /ModernUI.Xceed/Examples/ModernUI.Xceed.Toolkit.Example/Pages/PropertyGrid.xaml: -------------------------------------------------------------------------------- 1 |  5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /ModernUI.Xceed/Examples/ModernUI.Xceed.Toolkit.Example/Pages/PropertyGrid.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.ComponentModel; 2 | using System.Runtime.CompilerServices; 3 | 4 | namespace ModernUI.Xceed.Toolkit.Example.Pages 5 | { 6 | /// 7 | /// Interaction logic for PropertyGrid.xaml 8 | /// 9 | public partial class PropertyGrid 10 | { 11 | public PropertyGrid() 12 | { 13 | InitializeComponent(); 14 | var user = new UserViewModel() 15 | { 16 | FirstName = "Sam", 17 | LastName = "Oates", 18 | Sex = Sex.Male, 19 | Role = Role.Programmer, 20 | Level = Level.Senior, 21 | Salary = 100000 22 | }; 23 | 24 | DataContext = new PropertyGridViewModel() 25 | { 26 | User = user 27 | }; 28 | } 29 | } 30 | 31 | public sealed class PropertyGridViewModel : INotifyPropertyChanged 32 | { 33 | #region INotifyPropertyChanged 34 | public event PropertyChangedEventHandler PropertyChanged; 35 | 36 | private void OnPropertyChanged([CallerMemberName] string propertyName = null) 37 | { 38 | PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(propertyName)); 39 | } 40 | #endregion 41 | 42 | private bool m_showTitle = false; 43 | private bool m_showSortOptions = true; 44 | private bool m_showSearchBox = true; 45 | private bool m_showSummary = true; 46 | 47 | public UserViewModel User 48 | { 49 | get; 50 | set; 51 | } 52 | 53 | public bool ShowTitle 54 | { 55 | get { return m_showTitle; } 56 | set 57 | { 58 | if (m_showTitle != value) 59 | { 60 | m_showTitle = value; 61 | OnPropertyChanged(); 62 | } 63 | } 64 | } 65 | 66 | public bool ShowSortOptions 67 | { 68 | get { return m_showSortOptions; } 69 | set 70 | { 71 | if (m_showSortOptions != value) 72 | { 73 | m_showSortOptions = value; 74 | OnPropertyChanged(); 75 | } 76 | } 77 | } 78 | 79 | public bool ShowSearchBox 80 | { 81 | get { return m_showSearchBox; } 82 | set 83 | { 84 | if (m_showSearchBox != value) 85 | { 86 | m_showSearchBox = value; 87 | OnPropertyChanged(); 88 | } 89 | } 90 | } 91 | 92 | public bool ShowSummary 93 | { 94 | get { return m_showSummary; } 95 | set 96 | { 97 | if (m_showSummary != value) 98 | { 99 | m_showSummary = value; 100 | OnPropertyChanged(); 101 | } 102 | } 103 | } 104 | } 105 | 106 | public class UserViewModel 107 | { 108 | [Category("User")] 109 | [Description("The first name of the user.")] 110 | public string FirstName { get; set; } = "Unkown"; 111 | 112 | [Category("User")] 113 | [Description("The last name of the user.")] 114 | public string LastName { get; set; } = "Unkown"; 115 | 116 | [Category("User")] 117 | [Description("The sex of the user (optional).")] 118 | public Sex Sex { get; set; } 119 | 120 | [Category("Job")] 121 | [Description("The users current role within the company.")] 122 | public Role Role { get; set; } 123 | 124 | [Category("Job")] 125 | [Description("The level at which the user opperates.")] 126 | public Level Level { get; set; } 127 | 128 | [Category("Job")] 129 | [Description("The salary of the user per year, in USD ($).")] 130 | public int Salary { get; set; } 131 | 132 | public override string ToString() 133 | { 134 | return "User"; 135 | } 136 | } 137 | 138 | public enum Sex 139 | { 140 | Male, 141 | Female, 142 | Other 143 | } 144 | 145 | public enum Role 146 | { 147 | Programmer, 148 | Artist, 149 | Designer, 150 | Producer, 151 | Other 152 | } 153 | 154 | public enum Level 155 | { 156 | Junior, 157 | Standard, 158 | Experienced, 159 | Senior, 160 | Lead 161 | } 162 | } -------------------------------------------------------------------------------- /ModernUI.Xceed/Examples/ModernUI.Xceed.Toolkit.Example/Pages/RichTextControl.xaml: -------------------------------------------------------------------------------- 1 |  5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /ModernUI.Xceed/Examples/ModernUI.Xceed.Toolkit.Example/Pages/RichTextControl.xaml.cs: -------------------------------------------------------------------------------- 1 |  2 | namespace ModernUI.Xceed.Toolkit.Example.Pages 3 | { 4 | /// 5 | /// Interaction logic for RichTextControl.xaml 6 | /// 7 | public partial class RichTextControl 8 | { 9 | public RichTextControl() 10 | { 11 | InitializeComponent(); 12 | } 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /ModernUI.Xceed/Examples/ModernUI.Xceed.Toolkit.Example/Pages/StandardControls.xaml: -------------------------------------------------------------------------------- 1 |  6 | 7 | 8 | 9 | 10 | 11 | Drop down button example content... 12 | 13 | 14 | 15 | 16 | 17 | Split button example content... 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | -------------------------------------------------------------------------------- /ModernUI.Xceed/Examples/ModernUI.Xceed.Toolkit.Example/Pages/StandardControls.xaml.cs: -------------------------------------------------------------------------------- 1 | namespace ModernUI.Xceed.Toolkit.Example.Pages 2 | { 3 | /// 4 | /// Interaction logic for StandardControls.xaml 5 | /// 6 | public partial class StandardControls 7 | { 8 | public StandardControls() 9 | { 10 | InitializeComponent(); 11 | } 12 | } 13 | } -------------------------------------------------------------------------------- /ModernUI.Xceed/Examples/ModernUI.Xceed.Toolkit.Example/Pages/UpDownControls.xaml: -------------------------------------------------------------------------------- 1 |  5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /ModernUI.Xceed/Examples/ModernUI.Xceed.Toolkit.Example/Pages/UpDownControls.xaml.cs: -------------------------------------------------------------------------------- 1 | namespace ModernUI.Xceed.Toolkit.Example.Pages 2 | { 3 | /// 4 | /// Interaction logic for UpDownControls.xaml 5 | /// 6 | public partial class UpDownControls 7 | { 8 | public UpDownControls() 9 | { 10 | InitializeComponent(); 11 | } 12 | } 13 | } -------------------------------------------------------------------------------- /ModernUI.Xceed/Examples/ModernUI.Xceed.Toolkit.Example/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.InteropServices; 3 | using System.Windows; 4 | 5 | // General Information about an assembly is controlled through the following 6 | // set of attributes. Change these attribute values to modify the information 7 | // associated with an assembly. 8 | 9 | [assembly: AssemblyTitle("ModernUI.Xceed.Toolkit.Example")] 10 | [assembly: AssemblyDescription("")] 11 | [assembly: AssemblyConfiguration("")] 12 | [assembly: AssemblyCompany("Sam Oates Games")] 13 | [assembly: AssemblyProduct("ModernUI.Xceed.Toolkit.Example")] 14 | [assembly: AssemblyCopyright("Copyright © Sam Oates 2016")] 15 | [assembly: AssemblyTrademark("")] 16 | [assembly: AssemblyCulture("")] 17 | 18 | // Setting ComVisible to false makes the types in this assembly not visible 19 | // to COM components. If you need to access a type in this assembly from 20 | // COM, set the ComVisible attribute to true on that type. 21 | 22 | [assembly: ComVisible(false)] 23 | 24 | //In order to begin building localizable applications, set 25 | //CultureYouAreCodingWith in your .csproj file 26 | //inside a . For example, if you are using US english 27 | //in your source files, set the to en-US. Then uncomment 28 | //the NeutralResourceLanguage attribute below. Update the "en-US" in 29 | //the line below to match the UICulture setting in the project file. 30 | 31 | //[assembly: NeutralResourcesLanguage("en-US", UltimateResourceFallbackLocation.Satellite)] 32 | 33 | 34 | [assembly: ThemeInfo( 35 | ResourceDictionaryLocation.None, //where theme specific resource dictionaries are located 36 | //(used if a resource is not found in the page, 37 | // or application resource dictionaries) 38 | ResourceDictionaryLocation.SourceAssembly //where the generic resource dictionary is located 39 | //(used if a resource is not found in the page, 40 | // app, or any theme specific resource dictionaries) 41 | )] 42 | 43 | 44 | // Version information for an assembly consists of the following four values: 45 | // 46 | // Major Version 47 | // Minor Version 48 | // Build Number 49 | // Revision 50 | // 51 | // You can specify all the values or you can default the Build and Revision Numbers 52 | // by using the '*' as shown below: 53 | // [assembly: AssemblyVersion("1.0.*")] 54 | 55 | [assembly: AssemblyVersion("1.0.*")] 56 | [assembly: AssemblyFileVersion("1.0.0.0")] -------------------------------------------------------------------------------- /ModernUI.Xceed/Examples/ModernUI.Xceed.Toolkit.Example/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by a tool. 4 | // Runtime Version:4.0.30319.42000 5 | // 6 | // Changes to this file may cause incorrect behavior and will be lost if 7 | // the code is regenerated. 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | namespace ModernUI.Xceed.Toolkit.Example.Properties { 12 | using System; 13 | 14 | 15 | /// 16 | /// A strongly-typed resource class, for looking up localized strings, etc. 17 | /// 18 | // This class was auto-generated by the StronglyTypedResourceBuilder 19 | // class via a tool like ResGen or Visual Studio. 20 | // To add or remove a member, edit your .ResX file then rerun ResGen 21 | // with the /str option, or rebuild your VS project. 22 | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "16.0.0.0")] 23 | [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 24 | [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] 25 | internal class Resources { 26 | 27 | private static global::System.Resources.ResourceManager resourceMan; 28 | 29 | private static global::System.Globalization.CultureInfo resourceCulture; 30 | 31 | [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] 32 | internal Resources() { 33 | } 34 | 35 | /// 36 | /// Returns the cached ResourceManager instance used by this class. 37 | /// 38 | [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] 39 | internal static global::System.Resources.ResourceManager ResourceManager { 40 | get { 41 | if (object.ReferenceEquals(resourceMan, null)) { 42 | global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("ModernUI.Xceed.Toolkit.Example.Properties.Resources", typeof(Resources).Assembly); 43 | resourceMan = temp; 44 | } 45 | return resourceMan; 46 | } 47 | } 48 | 49 | /// 50 | /// Overrides the current thread's CurrentUICulture property for all 51 | /// resource lookups using this strongly typed resource class. 52 | /// 53 | [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] 54 | internal static global::System.Globalization.CultureInfo Culture { 55 | get { 56 | return resourceCulture; 57 | } 58 | set { 59 | resourceCulture = value; 60 | } 61 | } 62 | } 63 | } 64 | -------------------------------------------------------------------------------- /ModernUI.Xceed/Examples/ModernUI.Xceed.Toolkit.Example/Properties/Resources.resx: -------------------------------------------------------------------------------- 1 |  2 | 3 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | text/microsoft-resx 107 | 108 | 109 | 2.0 110 | 111 | 112 | System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 113 | 114 | 115 | System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 116 | 117 | -------------------------------------------------------------------------------- /ModernUI.Xceed/Examples/ModernUI.Xceed.Toolkit.Example/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by a tool. 4 | // Runtime Version:4.0.30319.42000 5 | // 6 | // Changes to this file may cause incorrect behavior and will be lost if 7 | // the code is regenerated. 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | namespace ModernUI.Xceed.Toolkit.Example.Properties { 12 | 13 | 14 | [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] 15 | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "16.10.0.0")] 16 | internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase { 17 | 18 | private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings()))); 19 | 20 | public static Settings Default { 21 | get { 22 | return defaultInstance; 23 | } 24 | } 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /ModernUI.Xceed/Examples/ModernUI.Xceed.Toolkit.Example/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /ModernUI.Xceed/Examples/ModernUI.Xceed.Toolkit.Example/Resources/Icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samoatesgames/mui.extended.toolkit/ccf92f654d67a37b2a72f1d6fac897c97092972d/ModernUI.Xceed/Examples/ModernUI.Xceed.Toolkit.Example/Resources/Icon.ico -------------------------------------------------------------------------------- /ModernUI.Xceed/Examples/ModernUI.Xceed.Toolkit.Example/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /ModernUI.Xceed/Examples/Resources/Icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samoatesgames/mui.extended.toolkit/ccf92f654d67a37b2a72f1d6fac897c97092972d/ModernUI.Xceed/Examples/Resources/Icon.ico -------------------------------------------------------------------------------- /ModernUI.Xceed/Examples/Resources/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samoatesgames/mui.extended.toolkit/ccf92f654d67a37b2a72f1d6fac897c97092972d/ModernUI.Xceed/Examples/Resources/Icon.png -------------------------------------------------------------------------------- /ModernUI.Xceed/ModernUI.Standard.Controls/Assets/Controls/GroupBox.xaml: -------------------------------------------------------------------------------- 1 |  3 | 4 | 38 | 39 | -------------------------------------------------------------------------------- /ModernUI.Xceed/ModernUI.Standard.Controls/Assets/Controls/TabControl.xaml: -------------------------------------------------------------------------------- 1 |  3 | 4 | 5 | 6 | 7 | 8 | 12 | 13 | 42 | 43 | -------------------------------------------------------------------------------- /ModernUI.Xceed/ModernUI.Standard.Controls/Assets/ModernUI.Standard.Controls.xaml: -------------------------------------------------------------------------------- 1 |  3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /ModernUI.Xceed/ModernUI.Standard.Controls/ModernUI.Standard.Controls.csproj: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | Debug 7 | AnyCPU 8 | {64A84980-CBCB-42AA-A048-EBF9B922020A} 9 | Library 10 | Properties 11 | ModernUI.Standard.Controls 12 | ModernUI.Standard.Controls 13 | v4.8 14 | 512 15 | 16 | 17 | 18 | 19 | 20 | true 21 | full 22 | false 23 | bin\Debug\ 24 | DEBUG;TRACE 25 | prompt 26 | 4 27 | 28 | 29 | pdbonly 30 | true 31 | bin\Release\ 32 | TRACE 33 | prompt 34 | 4 35 | 36 | 37 | true 38 | bin\x64\Debug\ 39 | DEBUG;TRACE 40 | full 41 | x64 42 | prompt 43 | MinimumRecommendedRules.ruleset 44 | 45 | 46 | bin\x64\Release\ 47 | TRACE 48 | true 49 | pdbonly 50 | x64 51 | prompt 52 | MinimumRecommendedRules.ruleset 53 | 54 | 55 | true 56 | bin\x86\Debug\ 57 | DEBUG;TRACE 58 | full 59 | x86 60 | prompt 61 | MinimumRecommendedRules.ruleset 62 | 63 | 64 | bin\x86\Release\ 65 | TRACE 66 | true 67 | pdbonly 68 | x86 69 | prompt 70 | MinimumRecommendedRules.ruleset 71 | 72 | 73 | 74 | ..\packages\ModernUI.WPF.1.0.9\lib\net45\FirstFloor.ModernUI.dll 75 | True 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | Designer 96 | MSBuild:Compile 97 | 98 | 99 | MSBuild:Compile 100 | Designer 101 | 102 | 103 | Designer 104 | MSBuild:Compile 105 | 106 | 107 | Designer 108 | MSBuild:Compile 109 | 110 | 111 | 112 | 113 | 114 | 115 | 116 | 117 | This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}. 118 | 119 | 120 | 121 | 122 | 123 | 130 | -------------------------------------------------------------------------------- /ModernUI.Xceed/ModernUI.Standard.Controls/ModernUI.Standard.Controls.nuspec: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | ModernUI.Standard.Controls 5 | 0.3.1 6 | SamOatesGames 7 | SamOatesGames 8 | https://github.com/samoatesgames/mui.extended.toolkit/raw/master/LICENSE 9 | https://github.com/samoatesgames/mui.extended.toolkit 10 | https://github.com/samoatesgames/mui.extended.toolkit/raw/master/ModernUI.Xceed/Examples/ModernUI.Xceed.Toolkit.Example/Resources/Icon.ico 11 | false 12 | Additional ModernUI styles for some standard WPF controls 13 | Initial Release 14 | Copyright 2019 15 | CSharp ModernUI Avalon Dock Xceed 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /ModernUI.Xceed/ModernUI.Standard.Controls/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.CompilerServices; 3 | using System.Runtime.InteropServices; 4 | 5 | // General Information about an assembly is controlled through the following 6 | // set of attributes. Change these attribute values to modify the information 7 | // associated with an assembly. 8 | [assembly: AssemblyTitle("ModernUI.Xceed.AvalonDock")] 9 | [assembly: AssemblyDescription("")] 10 | [assembly: AssemblyConfiguration("")] 11 | [assembly: AssemblyCompany("")] 12 | [assembly: AssemblyProduct("ModernUI.Xceed.AvalonDock")] 13 | [assembly: AssemblyCopyright("Copyright © 2016")] 14 | [assembly: AssemblyTrademark("")] 15 | [assembly: AssemblyCulture("")] 16 | 17 | // Setting ComVisible to false makes the types in this assembly not visible 18 | // to COM components. If you need to access a type in this assembly from 19 | // COM, set the ComVisible attribute to true on that type. 20 | [assembly: ComVisible(false)] 21 | 22 | // The following GUID is for the ID of the typelib if this project is exposed to COM 23 | [assembly: Guid("10fae934-1213-48f3-99f7-3ddc7a196838")] 24 | 25 | // Version information for an assembly consists of the following four values: 26 | // 27 | // Major Version 28 | // Minor Version 29 | // Build Number 30 | // Revision 31 | // 32 | // You can specify all the values or you can default the Build and Revision Numbers 33 | // by using the '*' as shown below: 34 | // [assembly: AssemblyVersion("1.0.*")] 35 | [assembly: AssemblyVersion("1.0.0.0")] 36 | [assembly: AssemblyFileVersion("1.0.0.0")] 37 | -------------------------------------------------------------------------------- /ModernUI.Xceed/ModernUI.Standard.Controls/README.md: -------------------------------------------------------------------------------- 1 | # ModernUI.Standard.Controls 2 | 3 | ## About 4 | 5 | ModernUI.Standard.Controls contains styles for some core WPF controls which don't have styles provided by ModernUI. 6 | 7 | * ModernUI Framework: https://github.com/firstfloorsoftware/mui - Built against version 1.0.9 8 | 9 | [![GitHub](https://img.shields.io/github/license/samoatesgames/mui.extended.toolkit.svg?style=flat-square)](https://github.com/samoatesgames/mui.extended.toolkit/blob/master/LICENSE) 10 | [![Nuget](https://img.shields.io/nuget/dt/ModernUI.Standard.Controls.svg?label=Nuget&style=flat-square)](https://www.nuget.org/packages/ModernUI.Standard.Controls/) 11 | 12 | 13 | ## Controls 14 | 15 | The following controls have had style resources fully created for them: 16 | 17 | * GroupBox 18 | * Expander 19 | 20 | The following controls will have styles created in the future: 21 | 22 | * TabControl 23 | -------------------------------------------------------------------------------- /ModernUI.Xceed/ModernUI.Standard.Controls/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /ModernUI.Xceed/ModernUI.Xceed.AvalonDock/Assets/Brushes.xaml: -------------------------------------------------------------------------------- 1 |  2 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /ModernUI.Xceed/ModernUI.Xceed.AvalonDock/Images/DockAnchorableBottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samoatesgames/mui.extended.toolkit/ccf92f654d67a37b2a72f1d6fac897c97092972d/ModernUI.Xceed/ModernUI.Xceed.AvalonDock/Images/DockAnchorableBottom.png -------------------------------------------------------------------------------- /ModernUI.Xceed/ModernUI.Xceed.AvalonDock/Images/DockAnchorableLeft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samoatesgames/mui.extended.toolkit/ccf92f654d67a37b2a72f1d6fac897c97092972d/ModernUI.Xceed/ModernUI.Xceed.AvalonDock/Images/DockAnchorableLeft.png -------------------------------------------------------------------------------- /ModernUI.Xceed/ModernUI.Xceed.AvalonDock/Images/DockAnchorableRight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samoatesgames/mui.extended.toolkit/ccf92f654d67a37b2a72f1d6fac897c97092972d/ModernUI.Xceed/ModernUI.Xceed.AvalonDock/Images/DockAnchorableRight.png -------------------------------------------------------------------------------- /ModernUI.Xceed/ModernUI.Xceed.AvalonDock/Images/DockAnchorableTop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samoatesgames/mui.extended.toolkit/ccf92f654d67a37b2a72f1d6fac897c97092972d/ModernUI.Xceed/ModernUI.Xceed.AvalonDock/Images/DockAnchorableTop.png -------------------------------------------------------------------------------- /ModernUI.Xceed/ModernUI.Xceed.AvalonDock/Images/DockDocumentAsAnchorableBottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samoatesgames/mui.extended.toolkit/ccf92f654d67a37b2a72f1d6fac897c97092972d/ModernUI.Xceed/ModernUI.Xceed.AvalonDock/Images/DockDocumentAsAnchorableBottom.png -------------------------------------------------------------------------------- /ModernUI.Xceed/ModernUI.Xceed.AvalonDock/Images/DockDocumentAsAnchorableLeft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samoatesgames/mui.extended.toolkit/ccf92f654d67a37b2a72f1d6fac897c97092972d/ModernUI.Xceed/ModernUI.Xceed.AvalonDock/Images/DockDocumentAsAnchorableLeft.png -------------------------------------------------------------------------------- /ModernUI.Xceed/ModernUI.Xceed.AvalonDock/Images/DockDocumentAsAnchorableRight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samoatesgames/mui.extended.toolkit/ccf92f654d67a37b2a72f1d6fac897c97092972d/ModernUI.Xceed/ModernUI.Xceed.AvalonDock/Images/DockDocumentAsAnchorableRight.png -------------------------------------------------------------------------------- /ModernUI.Xceed/ModernUI.Xceed.AvalonDock/Images/DockDocumentAsAnchorableTop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samoatesgames/mui.extended.toolkit/ccf92f654d67a37b2a72f1d6fac897c97092972d/ModernUI.Xceed/ModernUI.Xceed.AvalonDock/Images/DockDocumentAsAnchorableTop.png -------------------------------------------------------------------------------- /ModernUI.Xceed/ModernUI.Xceed.AvalonDock/Images/DockDocumentBottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samoatesgames/mui.extended.toolkit/ccf92f654d67a37b2a72f1d6fac897c97092972d/ModernUI.Xceed/ModernUI.Xceed.AvalonDock/Images/DockDocumentBottom.png -------------------------------------------------------------------------------- /ModernUI.Xceed/ModernUI.Xceed.AvalonDock/Images/DockDocumentInside.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samoatesgames/mui.extended.toolkit/ccf92f654d67a37b2a72f1d6fac897c97092972d/ModernUI.Xceed/ModernUI.Xceed.AvalonDock/Images/DockDocumentInside.png -------------------------------------------------------------------------------- /ModernUI.Xceed/ModernUI.Xceed.AvalonDock/Images/DockDocumentLeft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samoatesgames/mui.extended.toolkit/ccf92f654d67a37b2a72f1d6fac897c97092972d/ModernUI.Xceed/ModernUI.Xceed.AvalonDock/Images/DockDocumentLeft.png -------------------------------------------------------------------------------- /ModernUI.Xceed/ModernUI.Xceed.AvalonDock/Images/DockDocumentRight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samoatesgames/mui.extended.toolkit/ccf92f654d67a37b2a72f1d6fac897c97092972d/ModernUI.Xceed/ModernUI.Xceed.AvalonDock/Images/DockDocumentRight.png -------------------------------------------------------------------------------- /ModernUI.Xceed/ModernUI.Xceed.AvalonDock/Images/DockDocumentTop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samoatesgames/mui.extended.toolkit/ccf92f654d67a37b2a72f1d6fac897c97092972d/ModernUI.Xceed/ModernUI.Xceed.AvalonDock/Images/DockDocumentTop.png -------------------------------------------------------------------------------- /ModernUI.Xceed/ModernUI.Xceed.AvalonDock/Images/DockPaneEmpty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samoatesgames/mui.extended.toolkit/ccf92f654d67a37b2a72f1d6fac897c97092972d/ModernUI.Xceed/ModernUI.Xceed.AvalonDock/Images/DockPaneEmpty.png -------------------------------------------------------------------------------- /ModernUI.Xceed/ModernUI.Xceed.AvalonDock/Images/DockPaneLargeEmpty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samoatesgames/mui.extended.toolkit/ccf92f654d67a37b2a72f1d6fac897c97092972d/ModernUI.Xceed/ModernUI.Xceed.AvalonDock/Images/DockPaneLargeEmpty.png -------------------------------------------------------------------------------- /ModernUI.Xceed/ModernUI.Xceed.AvalonDock/Images/HTabGroup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samoatesgames/mui.extended.toolkit/ccf92f654d67a37b2a72f1d6fac897c97092972d/ModernUI.Xceed/ModernUI.Xceed.AvalonDock/Images/HTabGroup.png -------------------------------------------------------------------------------- /ModernUI.Xceed/ModernUI.Xceed.AvalonDock/Images/Locked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samoatesgames/mui.extended.toolkit/ccf92f654d67a37b2a72f1d6fac897c97092972d/ModernUI.Xceed/ModernUI.Xceed.AvalonDock/Images/Locked.png -------------------------------------------------------------------------------- /ModernUI.Xceed/ModernUI.Xceed.AvalonDock/Images/PinAutoHide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samoatesgames/mui.extended.toolkit/ccf92f654d67a37b2a72f1d6fac897c97092972d/ModernUI.Xceed/ModernUI.Xceed.AvalonDock/Images/PinAutoHide.png -------------------------------------------------------------------------------- /ModernUI.Xceed/ModernUI.Xceed.AvalonDock/Images/PinAutoHide_Black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samoatesgames/mui.extended.toolkit/ccf92f654d67a37b2a72f1d6fac897c97092972d/ModernUI.Xceed/ModernUI.Xceed.AvalonDock/Images/PinAutoHide_Black.png -------------------------------------------------------------------------------- /ModernUI.Xceed/ModernUI.Xceed.AvalonDock/Images/PinAutoHide_Dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samoatesgames/mui.extended.toolkit/ccf92f654d67a37b2a72f1d6fac897c97092972d/ModernUI.Xceed/ModernUI.Xceed.AvalonDock/Images/PinAutoHide_Dark.png -------------------------------------------------------------------------------- /ModernUI.Xceed/ModernUI.Xceed.AvalonDock/Images/PinClose.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samoatesgames/mui.extended.toolkit/ccf92f654d67a37b2a72f1d6fac897c97092972d/ModernUI.Xceed/ModernUI.Xceed.AvalonDock/Images/PinClose.png -------------------------------------------------------------------------------- /ModernUI.Xceed/ModernUI.Xceed.AvalonDock/Images/PinClose_Black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samoatesgames/mui.extended.toolkit/ccf92f654d67a37b2a72f1d6fac897c97092972d/ModernUI.Xceed/ModernUI.Xceed.AvalonDock/Images/PinClose_Black.png -------------------------------------------------------------------------------- /ModernUI.Xceed/ModernUI.Xceed.AvalonDock/Images/PinClose_Dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samoatesgames/mui.extended.toolkit/ccf92f654d67a37b2a72f1d6fac897c97092972d/ModernUI.Xceed/ModernUI.Xceed.AvalonDock/Images/PinClose_Dark.png -------------------------------------------------------------------------------- /ModernUI.Xceed/ModernUI.Xceed.AvalonDock/Images/PinDocMenu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samoatesgames/mui.extended.toolkit/ccf92f654d67a37b2a72f1d6fac897c97092972d/ModernUI.Xceed/ModernUI.Xceed.AvalonDock/Images/PinDocMenu.png -------------------------------------------------------------------------------- /ModernUI.Xceed/ModernUI.Xceed.AvalonDock/Images/PinDocMenu_Black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samoatesgames/mui.extended.toolkit/ccf92f654d67a37b2a72f1d6fac897c97092972d/ModernUI.Xceed/ModernUI.Xceed.AvalonDock/Images/PinDocMenu_Black.png -------------------------------------------------------------------------------- /ModernUI.Xceed/ModernUI.Xceed.AvalonDock/Images/PinMaximize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samoatesgames/mui.extended.toolkit/ccf92f654d67a37b2a72f1d6fac897c97092972d/ModernUI.Xceed/ModernUI.Xceed.AvalonDock/Images/PinMaximize.png -------------------------------------------------------------------------------- /ModernUI.Xceed/ModernUI.Xceed.AvalonDock/Images/PinMaximize_Black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samoatesgames/mui.extended.toolkit/ccf92f654d67a37b2a72f1d6fac897c97092972d/ModernUI.Xceed/ModernUI.Xceed.AvalonDock/Images/PinMaximize_Black.png -------------------------------------------------------------------------------- /ModernUI.Xceed/ModernUI.Xceed.AvalonDock/Images/PinMaximize_Dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samoatesgames/mui.extended.toolkit/ccf92f654d67a37b2a72f1d6fac897c97092972d/ModernUI.Xceed/ModernUI.Xceed.AvalonDock/Images/PinMaximize_Dark.png -------------------------------------------------------------------------------- /ModernUI.Xceed/ModernUI.Xceed.AvalonDock/Images/PinMenu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samoatesgames/mui.extended.toolkit/ccf92f654d67a37b2a72f1d6fac897c97092972d/ModernUI.Xceed/ModernUI.Xceed.AvalonDock/Images/PinMenu.png -------------------------------------------------------------------------------- /ModernUI.Xceed/ModernUI.Xceed.AvalonDock/Images/PinMenu_Black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samoatesgames/mui.extended.toolkit/ccf92f654d67a37b2a72f1d6fac897c97092972d/ModernUI.Xceed/ModernUI.Xceed.AvalonDock/Images/PinMenu_Black.png -------------------------------------------------------------------------------- /ModernUI.Xceed/ModernUI.Xceed.AvalonDock/Images/PinMenu_Dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samoatesgames/mui.extended.toolkit/ccf92f654d67a37b2a72f1d6fac897c97092972d/ModernUI.Xceed/ModernUI.Xceed.AvalonDock/Images/PinMenu_Dark.png -------------------------------------------------------------------------------- /ModernUI.Xceed/ModernUI.Xceed.AvalonDock/Images/PinRestore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samoatesgames/mui.extended.toolkit/ccf92f654d67a37b2a72f1d6fac897c97092972d/ModernUI.Xceed/ModernUI.Xceed.AvalonDock/Images/PinRestore.png -------------------------------------------------------------------------------- /ModernUI.Xceed/ModernUI.Xceed.AvalonDock/Images/PinRestore_Black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samoatesgames/mui.extended.toolkit/ccf92f654d67a37b2a72f1d6fac897c97092972d/ModernUI.Xceed/ModernUI.Xceed.AvalonDock/Images/PinRestore_Black.png -------------------------------------------------------------------------------- /ModernUI.Xceed/ModernUI.Xceed.AvalonDock/Images/PinRestore_Dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samoatesgames/mui.extended.toolkit/ccf92f654d67a37b2a72f1d6fac897c97092972d/ModernUI.Xceed/ModernUI.Xceed.AvalonDock/Images/PinRestore_Dark.png -------------------------------------------------------------------------------- /ModernUI.Xceed/ModernUI.Xceed.AvalonDock/Images/VTabGroup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samoatesgames/mui.extended.toolkit/ccf92f654d67a37b2a72f1d6fac897c97092972d/ModernUI.Xceed/ModernUI.Xceed.AvalonDock/Images/VTabGroup.png -------------------------------------------------------------------------------- /ModernUI.Xceed/ModernUI.Xceed.AvalonDock/ModernUI.Xceed.AvalonDock.nuspec: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | ModernUI.Xceed.AvalonDock 5 | 0.3.1 6 | SamOatesGames 7 | SamOatesGames 8 | https://github.com/samoatesgames/mui.extended.toolkit/raw/master/LICENSE 9 | https://github.com/samoatesgames/mui.extended.toolkit 10 | https://github.com/samoatesgames/mui.extended.toolkit/raw/master/ModernUI.Xceed/Examples/ModernUI.Xceed.Toolkit.Example/Resources/Icon.ico 11 | false 12 | Modern UI support for the Extended WPF Toolkit 13 | Update to support Extended Toolkit version 3.5.0 14 | Copyright 2019 15 | CSharp ModernUI Avalon Dock Xceed 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /ModernUI.Xceed/ModernUI.Xceed.AvalonDock/ModernUiTheme.cs: -------------------------------------------------------------------------------- 1 |  2 | using System; 3 | using Xceed.Wpf.AvalonDock.Themes; 4 | 5 | namespace ModernUI.Xceed.AvalonDock 6 | { 7 | public class ModernUiTheme : Theme 8 | { 9 | public override Uri GetResourceUri() 10 | { 11 | return new Uri("/ModernUI.Xceed.AvalonDock;component/Assets/Theme.xaml", UriKind.Relative); 12 | } 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /ModernUI.Xceed/ModernUI.Xceed.AvalonDock/Properties/AssemblyInfo.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.Reflection; 18 | using System.Resources; 19 | using System.Runtime.CompilerServices; 20 | using System.Runtime.InteropServices; 21 | using System.Windows; 22 | using System.Windows.Markup; 23 | using System; 24 | 25 | // General Information about an assembly is controlled through the following 26 | // set of attributes. Change these attribute values to modify the information 27 | // associated with an assembly. 28 | [assembly: AssemblyTitle( "Xceed Extended WPF Toolkit - AvalonDock Metro Theme" )] 29 | [assembly: AssemblyDescription( "This assembly implements the Metro Theme for the AvalonDock layout system." )] 30 | 31 | [assembly: AssemblyCompany( "Xceed Software Inc." )] 32 | [assembly: AssemblyProduct( "Xceed Extended WPF Toolkit - AvalonDock" )] 33 | [assembly: AssemblyCopyright( "Copyright (C) Xceed Software Inc. 2007-2014" )] 34 | 35 | 36 | 37 | // Setting ComVisible to false makes the types in this assembly not visible 38 | // to COM components. If you need to access a type in this assembly from 39 | // COM, set the ComVisible attribute to true on that type. 40 | [assembly: ComVisible(false)] 41 | [assembly: CLSCompliant( true )] 42 | 43 | //In order to begin building localizable applications, set 44 | //CultureYouAreCodingWith in your .csproj file 45 | //inside a . For example, if you are using US english 46 | //in your source files, set the to en-US. Then uncomment 47 | //the NeutralResourceLanguage attribute below. Update the "en-US" in 48 | //the line below to match the UICulture setting in the project file. 49 | 50 | //[assembly: NeutralResourcesLanguage("en-US", UltimateResourceFallbackLocation.Satellite)] 51 | 52 | 53 | [assembly: ThemeInfo( 54 | ResourceDictionaryLocation.None, //where theme specific resource dictionaries are located 55 | //(used if a resource is not found in the page, 56 | // or application resource dictionaries) 57 | ResourceDictionaryLocation.SourceAssembly //where the generic resource dictionary is located 58 | //(used if a resource is not found in the page, 59 | // app, or any theme specific resource dictionaries) 60 | )] 61 | 62 | 63 | [assembly: XmlnsDefinition( "http://schemas.xceed.com/wpf/xaml/avalondock", "Xceed.Wpf.AvalonDock.Themes" )] 64 | 65 | #pragma warning disable 1699 66 | //[assembly: AssemblyDelaySign( false )] 67 | //[assembly: AssemblyKeyFile(@"..\..\sn.snk")] 68 | //[assembly: AssemblyKeyName( "" )] 69 | #pragma warning restore 1699 70 | -------------------------------------------------------------------------------- /ModernUI.Xceed/ModernUI.Xceed.AvalonDock/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /ModernUI.Xceed/ModernUI.Xceed.ToggleSwitch/Assets/ModernUI.ToggleSwitch.xaml: -------------------------------------------------------------------------------- 1 |  3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /ModernUI.Xceed/ModernUI.Xceed.ToggleSwitch/ModernUI.ToggleSwitch.csproj: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | Debug 6 | AnyCPU 7 | {6FE4ECD7-1A0F-4646-9321-67E180B0D23F} 8 | library 9 | ModernUI.ToggleSwitch 10 | ModernUI.ToggleSwitch 11 | v4.8 12 | 512 13 | {60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} 14 | 4 15 | true 16 | 17 | 18 | true 19 | full 20 | false 21 | bin\Debug\ 22 | DEBUG;TRACE 23 | prompt 24 | 4 25 | 26 | 27 | pdbonly 28 | true 29 | bin\Release\ 30 | TRACE 31 | prompt 32 | 4 33 | 34 | 35 | true 36 | bin\x64\Debug\ 37 | DEBUG;TRACE 38 | full 39 | x64 40 | 7.3 41 | prompt 42 | 43 | 44 | bin\x64\Release\ 45 | TRACE 46 | true 47 | pdbonly 48 | x64 49 | 7.3 50 | prompt 51 | 52 | 53 | true 54 | bin\x86\Debug\ 55 | DEBUG;TRACE 56 | full 57 | x86 58 | 7.3 59 | prompt 60 | 61 | 62 | bin\x86\Release\ 63 | TRACE 64 | true 65 | pdbonly 66 | x86 67 | 7.3 68 | prompt 69 | 70 | 71 | 72 | ..\packages\ModernUI.WPF.1.0.9\lib\net45\FirstFloor.ModernUI.dll 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 4.0 84 | 85 | 86 | ..\packages\ToggleSwitch.1.2.0\lib\net46\ToggleSwitch.dll 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | Code 96 | 97 | 98 | True 99 | True 100 | Resources.resx 101 | 102 | 103 | True 104 | Settings.settings 105 | True 106 | 107 | 108 | ResXFileCodeGenerator 109 | Resources.Designer.cs 110 | 111 | 112 | 113 | SettingsSingleFileGenerator 114 | Settings.Designer.cs 115 | 116 | 117 | 118 | 119 | 120 | Designer 121 | MSBuild:Compile 122 | 123 | 124 | Designer 125 | MSBuild:Compile 126 | 127 | 128 | 129 | -------------------------------------------------------------------------------- /ModernUI.Xceed/ModernUI.Xceed.ToggleSwitch/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Resources; 3 | using System.Runtime.CompilerServices; 4 | using System.Runtime.InteropServices; 5 | using System.Windows; 6 | 7 | // General Information about an assembly is controlled through the following 8 | // set of attributes. Change these attribute values to modify the information 9 | // associated with an assembly. 10 | [assembly: AssemblyTitle("ModernUI.Xceed.ToggleSwitch")] 11 | [assembly: AssemblyDescription("")] 12 | [assembly: AssemblyConfiguration("")] 13 | [assembly: AssemblyCompany("")] 14 | [assembly: AssemblyProduct("ModernUI.Xceed.ToggleSwitch")] 15 | [assembly: AssemblyCopyright("Copyright © 2021")] 16 | [assembly: AssemblyTrademark("")] 17 | [assembly: AssemblyCulture("")] 18 | 19 | // Setting ComVisible to false makes the types in this assembly not visible 20 | // to COM components. If you need to access a type in this assembly from 21 | // COM, set the ComVisible attribute to true on that type. 22 | [assembly: ComVisible(false)] 23 | 24 | //In order to begin building localizable applications, set 25 | //CultureYouAreCodingWith in your .csproj file 26 | //inside a . For example, if you are using US english 27 | //in your source files, set the to en-US. Then uncomment 28 | //the NeutralResourceLanguage attribute below. Update the "en-US" in 29 | //the line below to match the UICulture setting in the project file. 30 | 31 | //[assembly: NeutralResourcesLanguage("en-US", UltimateResourceFallbackLocation.Satellite)] 32 | 33 | 34 | [assembly:ThemeInfo( 35 | ResourceDictionaryLocation.None, //where theme specific resource dictionaries are located 36 | //(used if a resource is not found in the page, 37 | // or application resource dictionaries) 38 | ResourceDictionaryLocation.SourceAssembly //where the generic resource dictionary is located 39 | //(used if a resource is not found in the page, 40 | // app, or any theme specific resource dictionaries) 41 | )] 42 | 43 | 44 | // Version information for an assembly consists of the following four values: 45 | // 46 | // Major Version 47 | // Minor Version 48 | // Build Number 49 | // Revision 50 | // 51 | // You can specify all the values or you can default the Build and Revision Numbers 52 | // by using the '*' as shown below: 53 | // [assembly: AssemblyVersion("1.0.*")] 54 | [assembly: AssemblyVersion("1.0.0.0")] 55 | [assembly: AssemblyFileVersion("1.0.0.0")] 56 | -------------------------------------------------------------------------------- /ModernUI.Xceed/ModernUI.Xceed.ToggleSwitch/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by a tool. 4 | // Runtime Version:4.0.30319.42000 5 | // 6 | // Changes to this file may cause incorrect behavior and will be lost if 7 | // the code is regenerated. 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | namespace ModernUI.ToggleSwitch.Properties { 12 | using System; 13 | 14 | 15 | /// 16 | /// A strongly-typed resource class, for looking up localized strings, etc. 17 | /// 18 | // This class was auto-generated by the StronglyTypedResourceBuilder 19 | // class via a tool like ResGen or Visual Studio. 20 | // To add or remove a member, edit your .ResX file then rerun ResGen 21 | // with the /str option, or rebuild your VS project. 22 | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "16.0.0.0")] 23 | [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 24 | [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] 25 | internal class Resources { 26 | 27 | private static global::System.Resources.ResourceManager resourceMan; 28 | 29 | private static global::System.Globalization.CultureInfo resourceCulture; 30 | 31 | [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] 32 | internal Resources() { 33 | } 34 | 35 | /// 36 | /// Returns the cached ResourceManager instance used by this class. 37 | /// 38 | [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] 39 | internal static global::System.Resources.ResourceManager ResourceManager { 40 | get { 41 | if (object.ReferenceEquals(resourceMan, null)) { 42 | global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("ModernUI.ToggleSwitch.Properties.Resources", typeof(Resources).Assembly); 43 | resourceMan = temp; 44 | } 45 | return resourceMan; 46 | } 47 | } 48 | 49 | /// 50 | /// Overrides the current thread's CurrentUICulture property for all 51 | /// resource lookups using this strongly typed resource class. 52 | /// 53 | [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] 54 | internal static global::System.Globalization.CultureInfo Culture { 55 | get { 56 | return resourceCulture; 57 | } 58 | set { 59 | resourceCulture = value; 60 | } 61 | } 62 | } 63 | } 64 | -------------------------------------------------------------------------------- /ModernUI.Xceed/ModernUI.Xceed.ToggleSwitch/Properties/Resources.resx: -------------------------------------------------------------------------------- 1 |  2 | 3 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | text/microsoft-resx 107 | 108 | 109 | 2.0 110 | 111 | 112 | System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 113 | 114 | 115 | System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 116 | 117 | -------------------------------------------------------------------------------- /ModernUI.Xceed/ModernUI.Xceed.ToggleSwitch/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by a tool. 4 | // Runtime Version:4.0.30319.42000 5 | // 6 | // Changes to this file may cause incorrect behavior and will be lost if 7 | // the code is regenerated. 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | namespace ModernUI.ToggleSwitch.Properties { 12 | 13 | 14 | [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] 15 | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "16.10.0.0")] 16 | internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase { 17 | 18 | private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings()))); 19 | 20 | public static Settings Default { 21 | get { 22 | return defaultInstance; 23 | } 24 | } 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /ModernUI.Xceed/ModernUI.Xceed.ToggleSwitch/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /ModernUI.Xceed/ModernUI.Xceed.ToggleSwitch/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /ModernUI.Xceed/ModernUI.Xceed.Toolkit/Assets/Controls/AutoSelectTextBox.xaml: -------------------------------------------------------------------------------- 1 |  4 | 5 | 122 | 123 | -------------------------------------------------------------------------------- /ModernUI.Xceed/ModernUI.Xceed.Toolkit/Assets/Controls/CheckListBox.xaml: -------------------------------------------------------------------------------- 1 |  4 | 5 | 25 | 26 | -------------------------------------------------------------------------------- /ModernUI.Xceed/ModernUI.Xceed.Toolkit/Assets/Controls/DateTimeUpDown.xaml: -------------------------------------------------------------------------------- 1 |  4 | 5 | 6 | 10 | 11 | 12 | 94 | 95 | 81 | 82 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | -------------------------------------------------------------------------------- /ModernUI.Xceed/ModernUI.Xceed.Toolkit/Assets/Controls/MaskedTextBox.xaml: -------------------------------------------------------------------------------- 1 |  4 | 5 | 8 | 9 | -------------------------------------------------------------------------------- /ModernUI.Xceed/ModernUI.Xceed.Toolkit/Assets/Controls/NumericUpDown.xaml: -------------------------------------------------------------------------------- 1 |  4 | 5 | 6 | 7 | 8 | 12 | 13 | 14 | 86 | 87 | 8 | 9 | -------------------------------------------------------------------------------- /ModernUI.Xceed/ModernUI.Xceed.Toolkit/Assets/Controls/SelectorItem.xaml: -------------------------------------------------------------------------------- 1 |  4 | 5 | 42 | 43 | -------------------------------------------------------------------------------- /ModernUI.Xceed/ModernUI.Xceed.Toolkit/Assets/Controls/TimeSpanUpDown.xaml: -------------------------------------------------------------------------------- 1 |  4 | 5 | 6 | 10 | 11 | 12 | 94 | 95 | 8 | 9 | -------------------------------------------------------------------------------- /ModernUI.Xceed/ModernUI.Xceed.Toolkit/Assets/Controls/WatermarkTextBox.xaml: -------------------------------------------------------------------------------- 1 |  4 | 5 | 6 | 7 | 8 | 9 | 75 | 76 |