实例介绍
WPF的metro风格的控件库。提供源码,供大家学习。
【实例截图】
【核心代码】
MahApps.Metro-master
└── MahApps.Metro-master
├── Build
│ ├── build.ps1
│ └── MahApps.Metro.proj
├── CONTRIBUTING.md
├── docs
│ ├── main_demo_window.gif
│ ├── main_demo_window.png
│ ├── new_project_dialog.png
│ ├── release-notes
│ │ ├── 0.10.1.md
│ │ ├── 0.11.0.md
│ │ ├── 0.12.0.md
│ │ ├── 0.12.1.md
│ │ ├── 0.13.0.md
│ │ ├── 0.13.1.md
│ │ ├── 0.14.0.md
│ │ ├── 1.0.0.md
│ │ ├── 1.1.0.md
│ │ ├── 1.1.1.md
│ │ ├── 1.1.2.md
│ │ ├── 1.2.0.md
│ │ └── 2.0.0.md
│ └── v1.0-Migration-Guide.md
├── Lib
│ ├── GrayscaleEffect.dll
│ ├── NET40
│ │ └── System.Windows.Interactivity.dll
│ └── NET45
│ └── System.Windows.Interactivity.dll
├── LICENSE
├── Licenses
│ ├── avaloncontrolslibrary
│ ├── callisto
│ └── silverlighttoolkit
├── MahApps.Metro
│ ├── Accent.cs
│ ├── Actions
│ │ ├── CloseTabItemAction.cs
│ │ └── SetFlyoutOpenAction.cs
│ ├── AppTheme.cs
│ ├── Behaviours
│ │ ├── BindableResourceBehavior.cs
│ │ ├── BorderlessWindowBehavior.cs
│ │ ├── GlowWindowBehavior.cs
│ │ ├── PasswordBoxBindingBehavior.cs
│ │ ├── ReloadBehavior.cs
│ │ ├── StylizedBehaviorCollection.cs
│ │ ├── StylizedBehaviors.cs
│ │ ├── TabControlSelectFirstVisibleTabBehavior.cs
│ │ ├── TiltBehavior.cs
│ │ └── WindowsSettingBehaviour.cs
│ ├── bin
│ │ └── Debug
│ │ ├── MahApps.Metro.dll
│ │ ├── MahApps.Metro.pdb
│ │ ├── MahApps.Metro.XML
│ │ └── System.Windows.Interactivity.dll
│ ├── Controls
│ │ ├── ButtonsAlignment.cs
│ │ ├── ClosingWindowEventHandlerArgs.cs
│ │ ├── CustomValidationPopup.cs
│ │ ├── DataGridNumericUpDownColumn.cs
│ │ ├── Dialogs
│ │ │ ├── BaseMetroDialog.cs
│ │ │ ├── CustomDialog.cs
│ │ │ ├── DialogCoordinator.cs
│ │ │ ├── DialogManager.cs
│ │ │ ├── DialogParticipation.cs
│ │ │ ├── DialogStateChangedEventArgs.cs
│ │ │ ├── IDialogCoordinator.cs
│ │ │ ├── InputDialog.cs
│ │ │ ├── LoginDialog.cs
│ │ │ ├── MessageDialog.cs
│ │ │ ├── ProgressDialogController.cs
│ │ │ └── ProgressDialog.cs
│ │ ├── DropDownButton.cs
│ │ ├── FlipView.cs
│ │ ├── Flyout.cs
│ │ ├── FlyoutsControl.cs
│ │ ├── FlyoutTheme.cs
│ │ ├── Glow.cs
│ │ ├── GlowDirection.cs
│ │ ├── GlowWindow.xaml
│ │ ├── GlowWindow.xaml.cs
│ │ ├── Helper
│ │ │ ├── ButtonHelper.cs
│ │ │ ├── ComboBoxHelper.cs
│ │ │ ├── ControlsHelper.cs
│ │ │ ├── DataGridCellHelper.cs
│ │ │ ├── DataGridRowHelper.cs
│ │ │ ├── ExpanderHelper.cs
│ │ │ ├── GroupBoxHelper.cs
│ │ │ ├── MouseWheelChange.cs
│ │ │ ├── MouseWheelState.cs
│ │ │ ├── PasswordBoxHelper.cs
│ │ │ ├── ScrollBarHelper.cs
│ │ │ ├── SliderHelper.cs
│ │ │ ├── TabControlHelper.cs
│ │ │ ├── TextBoxHelper.cs
│ │ │ └── ToggleButtonHelper.cs
│ │ ├── LayoutInvalidationCatcher.cs
│ │ ├── MetroAnimatedSingleRowTabControl.cs
│ │ ├── MetroAnimatedTabControl.cs
│ │ ├── MetroContentControl.cs
│ │ ├── MetroNavigationWindow.cs
│ │ ├── MetroProgressBar.cs
│ │ ├── MetroTabControl.cs
│ │ ├── MetroTabItem.cs
│ │ ├── MetroThumb.cs
│ │ ├── MetroWindow.cs
│ │ ├── MetroWindowHelpers.cs
│ │ ├── MultiFrameImage.cs
│ │ ├── NumericUpDownChangedRoutedEventArgs.cs
│ │ ├── NumericUpDownChangedRoutedEventHandler.cs
│ │ ├── NumericUpDown.cs
│ │ ├── Pivot.cs
│ │ ├── PivotItem.cs
│ │ ├── Planerator.cs
│ │ ├── Position.cs
│ │ ├── ProgressRing.cs
│ │ ├── PropertyChangeNotifier.cs
│ │ ├── RangeParameterChangedEventArgs.cs
│ │ ├── RangeSelectionChangedEventArgs.cs
│ │ ├── RangeSlider.cs
│ │ ├── RevealImage.xaml
│ │ ├── RevealImage.xaml.cs
│ │ ├── SafeRaise.cs
│ │ ├── ScrollViewerOffsetMediator.cs
│ │ ├── SplitButton.cs
│ │ ├── Theme.cs
│ │ ├── Tile.cs
│ │ ├── ToggleSwitchButton.cs
│ │ ├── ToggleSwitch.cs
│ │ ├── TransitioningContentControl.cs
│ │ ├── TreeHelper.cs
│ │ ├── VisualStates.cs
│ │ ├── WindowButtonCommands.cs
│ │ ├── WindowCommands.cs
│ │ ├── WindowCommandsOverlayBehavior.cs
│ │ └── WindowSettings.cs
│ ├── Converters
│ │ ├── BackgroundToForegroundConverter.cs
│ │ ├── FontSizeOffsetConverter.cs
│ │ ├── IsNullConverter.cs
│ │ ├── MarkupConverter.cs
│ │ ├── MetroTabItemCloseButtonWidthConverter.cs
│ │ ├── OffOnConverter.cs
│ │ ├── ResizeModeMinMaxButtonVisibilityConverter.cs
│ │ ├── StringToVisibilityConverter.cs
│ │ ├── ThicknessBindingConverter.cs
│ │ ├── ThicknessToDoubleConverter.cs
│ │ ├── ToUpperConverter.cs
│ │ └── TreeViewMarginConverter.cs
│ ├── MahAppsException.cs
│ ├── MahApps.Metro.csproj
│ ├── MahApps.Metro.NET45.csproj
│ ├── MahApps.Metro.nuspec
│ ├── mahapps.metro.pfx
│ ├── MahApps.Metro.Resources.nuspec
│ ├── Microsoft.Windows.Shell
│ │ ├── Standard
│ │ │ ├── ComGuids.cs
│ │ │ ├── Debug.cs
│ │ │ ├── DoubleUtil.cs
│ │ │ ├── DpiHelper.cs
│ │ │ ├── ErrorCodes.cs
│ │ │ ├── MessageWindow.cs
│ │ │ ├── NativeMethods.cs
│ │ │ ├── ShellProvider.cs
│ │ │ ├── StreamHelper.cs
│ │ │ ├── Utilities.cs
│ │ │ ├── Utilities.Windows.cs
│ │ │ ├── Utilities.Wpf.cs
│ │ │ └── Verify.cs
│ │ ├── SystemCommands.cs
│ │ ├── SystemParameters2.cs
│ │ ├── WindowChrome.cs
│ │ └── WindowChromeWorker.cs
│ ├── Models
│ │ └── Win32
│ │ ├── GWL.cs
│ │ ├── HitTestValues.cs
│ │ ├── NativeMethods.cs
│ │ ├── SWP.cs
│ │ ├── WM.cs
│ │ ├── WS.cs
│ │ └── WSEX.cs
│ ├── Native
│ │ ├── ABEdge.cs
│ │ ├── ABMsg.cs
│ │ ├── APPBARDATA.cs
│ │ ├── Constants.cs
│ │ ├── CREATESTRUCT.cs
│ │ ├── MARGINS.cs
│ │ ├── MINMAXINFO.cs
│ │ ├── MONITORINFO.cs
│ │ ├── POINT.cs
│ │ ├── RECT.cs
│ │ ├── SafeLibraryHandle.cs
│ │ ├── UnsafeNativeMethods.cs
│ │ └── WINDOWPLACEMENT.cs
│ ├── obj
│ │ ├── NET4
│ │ │ ├── Debug
│ │ │ │ ├── Controls
│ │ │ │ │ ├── GlowWindow.baml
│ │ │ │ │ ├── GlowWindow.g.cs
│ │ │ │ │ ├── GlowWindow.g.i.cs
│ │ │ │ │ ├── RevealImage.baml
│ │ │ │ │ ├── RevealImage.g.cs
│ │ │ │ │ └── RevealImage.g.i.cs
│ │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ │ ├── GeneratedInternalTypeHelper.g.cs
│ │ │ │ ├── GeneratedInternalTypeHelper.g.i.cs
│ │ │ │ ├── MahApps.Metro.csproj.FileListAbsolute.txt
│ │ │ │ ├── MahApps.Metro.csprojResolveAssemblyReference.cache
│ │ │ │ ├── MahApps.Metro.dll
│ │ │ │ ├── MahApps.Metro.g.resources
│ │ │ │ ├── MahApps.Metro_MarkupCompile.cache
│ │ │ │ ├── MahApps.Metro_MarkupCompile.i.cache
│ │ │ │ ├── MahApps.Metro_MarkupCompile.lref
│ │ │ │ ├── MahApps.Metro.pdb
│ │ │ │ ├── Styles
│ │ │ │ │ ├── Accents
│ │ │ │ │ │ ├── Amber.baml
│ │ │ │ │ │ ├── BaseDark.baml
│ │ │ │ │ │ ├── BaseLight.baml
│ │ │ │ │ │ ├── Blue.baml
│ │ │ │ │ │ ├── Brown.baml
│ │ │ │ │ │ ├── Cobalt.baml
│ │ │ │ │ │ ├── Crimson.baml
│ │ │ │ │ │ ├── Cyan.baml
│ │ │ │ │ │ ├── Emerald.baml
│ │ │ │ │ │ ├── Green.baml
│ │ │ │ │ │ ├── Indigo.baml
│ │ │ │ │ │ ├── Lime.baml
│ │ │ │ │ │ ├── Magenta.baml
│ │ │ │ │ │ ├── Mauve.baml
│ │ │ │ │ │ ├── Olive.baml
│ │ │ │ │ │ ├── Orange.baml
│ │ │ │ │ │ ├── Pink.baml
│ │ │ │ │ │ ├── Purple.baml
│ │ │ │ │ │ ├── Red.baml
│ │ │ │ │ │ ├── Sienna.baml
│ │ │ │ │ │ ├── Steel.baml
│ │ │ │ │ │ ├── Taupe.baml
│ │ │ │ │ │ ├── Teal.baml
│ │ │ │ │ │ ├── Violet.baml
│ │ │ │ │ │ └── Yellow.baml
│ │ │ │ │ ├── Clean
│ │ │ │ │ │ ├── Clean.baml
│ │ │ │ │ │ ├── CleanGroupBox.baml
│ │ │ │ │ │ ├── CleanStatusBar.baml
│ │ │ │ │ │ ├── CleanWindow.baml
│ │ │ │ │ │ ├── CleanWindowButtonCommands.baml
│ │ │ │ │ │ ├── CleanWindowButtons.baml
│ │ │ │ │ │ └── CleanWindowCommands.baml
│ │ │ │ │ ├── Colors.baml
│ │ │ │ │ ├── Controls.AnimatedSingleRowTabControl.baml
│ │ │ │ │ ├── Controls.AnimatedTabControl.baml
│ │ │ │ │ ├── Controls.baml
│ │ │ │ │ ├── Controls.Buttons.baml
│ │ │ │ │ ├── Controls.Calendar.baml
│ │ │ │ │ ├── Controls.CheckBox.baml
│ │ │ │ │ ├── Controls.ComboBox.baml
│ │ │ │ │ ├── Controls.ContextMenu.baml
│ │ │ │ │ ├── Controls.DataGrid.baml
│ │ │ │ │ ├── Controls.DatePicker.baml
│ │ │ │ │ ├── Controls.Expander.baml
│ │ │ │ │ ├── Controls.GroupBox.baml
│ │ │ │ │ ├── Controls.Label.baml
│ │ │ │ │ ├── Controls.ListBox.baml
│ │ │ │ │ ├── Controls.ListView.baml
│ │ │ │ │ ├── Controls.Page.baml
│ │ │ │ │ ├── Controls.PasswordBox.baml
│ │ │ │ │ ├── Controls.ProgressBar.baml
│ │ │ │ │ ├── Controls.RadioButton.baml
│ │ │ │ │ ├── Controls.Scrollbars.baml
│ │ │ │ │ ├── Controls.Slider.baml
│ │ │ │ │ ├── Controls.StatusBar.baml
│ │ │ │ │ ├── Controls.TabControl.baml
│ │ │ │ │ ├── Controls.TextBlock.baml
│ │ │ │ │ ├── Controls.TextBox.baml
│ │ │ │ │ ├── Controls.Toolbar.baml
│ │ │ │ │ ├── Controls.Tooltip.baml
│ │ │ │ │ ├── Controls.TreeView.baml
│ │ │ │ │ ├── FlatButton.baml
│ │ │ │ │ ├── FlatSlider.baml
│ │ │ │ │ ├── Fonts.baml
│ │ │ │ │ ├── Shared.baml
│ │ │ │ │ ├── Sizes.baml
│ │ │ │ │ ├── ValidationErrorTemplate.baml
│ │ │ │ │ └── VS
│ │ │ │ │ ├── Button.baml
│ │ │ │ │ ├── Colors.baml
│ │ │ │ │ ├── ListBox.baml
│ │ │ │ │ ├── Menu.baml
│ │ │ │ │ ├── ScrollBar.baml
│ │ │ │ │ ├── Styles.baml
│ │ │ │ │ ├── TabControl.baml
│ │ │ │ │ ├── TextBox.baml
│ │ │ │ │ └── Window.baml
│ │ │ │ └── Themes
│ │ │ │ ├── Dialogs
│ │ │ │ │ ├── BaseMetroDialog.baml
│ │ │ │ │ ├── InputDialog.baml
│ │ │ │ │ ├── InputDialog.g.cs
│ │ │ │ │ ├── InputDialog.g.i.cs
│ │ │ │ │ ├── LoginDialog.baml
│ │ │ │ │ ├── LoginDialog.g.cs
│ │ │ │ │ ├── LoginDialog.g.i.cs
│ │ │ │ │ ├── MessageDialog.baml
│ │ │ │ │ ├── MessageDialog.g.cs
│ │ │ │ │ ├── MessageDialog.g.i.cs
│ │ │ │ │ ├── ProgressDialog.baml
│ │ │ │ │ ├── ProgressDialog.g.cs
│ │ │ │ │ └── ProgressDialog.g.i.cs
│ │ │ │ ├── DropDownButton.baml
│ │ │ │ ├── FlipView.baml
│ │ │ │ ├── Flyout.baml
│ │ │ │ ├── FlyoutsControl.baml
│ │ │ │ ├── Generic.baml
│ │ │ │ ├── Glow.baml
│ │ │ │ ├── MetroAnimatedSingleRowTabControl.baml
│ │ │ │ ├── MetroAnimatedTabControl.baml
│ │ │ │ ├── MetroContentControl.baml
│ │ │ │ ├── MetroNavigationWindow.baml
│ │ │ │ ├── MetroNavigationWindow.g.cs
│ │ │ │ ├── MetroNavigationWindow.g.i.cs
│ │ │ │ ├── MetroProgressBar.baml
│ │ │ │ ├── MetroTabControl.baml
│ │ │ │ ├── MetroTabItem.baml
│ │ │ │ ├── MetroWindow.baml
│ │ │ │ ├── NumericUpDown.baml
│ │ │ │ ├── Pivot.baml
│ │ │ │ ├── ProgressRing.baml
│ │ │ │ ├── RangeSlider.baml
│ │ │ │ ├── SplitButton.baml
│ │ │ │ ├── Tile.baml
│ │ │ │ ├── ToggleSwitch.baml
│ │ │ │ ├── TransitioningContentControl.baml
│ │ │ │ ├── WindowButtonCommands.baml
│ │ │ │ └── WindowCommands.baml
│ │ │ └── Release
│ │ │ ├── Controls
│ │ │ │ ├── GlowWindow.baml
│ │ │ │ ├── GlowWindow.g.cs
│ │ │ │ ├── GlowWindow.g.i.cs
│ │ │ │ ├── RevealImage.baml
│ │ │ │ ├── RevealImage.g.cs
│ │ │ │ └── RevealImage.g.i.cs
│ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ ├── GeneratedInternalTypeHelper.g.cs
│ │ │ ├── GeneratedInternalTypeHelper.g.i.cs
│ │ │ ├── MahApps.Metro.csproj.FileListAbsolute.txt
│ │ │ ├── MahApps.Metro.csprojResolveAssemblyReference.cache
│ │ │ ├── MahApps.Metro.dll
│ │ │ ├── MahApps.Metro.g.resources
│ │ │ ├── MahApps.Metro_MarkupCompile.cache
│ │ │ ├── MahApps.Metro_MarkupCompile.i.cache
│ │ │ ├── MahApps.Metro_MarkupCompile.i.lref
│ │ │ ├── MahApps.Metro_MarkupCompile.lref
│ │ │ ├── MahApps.Metro.pdb
│ │ │ ├── Styles
│ │ │ │ ├── Accents
│ │ │ │ │ ├── Amber.baml
│ │ │ │ │ ├── BaseDark.baml
│ │ │ │ │ ├── BaseLight.baml
│ │ │ │ │ ├── Blue.baml
│ │ │ │ │ ├── Brown.baml
│ │ │ │ │ ├── Cobalt.baml
│ │ │ │ │ ├── Crimson.baml
│ │ │ │ │ ├── Cyan.baml
│ │ │ │ │ ├── Emerald.baml
│ │ │ │ │ ├── Green.baml
│ │ │ │ │ ├── Indigo.baml
│ │ │ │ │ ├── Lime.baml
│ │ │ │ │ ├── Magenta.baml
│ │ │ │ │ ├── Mauve.baml
│ │ │ │ │ ├── Olive.baml
│ │ │ │ │ ├── Orange.baml
│ │ │ │ │ ├── Pink.baml
│ │ │ │ │ ├── Purple.baml
│ │ │ │ │ ├── Red.baml
│ │ │ │ │ ├── Sienna.baml
│ │ │ │ │ ├── Steel.baml
│ │ │ │ │ ├── Taupe.baml
│ │ │ │ │ ├── Teal.baml
│ │ │ │ │ ├── Violet.baml
│ │ │ │ │ └── Yellow.baml
│ │ │ │ ├── Clean
│ │ │ │ │ ├── Clean.baml
│ │ │ │ │ ├── CleanGroupBox.baml
│ │ │ │ │ ├── CleanStatusBar.baml
│ │ │ │ │ ├── CleanWindow.baml
│ │ │ │ │ ├── CleanWindowButtonCommands.baml
│ │ │ │ │ ├── CleanWindowButtons.baml
│ │ │ │ │ └── CleanWindowCommands.baml
│ │ │ │ ├── Colors.baml
│ │ │ │ ├── Controls.AnimatedSingleRowTabControl.baml
│ │ │ │ ├── Controls.AnimatedTabControl.baml
│ │ │ │ ├── Controls.baml
│ │ │ │ ├── Controls.Buttons.baml
│ │ │ │ ├── Controls.Calendar.baml
│ │ │ │ ├── Controls.CheckBox.baml
│ │ │ │ ├── Controls.ComboBox.baml
│ │ │ │ ├── Controls.ContextMenu.baml
│ │ │ │ ├── Controls.DataGrid.baml
│ │ │ │ ├── Controls.DatePicker.baml
│ │ │ │ ├── Controls.Expander.baml
│ │ │ │ ├── Controls.GroupBox.baml
│ │ │ │ ├── Controls.Label.baml
│ │ │ │ ├── Controls.ListBox.baml
│ │ │ │ ├── Controls.ListView.baml
│ │ │ │ ├── Controls.Page.baml
│ │ │ │ ├── Controls.PasswordBox.baml
│ │ │ │ ├── Controls.ProgressBar.baml
│ │ │ │ ├── Controls.RadioButton.baml
│ │ │ │ ├── Controls.Scrollbars.baml
│ │ │ │ ├── Controls.Slider.baml
│ │ │ │ ├── Controls.StatusBar.baml
│ │ │ │ ├── Controls.TabControl.baml
│ │ │ │ ├── Controls.TextBlock.baml
│ │ │ │ ├── Controls.TextBox.baml
│ │ │ │ ├── Controls.Toolbar.baml
│ │ │ │ ├── Controls.Tooltip.baml
│ │ │ │ ├── Controls.TreeView.baml
│ │ │ │ ├── FlatButton.baml
│ │ │ │ ├── FlatSlider.baml
│ │ │ │ ├── Fonts.baml
│ │ │ │ ├── Shared.baml
│ │ │ │ ├── Sizes.baml
│ │ │ │ ├── ValidationErrorTemplate.baml
│ │ │ │ └── VS
│ │ │ │ ├── Button.baml
│ │ │ │ ├── Colors.baml
│ │ │ │ ├── ListBox.baml
│ │ │ │ ├── Menu.baml
│ │ │ │ ├── ScrollBar.baml
│ │ │ │ ├── Styles.baml
│ │ │ │ ├── TabControl.baml
│ │ │ │ ├── TextBox.baml
│ │ │ │ └── Window.baml
│ │ │ └── Themes
│ │ │ ├── Dialogs
│ │ │ │ ├── BaseMetroDialog.baml
│ │ │ │ ├── InputDialog.baml
│ │ │ │ ├── InputDialog.g.cs
│ │ │ │ ├── InputDialog.g.i.cs
│ │ │ │ ├── LoginDialog.baml
│ │ │ │ ├── LoginDialog.g.cs
│ │ │ │ ├── LoginDialog.g.i.cs
│ │ │ │ ├── MessageDialog.baml
│ │ │ │ ├── MessageDialog.g.cs
│ │ │ │ ├── MessageDialog.g.i.cs
│ │ │ │ ├── ProgressDialog.baml
│ │ │ │ ├── ProgressDialog.g.cs
│ │ │ │ └── ProgressDialog.g.i.cs
│ │ │ ├── DropDownButton.baml
│ │ │ ├── FlipView.baml
│ │ │ ├── Flyout.baml
│ │ │ ├── FlyoutsControl.baml
│ │ │ ├── Generic.baml
│ │ │ ├── Glow.baml
│ │ │ ├── MetroAnimatedSingleRowTabControl.baml
│ │ │ ├── MetroAnimatedTabControl.baml
│ │ │ ├── MetroContentControl.baml
│ │ │ ├── MetroNavigationWindow.baml
│ │ │ ├── MetroNavigationWindow.g.cs
│ │ │ ├── MetroNavigationWindow.g.i.cs
│ │ │ ├── MetroProgressBar.baml
│ │ │ ├── MetroTabControl.baml
│ │ │ ├── MetroTabItem.baml
│ │ │ ├── MetroWindow.baml
│ │ │ ├── NumericUpDown.baml
│ │ │ ├── Pivot.baml
│ │ │ ├── ProgressRing.baml
│ │ │ ├── RangeSlider.baml
│ │ │ ├── SplitButton.baml
│ │ │ ├── Tile.baml
│ │ │ ├── ToggleSwitch.baml
│ │ │ ├── TransitioningContentControl.baml
│ │ │ ├── WindowButtonCommands.baml
│ │ │ └── WindowCommands.baml
│ │ └── NET45
│ │ └── Debug
│ │ ├── Controls
│ │ │ ├── GlowWindow.g.i.cs
│ │ │ └── RevealImage.g.i.cs
│ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ ├── GeneratedInternalTypeHelper.g.i.cs
│ │ ├── MahApps.Metro_MarkupCompile.i.cache
│ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│ │ ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
│ │ └── Themes
│ │ ├── Dialogs
│ │ │ ├── InputDialog.g.i.cs
│ │ │ ├── LoginDialog.g.i.cs
│ │ │ ├── MessageDialog.g.i.cs
│ │ │ └── ProgressDialog.g.i.cs
│ │ └── MetroNavigationWindow.g.i.cs
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── Styles
│ │ ├── Accents
│ │ │ ├── Amber.xaml
│ │ │ ├── BaseDark.xaml
│ │ │ ├── BaseLight.xaml
│ │ │ ├── Blue.xaml
│ │ │ ├── Brown.xaml
│ │ │ ├── Cobalt.xaml
│ │ │ ├── Crimson.xaml
│ │ │ ├── Cyan.xaml
│ │ │ ├── Emerald.xaml
│ │ │ ├── Green.xaml
│ │ │ ├── Indigo.xaml
│ │ │ ├── Lime.xaml
│ │ │ ├── Magenta.xaml
│ │ │ ├── Mauve.xaml
│ │ │ ├── Olive.xaml
│ │ │ ├── Orange.xaml
│ │ │ ├── Pink.xaml
│ │ │ ├── Purple.xaml
│ │ │ ├── Red.xaml
│ │ │ ├── Sienna.xaml
│ │ │ ├── Steel.xaml
│ │ │ ├── Taupe.xaml
│ │ │ ├── Teal.xaml
│ │ │ ├── Violet.xaml
│ │ │ └── Yellow.xaml
│ │ ├── Clean
│ │ │ ├── CleanGroupBox.xaml
│ │ │ ├── CleanStatusBar.xaml
│ │ │ ├── CleanWindowButtonCommands.xaml
│ │ │ ├── CleanWindowButtons.xaml
│ │ │ ├── CleanWindowCommands.xaml
│ │ │ ├── CleanWindow.xaml
│ │ │ └── Clean.xaml
│ │ ├── Colors.xaml
│ │ ├── Controls.AnimatedSingleRowTabControl.xaml
│ │ ├── Controls.AnimatedTabControl.xaml
│ │ ├── Controls.Buttons.xaml
│ │ ├── Controls.Calendar.xaml
│ │ ├── Controls.CheckBox.xaml
│ │ ├── Controls.ComboBox.xaml
│ │ ├── Controls.ContextMenu.xaml
│ │ ├── Controls.DataGrid.xaml
│ │ ├── Controls.DatePicker.xaml
│ │ ├── Controls.Expander.xaml
│ │ ├── Controls.GroupBox.xaml
│ │ ├── Controls.Label.xaml
│ │ ├── Controls.ListBox.xaml
│ │ ├── Controls.ListView.xaml
│ │ ├── Controls.Page.xaml
│ │ ├── Controls.PasswordBox.xaml
│ │ ├── Controls.ProgressBar.xaml
│ │ ├── Controls.RadioButton.xaml
│ │ ├── Controls.Scrollbars.xaml
│ │ ├── Controls.Slider.xaml
│ │ ├── Controls.StatusBar.xaml
│ │ ├── Controls.TabControl.xaml
│ │ ├── Controls.TextBlock.xaml
│ │ ├── Controls.TextBox.xaml
│ │ ├── Controls.Toolbar.xaml
│ │ ├── Controls.Tooltip.xaml
│ │ ├── Controls.TreeView.xaml
│ │ ├── Controls.xaml
│ │ ├── FlatButton.xaml
│ │ ├── FlatSlider.xaml
│ │ ├── Fonts.xaml
│ │ ├── Ribbon
│ │ │ ├── RibbonGroup.xaml
│ │ │ ├── RibbonTabHeader.xaml
│ │ │ ├── RibbonTab.xaml
│ │ │ ├── Ribbon.xaml
│ │ │ └── Styles.xaml
│ │ ├── Shared.xaml
│ │ ├── Sizes.xaml
│ │ ├── ValidationErrorTemplate.xaml
│ │ └── VS
│ │ ├── Button.xaml
│ │ ├── Colors.xaml
│ │ ├── ListBox.xaml
│ │ ├── Menu.xaml
│ │ ├── ScrollBar.xaml
│ │ ├── Styles.xaml
│ │ ├── TabControl.xaml
│ │ ├── TextBox.xaml
│ │ └── Window.xaml
│ ├── ThemeManager.cs
│ ├── Themes
│ │ ├── Dialogs
│ │ │ ├── BaseMetroDialog.xaml
│ │ │ ├── InputDialog.xaml
│ │ │ ├── LoginDialog.xaml
│ │ │ ├── MessageDialog.xaml
│ │ │ └── ProgressDialog.xaml
│ │ ├── DropDownButton.xaml
│ │ ├── FlipView.xaml
│ │ ├── FlyoutsControl.xaml
│ │ ├── Flyout.xaml
│ │ ├── Generic.xaml
│ │ ├── Glow.xaml
│ │ ├── MetroAnimatedSingleRowTabControl.xaml
│ │ ├── MetroAnimatedTabControl.xaml
│ │ ├── MetroContentControl.xaml
│ │ ├── MetroNavigationWindow.xaml
│ │ ├── MetroProgressBar.xaml
│ │ ├── MetroTabControl.xaml
│ │ ├── MetroTabItem.xaml
│ │ ├── MetroWindow.xaml
│ │ ├── NumericUpDown.xaml
│ │ ├── Pivot.xaml
│ │ ├── ProgressRing.xaml
│ │ ├── RangeSlider.xaml
│ │ ├── SplitButton.xaml
│ │ ├── Tile.xaml
│ │ ├── ToggleSwitch.xaml
│ │ ├── TransitioningContentControl.xaml
│ │ ├── WindowButtonCommands.xaml
│ │ └── WindowCommands.xaml
│ └── tools
│ └── install.ps1
├── mahapps.metro.logo2.png
├── MahApps.Metro.Resources
│ ├── bin
│ │ └── Debug
│ │ ├── MahApps.Metro.Resources.dll
│ │ └── MahApps.Metro.Resources.pdb
│ ├── Entypo-license.txt
│ ├── Entypo.ttf
│ ├── Icons.xaml
│ ├── MahApps.Metro.Resources.csproj
│ ├── obj
│ │ └── Debug
│ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ ├── Icons.baml
│ │ ├── Icons.g.cs
│ │ ├── Icons.g.i.cs
│ │ ├── MahApps.Metro.Resources.csproj.FileListAbsolute.txt
│ │ ├── MahApps.Metro.Resources.csproj.GenerateResource.Cache
│ │ ├── MahApps.Metro.Resources.csprojResolveAssemblyReference.cache
│ │ ├── MahApps.Metro.Resources.dll
│ │ ├── MahApps.Metro.Resources.g.resources
│ │ ├── MahApps.Metro.Resources_MarkupCompile.cache
│ │ ├── MahApps.Metro.Resources_MarkupCompile.i.cache
│ │ ├── MahApps.Metro.Resources.pdb
│ │ └── MahApps.Metro.Resources.Properties.Resources.resources
│ ├── Properties
│ │ ├── AssemblyInfo.cs
│ │ ├── Resources.Designer.cs
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.cs
│ │ └── Settings.settings
│ └── WindowsIcons-license.txt
├── MahApps.Metro.sln
├── MahApps.Metro.sln.DotSettings
├── Mahapps.Metro.Tests
│ ├── app.config
│ ├── ButtonTest.cs
│ ├── ButtonWindow.xaml
│ ├── ButtonWindow.xaml.cs
│ ├── CleanWindowTest.cs
│ ├── CleanWindow.xaml
│ ├── CleanWindow.xaml.cs
│ ├── CustomDialogTest.cs
│ ├── DialogWindow.xaml
│ ├── DialogWindow.xaml.cs
│ ├── FlyoutTest.cs
│ ├── FlyoutWindow.xaml
│ ├── FlyoutWindow.xaml.cs
│ ├── HiddenMinMaxCloseButtonsWindow.xaml
│ ├── HiddenMinMaxCloseButtonsWindow.xaml.cs
│ ├── Mahapps.Metro.Tests.csproj
│ ├── MetroWindowTest.cs
│ ├── obj
│ │ └── Debug
│ │ ├── ButtonWindow.g.i.cs
│ │ ├── CleanWindow.g.i.cs
│ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ ├── DialogWindow.g.i.cs
│ │ ├── FlyoutWindow.g.i.cs
│ │ ├── HiddenMinMaxCloseButtonsWindow.g.i.cs
│ │ ├── MahApps.Metro.Tests.csproj.App.config
│ │ ├── MahApps.Metro.Tests_MarkupCompile.i.cache
│ │ └── TestApp.g.i.cs
│ ├── packages.config
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── TestApp.xaml
│ ├── TestApp.xaml.cs
│ ├── TestHelpers
│ │ ├── AutomationTestBase.cs
│ │ ├── SwitchContextToUiThreadAwaiter.cs
│ │ ├── TestHost.cs
│ │ └── WindowHelpers.cs
│ └── ThemeManagerTest.cs
├── packages
│ ├── Caliburn.Micro.2.0.0
│ │ ├── Caliburn.Micro.2.0.0.nupkg
│ │ ├── [Content_Types].xml
│ │ └── lib
│ │ ├── net40
│ │ │ ├── Caliburn.Micro.Platform.dll
│ │ │ ├── Caliburn.Micro.Platform.xml
│ │ │ ├── System.Windows.Interactivity.dll
│ │ │ └── System.Windows.Interactivity.xml
│ │ ├── net45
│ │ │ ├── Caliburn.Micro.Platform.dll
│ │ │ ├── Caliburn.Micro.Platform.xml
│ │ │ ├── System.Windows.Interactivity.dll
│ │ │ └── System.Windows.Interactivity.xml
│ │ ├── sl5
│ │ │ ├── Caliburn.Micro.Platform.dll
│ │ │ ├── Caliburn.Micro.Platform.xml
│ │ │ ├── System.Windows.Interactivity.dll
│ │ │ └── System.Windows.Interactivity.xml
│ │ ├── win8
│ │ │ ├── Caliburn.Micro.Extensions.dll
│ │ │ ├── Caliburn.Micro.Extensions.pri
│ │ │ ├── Caliburn.Micro.Extensions.xml
│ │ │ ├── Caliburn.Micro.Platform.dll
│ │ │ ├── Caliburn.Micro.Platform.pri
│ │ │ └── Caliburn.Micro.Platform.xml
│ │ ├── win81
│ │ │ ├── Caliburn.Micro.Extensions.dll
│ │ │ ├── Caliburn.Micro.Extensions.pri
│ │ │ ├── Caliburn.Micro.Extensions.XML
│ │ │ ├── Caliburn.Micro.Platform.dll
│ │ │ ├── Caliburn.Micro.Platform.pri
│ │ │ ├── Caliburn.Micro.Platform.XML
│ │ │ ├── Microsoft.Xaml.Interactions.dll
│ │ │ └── Microsoft.Xaml.Interactivity.dll
│ │ ├── wp8
│ │ │ ├── Caliburn.Micro.Extensions.dll
│ │ │ ├── Caliburn.Micro.Extensions.xml
│ │ │ ├── Caliburn.Micro.Platform.dll
│ │ │ ├── Caliburn.Micro.Platform.xml
│ │ │ ├── System.Windows.Interactivity.dll
│ │ │ └── System.Windows.Interactivity.xml
│ │ └── wpa81
│ │ ├── Caliburn.Micro.Extensions.dll
│ │ ├── Caliburn.Micro.Extensions.pri
│ │ ├── Caliburn.Micro.Platform.dll
│ │ ├── Caliburn.Micro.Platform.pri
│ │ ├── Caliburn.Micro.Platform.xml
│ │ ├── Microsoft.Xaml.Interactions.dll
│ │ └── Microsoft.Xaml.Interactivity.dll
│ ├── Caliburn.Micro.Core.2.0.0
│ │ ├── Caliburn.Micro.Core.2.0.0.nupkg
│ │ ├── [Content_Types].xml
│ │ └── lib
│ │ ├── net40
│ │ │ ├── Caliburn.Micro.dll
│ │ │ └── Caliburn.Micro.XML
│ │ ├── net45
│ │ │ ├── Caliburn.Micro.dll
│ │ │ └── Caliburn.Micro.xml
│ │ ├── portable-net45+win8+wp8+wpa81
│ │ │ ├── Caliburn.Micro.dll
│ │ │ └── Caliburn.Micro.XML
│ │ └── sl5
│ │ ├── Caliburn.Micro.dll
│ │ └── Caliburn.Micro.XML
│ ├── Caliburn.Micro.Start.2.0.0
│ │ ├── Caliburn.Micro.Start.2.0.0.nupkg
│ │ ├── content
│ │ │ ├── net45
│ │ │ │ ├── AppBootstrapper.cs.pp
│ │ │ │ ├── IShell.cs.pp
│ │ │ │ ├── ShellViewModel.cs.pp
│ │ │ │ └── ShellView.xaml.pp
│ │ │ ├── sl5
│ │ │ │ ├── AppBootstrapper.cs.pp
│ │ │ │ ├── IShell.cs.pp
│ │ │ │ ├── ShellViewModel.cs.pp
│ │ │ │ └── ShellView.xaml.pp
│ │ │ └── wp8
│ │ │ ├── AppBootstrapper.cs.pp
│ │ │ └── MainPageViewModel.cs.pp
│ │ ├── [Content_Types].xml
│ │ └── tools
│ │ └── install.ps1
│ ├── ExposedObject.1.2.0.0
│ │ ├── [Content_Types].xml
│ │ ├── ExposedObject.1.2.0.0.nupkg
│ │ └── lib
│ │ └── net40
│ │ └── ExposedObject.dll
│ ├── Microsoft.Bcl.1.0.19
│ │ ├── content
│ │ │ ├── net45
│ │ │ │ └── _._
│ │ │ ├── portable-net45+win8+wp8
│ │ │ │ └── _._
│ │ │ ├── sl4
│ │ │ │ └── _._
│ │ │ ├── sl5
│ │ │ │ └── _._
│ │ │ ├── win8
│ │ │ │ └── _._
│ │ │ └── wp8
│ │ │ └── _._
│ │ ├── [Content_Types].xml
│ │ ├── lib
│ │ │ ├── net40
│ │ │ │ ├── ensureRedirect.xml
│ │ │ │ ├── System.Runtime.dll
│ │ │ │ ├── System.Runtime.xml
│ │ │ │ ├── System.Threading.Tasks.dll
│ │ │ │ └── System.Threading.Tasks.xml
│ │ │ ├── net45
│ │ │ │ └── _._
│ │ │ ├── portable-net40+sl4+win8
│ │ │ │ ├── ensureRedirect.xml
│ │ │ │ ├── System.Runtime.dll
│ │ │ │ ├── System.Runtime.xml
│ │ │ │ ├── System.Threading.Tasks.dll
│ │ │ │ └── System.Threading.Tasks.xml
│ │ │ ├── portable-net40+sl4+win8+wp71
│ │ │ │ ├── ensureRedirect.xml
│ │ │ │ ├── System.Runtime.dll
│ │ │ │ ├── System.Runtime.xml
│ │ │ │ ├── System.Threading.Tasks.dll
│ │ │ │ └── System.Threading.Tasks.xml
│ │ │ ├── portable-net40+sl4+win8+wp8
│ │ │ │ ├── ensureRedirect.xml
│ │ │ │ ├── System.Runtime.dll
│ │ │ │ ├── System.Runtime.xml
│ │ │ │ ├── System.Threading.Tasks.dll
│ │ │ │ └── System.Threading.Tasks.xml
│ │ │ ├── portable-net40+sl5+win8+wp8
│ │ │ │ ├── ensureRedirect.xml
│ │ │ │ ├── System.Runtime.dll
│ │ │ │ ├── System.Runtime.xml
│ │ │ │ ├── System.Threading.Tasks.dll
│ │ │ │ └── System.Threading.Tasks.xml
│ │ │ ├── portable-net40+win8
│ │ │ │ ├── ensureRedirect.xml
│ │ │ │ ├── System.Runtime.dll
│ │ │ │ ├── System.Runtime.xml
│ │ │ │ ├── System.Threading.Tasks.dll
│ │ │ │ └── System.Threading.Tasks.xml
│ │ │ ├── portable-net40+win8+wp8
│ │ │ │ ├── ensureRedirect.xml
│ │ │ │ ├── System.Runtime.dll
│ │ │ │ ├── System.Runtime.xml
│ │ │ │ ├── System.Threading.Tasks.dll
│ │ │ │ └── System.Threading.Tasks.xml
│ │ │ ├── portable-net45+win8+wp8
│ │ │ │ └── _._
│ │ │ ├── sl4
│ │ │ │ ├── System.Runtime.dll
│ │ │ │ ├── System.Runtime.xml
│ │ │ │ ├── System.Threading.Tasks.dll
│ │ │ │ └── System.Threading.Tasks.xml
│ │ │ ├── sl4-windowsphone71
│ │ │ │ ├── ensureRedirect.xml
│ │ │ │ ├── System.Runtime.dll
│ │ │ │ ├── System.Runtime.xml
│ │ │ │ ├── System.Threading.Tasks.dll
│ │ │ │ └── System.Threading.Tasks.xml
│ │ │ ├── sl5
│ │ │ │ ├── System.Runtime.dll
│ │ │ │ ├── System.Runtime.xml
│ │ │ │ ├── System.Threading.Tasks.dll
│ │ │ │ └── System.Threading.Tasks.xml
│ │ │ ├── win8
│ │ │ │ └── _._
│ │ │ └── wp8
│ │ │ └── _._
│ │ ├── License.rtf
│ │ ├── Microsoft.Bcl.1.0.19.nupkg
│ │ └── ReleaseNotes.txt
│ ├── Microsoft.Bcl.Async.1.0.165
│ │ ├── [Content_Types].xml
│ │ ├── lib
│ │ │ ├── net40
│ │ │ │ ├── Microsoft.Threading.Tasks.dll
│ │ │ │ ├── Microsoft.Threading.Tasks.Extensions.Desktop.dll
│ │ │ │ ├── Microsoft.Threading.Tasks.Extensions.Desktop.xml
│ │ │ │ ├── Microsoft.Threading.Tasks.Extensions.dll
│ │ │ │ ├── Microsoft.Threading.Tasks.Extensions.xml
│ │ │ │ └── Microsoft.Threading.Tasks.xml
│ │ │ ├── net45
│ │ │ │ ├── Microsoft.Threading.Tasks.dll
│ │ │ │ ├── Microsoft.Threading.Tasks.Extensions.dll
│ │ │ │ ├── Microsoft.Threading.Tasks.Extensions.xml
│ │ │ │ └── Microsoft.Threading.Tasks.xml
│ │ │ ├── portable-net40+sl4+win8+wp71
│ │ │ │ ├── Microsoft.Threading.Tasks.dll
│ │ │ │ ├── Microsoft.Threading.Tasks.Extensions.dll
│ │ │ │ ├── Microsoft.Threading.Tasks.Extensions.xml
│ │ │ │ └── Microsoft.Threading.Tasks.xml
│ │ │ ├── portable-net45+win8
│ │ │ │ ├── Microsoft.Threading.Tasks.dll
│ │ │ │ ├── Microsoft.Threading.Tasks.Extensions.dll
│ │ │ │ ├── Microsoft.Threading.Tasks.Extensions.xml
│ │ │ │ └── Microsoft.Threading.Tasks.xml
│ │ │ ├── portable-net45+win8+wp8
│ │ │ │ ├── Microsoft.Threading.Tasks.dll
│ │ │ │ ├── Microsoft.Threading.Tasks.Extensions.dll
│ │ │ │ ├── Microsoft.Threading.Tasks.Extensions.xml
│ │ │ │ └── Microsoft.Threading.Tasks.xml
│ │ │ ├── sl4
│ │ │ │ ├── Microsoft.Threading.Tasks.dll
│ │ │ │ ├── Microsoft.Threading.Tasks.Extensions.dll
│ │ │ │ ├── Microsoft.Threading.Tasks.Extensions.Silverlight.dll
│ │ │ │ ├── Microsoft.Threading.Tasks.Extensions.Silverlight.xml
│ │ │ │ ├── Microsoft.Threading.Tasks.Extensions.xml
│ │ │ │ └── Microsoft.Threading.Tasks.xml
│ │ │ ├── sl4-windowsphone71
│ │ │ │ ├── Microsoft.Threading.Tasks.dll
│ │ │ │ ├── Microsoft.Threading.Tasks.Extensions.dll
│ │ │ │ ├── Microsoft.Threading.Tasks.Extensions.Phone.dll
│ │ │ │ ├── Microsoft.Threading.Tasks.Extensions.Phone.xml
│ │ │ │ ├── Microsoft.Threading.Tasks.Extensions.xml
│ │ │ │ └── Microsoft.Threading.Tasks.xml
│ │ │ ├── win8
│ │ │ │ ├── Microsoft.Threading.Tasks.dll
│ │ │ │ ├── Microsoft.Threading.Tasks.Extensions.dll
│ │ │ │ ├── Microsoft.Threading.Tasks.Extensions.xml
│ │ │ │ └── Microsoft.Threading.Tasks.xml
│ │ │ └── wp8
│ │ │ ├── Microsoft.Threading.Tasks.dll
│ │ │ ├── Microsoft.Threading.Tasks.Extensions.dll
│ │ │ ├── Microsoft.Threading.Tasks.Extensions.Phone.dll
│ │ │ ├── Microsoft.Threading.Tasks.Extensions.Phone.xml
│ │ │ ├── Microsoft.Threading.Tasks.Extensions.xml
│ │ │ └── Microsoft.Threading.Tasks.xml
│ │ ├── License-Stable.rtf
│ │ └── Microsoft.Bcl.Async.1.0.165.nupkg
│ ├── Microsoft.Bcl.Build.1.0.13
│ │ ├── content
│ │ │ ├── net40
│ │ │ │ └── _._
│ │ │ ├── netcore45
│ │ │ │ └── _._
│ │ │ ├── portable-net40+win8+sl4+wp71
│ │ │ │ └── _._
│ │ │ ├── sl4
│ │ │ │ └── _._
│ │ │ └── sl4-windowsphone71
│ │ │ └── _._
│ │ ├── [Content_Types].xml
│ │ ├── License-Stable.rtf
│ │ ├── Microsoft.Bcl.Build.1.0.13.nupkg
│ │ └── tools
│ │ ├── Install.ps1
│ │ ├── Microsoft.Bcl.Build.targets
│ │ ├── Microsoft.Bcl.Build.Tasks.dll
│ │ └── Uninstall.ps1
│ ├── xunit.1.9.2
│ │ ├── [Content_Types].xml
│ │ ├── lib
│ │ │ └── net20
│ │ │ ├── xunit.dll
│ │ │ ├── xunit.dll.tdnet
│ │ │ ├── xunit.runner.msbuild.dll
│ │ │ ├── xunit.runner.tdnet.dll
│ │ │ ├── xunit.runner.utility.dll
│ │ │ └── xunit.xml
│ │ └── xunit.1.9.2.nupkg
│ └── xunit.extensions.1.9.2
│ ├── [Content_Types].xml
│ ├── lib
│ │ └── net20
│ │ ├── xunit.extensions.dll
│ │ └── xunit.extensions.xml
│ └── xunit.extensions.1.9.2.nupkg
├── readme.md
├── samples
│ ├── Caliburn.Metro.Demo
│ │ ├── AppBootstrapper.cs
│ │ ├── App.config
│ │ ├── App.xaml
│ │ ├── Caliburn.Metro.Demo.csproj
│ │ ├── Controls
│ │ │ ├── IThemeManager.cs
│ │ │ ├── IViewLocator.cs
│ │ │ ├── StartupTasks.cs
│ │ │ ├── ThemeManager.cs
│ │ │ └── ViewLocator.cs
│ │ ├── IShell.cs
│ │ ├── obj
│ │ │ └── NET40
│ │ │ └── Debug
│ │ │ ├── App.g.i.cs
│ │ │ ├── build.force
│ │ │ ├── Caliburn.Metro.Demo_MarkupCompile.i.cache
│ │ │ ├── Caliburn.Metro.Demo_MarkupCompile.i.lref
│ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ ├── GeneratedInternalTypeHelper.g.i.cs
│ │ │ ├── ShellView.g.i.cs
│ │ │ └── Views
│ │ │ ├── Flyouts
│ │ │ │ ├── Flyout1View.g.i.cs
│ │ │ │ ├── Flyout2View.g.i.cs
│ │ │ │ ├── Flyout3View.g.i.cs
│ │ │ │ ├── FlyoutBottomView.g.i.cs
│ │ │ │ ├── FlyoutLeftView.g.i.cs
│ │ │ │ ├── FlyoutSettingsView.g.i.cs
│ │ │ │ └── FlyoutTopView.g.i.cs
│ │ │ └── ShellView.g.i.cs
│ │ ├── packages.config
│ │ ├── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── Resources
│ │ │ └── Theme1.xaml
│ │ ├── Services
│ │ │ ├── IServiceLocator.cs
│ │ │ └── MefServiceLocator.cs
│ │ ├── ShellViewModel.cs
│ │ ├── ShellView.xaml
│ │ ├── ViewModels
│ │ │ ├── FlyoutBaseViewModel.cs
│ │ │ ├── Flyouts
│ │ │ │ ├── Flyout1ViewModel.cs
│ │ │ │ ├── Flyout2ViewModel.cs
│ │ │ │ ├── Flyout3ViewModel.cs
│ │ │ │ ├── FlyoutBottomViewModel.cs
│ │ │ │ ├── FlyoutLeftViewModel.cs
│ │ │ │ ├── FlyoutSettingsViewModel.cs
│ │ │ │ └── FlyoutTopViewModel.cs
│ │ │ └── ShellViewModel.cs
│ │ └── Views
│ │ ├── Flyouts
│ │ │ ├── Flyout1View.xaml
│ │ │ ├── Flyout2View.xaml
│ │ │ ├── Flyout3View.xaml
│ │ │ ├── FlyoutBottomView.xaml
│ │ │ ├── FlyoutLeftView.xaml
│ │ │ ├── FlyoutSettingsView.xaml
│ │ │ └── FlyoutTopView.xaml
│ │ └── ShellView.xaml
│ └── MetroDemo
│ ├── app.config
│ ├── App.xaml
│ ├── App.xaml.cs
│ ├── bin
│ │ └── NET40
│ │ ├── Debug
│ │ │ ├── GrayscaleEffect.dll
│ │ │ ├── MahApps.Metro.dll
│ │ │ ├── MahApps.Metro.pdb
│ │ │ ├── MahApps.Metro.Resources.dll
│ │ │ ├── MahApps.Metro.Resources.pdb
│ │ │ ├── MahApps.Metro.xml
│ │ │ ├── MetroDemo.exe
│ │ │ ├── MetroDemo.exe.config
│ │ │ ├── MetroDemo.pdb
│ │ │ ├── MetroDemo.vshost.exe
│ │ │ ├── MetroDemo.vshost.exe.config
│ │ │ ├── MetroDemo.vshost.exe.manifest
│ │ │ ├── Microsoft.Threading.Tasks.dll
│ │ │ ├── Microsoft.Threading.Tasks.Extensions.Desktop.dll
│ │ │ ├── Microsoft.Threading.Tasks.Extensions.Desktop.xml
│ │ │ ├── Microsoft.Threading.Tasks.Extensions.dll
│ │ │ ├── Microsoft.Threading.Tasks.Extensions.xml
│ │ │ ├── Microsoft.Threading.Tasks.xml
│ │ │ ├── System.Runtime.dll
│ │ │ ├── System.Runtime.xml
│ │ │ ├── System.Threading.Tasks.dll
│ │ │ ├── System.Threading.Tasks.xml
│ │ │ └── System.Windows.Interactivity.dll
│ │ └── Debug.rar
│ ├── ExampleViews
│ │ ├── ButtonsExample.xaml
│ │ ├── ButtonsExample.xaml.cs
│ │ ├── ColorExample.xaml
│ │ ├── ColorExample.xaml.cs
│ │ ├── DataGridExamples.xaml
│ │ ├── DataGridExamples.xaml.cs
│ │ ├── DateExamples.xaml
│ │ ├── DateExamples.xaml.cs
│ │ ├── OtherExamples.xaml
│ │ ├── OtherExamples.xaml.cs
│ │ ├── SelectionExamples.xaml
│ │ ├── SelectionExamples.xaml.cs
│ │ ├── SliderProgressExamples.xaml
│ │ ├── SliderProgressExamples.xaml.cs
│ │ ├── TabControlExamples.xaml
│ │ ├── TabControlExamples.xaml.cs
│ │ ├── TextExamples.xaml
│ │ ├── TextExamples.xaml.cs
│ │ ├── TilesExample.xaml
│ │ └── TilesExample.xaml.cs
│ ├── ExampleWindows
│ │ ├── CleanWindowDemo.xaml
│ │ ├── CleanWindowDemo.xaml.cs
│ │ ├── CustomFlyout.xaml
│ │ ├── CustomFlyout.xaml.cs
│ │ ├── DynamicFlyout.xaml
│ │ ├── DynamicFlyout.xaml.cs
│ │ ├── FlyoutDemo.xaml
│ │ ├── FlyoutDemo.xaml.cs
│ │ ├── IconsWindow.xaml
│ │ ├── IconsWindow.xaml.cs
│ │ ├── InteropDemo.xaml
│ │ ├── InteropDemo.xaml.cs
│ │ ├── SizeToContentDemo.xaml
│ │ ├── SizeToContentDemo.xaml.cs
│ │ ├── VSDemo.xaml
│ │ └── VSDemo.xaml.cs
│ ├── images
│ │ ├── blank-cd.png
│ │ └── placeholder_person.gif
│ ├── mahapps.metro.logo2.ico
│ ├── MainWindowViewModel.cs
│ ├── MainWindow.xaml
│ ├── MainWindow.xaml.cs
│ ├── MetroDemo.csproj
│ ├── MetroDemo.NET45.csproj
│ ├── Models
│ │ ├── Album.cs
│ │ ├── Artist.cs
│ │ ├── Genre.cs
│ │ └── SimpleCommand.cs
│ ├── Navigation
│ │ ├── HomePage.xaml
│ │ ├── HomePage.xaml.cs
│ │ ├── InterestingPage.xaml
│ │ └── InterestingPage.xaml.cs
│ ├── obj
│ │ ├── NET40
│ │ │ └── Debug
│ │ │ ├── App.baml
│ │ │ ├── App.g.cs
│ │ │ ├── App.g.i.cs
│ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ ├── ExampleViews
│ │ │ │ ├── ButtonsExample.baml
│ │ │ │ ├── ButtonsExample.g.cs
│ │ │ │ ├── ButtonsExample.g.i.cs
│ │ │ │ ├── ColorExample.baml
│ │ │ │ ├── ColorExample.g.cs
│ │ │ │ ├── ColorExample.g.i.cs
│ │ │ │ ├── DataGridExamples.baml
│ │ │ │ ├── DataGridExamples.g.cs
│ │ │ │ ├── DataGridExamples.g.i.cs
│ │ │ │ ├── DateExamples.baml
│ │ │ │ ├── DateExamples.g.cs
│ │ │ │ ├── DateExamples.g.i.cs
│ │ │ │ ├── OtherExamples.baml
│ │ │ │ ├── OtherExamples.g.cs
│ │ │ │ ├── OtherExamples.g.i.cs
│ │ │ │ ├── SelectionExamples.baml
│ │ │ │ ├── SelectionExamples.g.cs
│ │ │ │ ├── SelectionExamples.g.i.cs
│ │ │ │ ├── SliderProgressExamples.baml
│ │ │ │ ├── SliderProgressExamples.g.cs
│ │ │ │ ├── SliderProgressExamples.g.i.cs
│ │ │ │ ├── TabControlExamples.baml
│ │ │ │ ├── TabControlExamples.g.cs
│ │ │ │ ├── TabControlExamples.g.i.cs
│ │ │ │ ├── TextExamples.baml
│ │ │ │ ├── TextExamples.g.cs
│ │ │ │ ├── TextExamples.g.i.cs
│ │ │ │ ├── TilesExample.baml
│ │ │ │ ├── TilesExample.g.cs
│ │ │ │ └── TilesExample.g.i.cs
│ │ │ ├── ExampleWindows
│ │ │ │ ├── CleanWindowDemo.baml
│ │ │ │ ├── CleanWindowDemo.g.cs
│ │ │ │ ├── CleanWindowDemo.g.i.cs
│ │ │ │ ├── CustomFlyout.baml
│ │ │ │ ├── CustomFlyout.g.cs
│ │ │ │ ├── CustomFlyout.g.i.cs
│ │ │ │ ├── DynamicFlyout.baml
│ │ │ │ ├── DynamicFlyout.g.cs
│ │ │ │ ├── DynamicFlyout.g.i.cs
│ │ │ │ ├── FlyoutDemo.baml
│ │ │ │ ├── FlyoutDemo.g.cs
│ │ │ │ ├── FlyoutDemo.g.i.cs
│ │ │ │ ├── IconsWindow.baml
│ │ │ │ ├── IconsWindow.g.cs
│ │ │ │ ├── IconsWindow.g.i.cs
│ │ │ │ ├── InteropDemo.baml
│ │ │ │ ├── InteropDemo.g.cs
│ │ │ │ ├── InteropDemo.g.i.cs
│ │ │ │ ├── SizeToContentDemo.baml
│ │ │ │ ├── SizeToContentDemo.g.cs
│ │ │ │ ├── SizeToContentDemo.g.i.cs
│ │ │ │ ├── VSDemo.baml
│ │ │ │ ├── VSDemo.g.cs
│ │ │ │ └── VSDemo.g.i.cs
│ │ │ ├── GeneratedInternalTypeHelper.g.cs
│ │ │ ├── GeneratedInternalTypeHelper.g.i.cs
│ │ │ ├── MainWindow.baml
│ │ │ ├── MainWindow.g.cs
│ │ │ ├── MainWindow.g.i.cs
│ │ │ ├── MetroDemo.csproj.App.config
│ │ │ ├── MetroDemo.csproj.FileListAbsolute.txt
│ │ │ ├── MetroDemo.csproj.GenerateResource.Cache
│ │ │ ├── MetroDemo.csprojResolveAssemblyReference.cache
│ │ │ ├── MetroDemo.exe
│ │ │ ├── MetroDemo.g.resources
│ │ │ ├── MetroDemo_MarkupCompile.cache
│ │ │ ├── MetroDemo_MarkupCompile.i.cache
│ │ │ ├── MetroDemo_MarkupCompile.lref
│ │ │ ├── MetroDemo.pdb
│ │ │ ├── MetroDemo.Properties.Resources.resources
│ │ │ └── Navigation
│ │ │ ├── HomePage.baml
│ │ │ ├── HomePage.g.cs
│ │ │ ├── HomePage.g.i.cs
│ │ │ ├── InterestingPage.baml
│ │ │ ├── InterestingPage.g.cs
│ │ │ └── InterestingPage.g.i.cs
│ │ └── NET45
│ │ └── Debug
│ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ ├── GeneratedInternalTypeHelper.g.i.cs
│ │ ├── Navigation
│ │ │ ├── HomePage.g.i.cs
│ │ │ └── InterestingPage.g.i.cs
│ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│ │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
│ ├── packages.config
│ ├── Properties
│ │ ├── Annotations.cs
│ │ ├── app.manifest
│ │ ├── AssemblyInfo.cs
│ │ ├── DesignTimeResources.xaml
│ │ ├── Resources.Designer.cs
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.cs
│ │ └── Settings.settings
│ ├── RibbonDemo.xaml
│ ├── RibbonDemo.xaml.cs
│ └── ValueConverter
│ └── AlbumPriceIsTooMuchConverter.cs
├── Tools
│ └── GitLink.exe
└── Visual Studio Templates
└── Templates.zip
175 directories, 1068 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论