实例介绍
Fluent.Ribbon是一个库,用于在Windows Presentation Foundation(WPF)中实现类似Office的用户界面。它提供了诸如RibbonTabControl、Backstage、Gallery、QuickAccessToolbar、ScreenTip等控件。
【实例截图】
文件清单
└── Fluent.Ribbon-3885b10324c47c33f1f6fb8a94f9c4290304737a
├── appveyor.yml
├── azure-pipelines.yml
├── build.cmd
├── Build.ps1
├── build.sh
├── Changelog.md
├── Directory.build.props
├── Directory.build.targets
├── Directory.packages.props
├── Doc
│ ├── Features.xlsx
│ ├── Fluent Ribbon Control Suite Walkthrough.docx
│ └── Fluent Ribbon Control Suite Walkthrough.pdf
├── Fluent.Ribbon
│ ├── Adorners
│ │ └── KeyTipAdorner.cs
│ ├── AttachedProperties
│ │ ├── InputControlProperties.cs
│ │ └── RibbonProperties.cs
│ ├── Automation
│ │ └── Peers
│ │ ├── GalleryItemAutomationPeer.cs
│ │ ├── GalleryItemWrapperAutomationPeer.cs
│ │ ├── RibbonAutomationPeer.cs
│ │ ├── RibbonBackstageAutomationPeer.cs
│ │ ├── RibbonBackstageTabControlAutomationPeer.cs
│ │ ├── RibbonBackstageTabItemAutomationPeer.cs
│ │ ├── RibbonButtonAutomationPeer.cs
│ │ ├── RibbonCheckBoxAutomationPeer.cs
│ │ ├── RibbonComboBoxAutomationPeer.cs
│ │ ├── RibbonControlAutomationPeer.cs
│ │ ├── RibbonControlDataAutomationPeer.cs
│ │ ├── RibbonDropDownButtonAutomationPeer.cs
│ │ ├── RibbonGroupBoxAutomationPeer.cs
│ │ ├── RibbonGroupBoxDataAutomationPeer.cs
│ │ ├── RibbonGroupHeaderAutomationPeer.cs
│ │ ├── RibbonHeaderedControlAutomationPeer.cs
│ │ ├── RibbonInRibbonGalleryAutomationPeer.cs
│ │ ├── RibbonQuickAccessToolBarAutomationPeer.cs
│ │ ├── RibbonRadioButtonAutomationPeer.cs
│ │ ├── RibbonScreenTipAutomationPeer.cs
│ │ ├── RibbonSplitButtonAutomationPeer.cs
│ │ ├── RibbonTabControlAutomationPeer.cs
│ │ ├── RibbonTabItemAutomationPeer.cs
│ │ ├── RibbonTabItemDataAutomationPeer.cs
│ │ ├── RibbonTextBoxAutomationPeer.cs
│ │ ├── RibbonTitleBarAutomationPeer.cs
│ │ ├── RibbonToggleButtonAutomationPeer.cs
│ │ └── TwoLineLabelAutomationPeer.cs
│ ├── Collections
│ │ ├── CollectionSyncHelper.cs
│ │ └── ItemCollectionWithLogicalTreeSupport.cs
│ ├── Controls
│ │ ├── ApplicationMenu.cs
│ │ ├── BackstageAdorner.cs
│ │ ├── Backstage.cs
│ │ ├── BackstageTabControl.cs
│ │ ├── BackstageTabItem.cs
│ │ ├── Button.cs
│ │ ├── CheckBox.cs
│ │ ├── ColorGallery.cs
│ │ ├── ComboBox.cs
│ │ ├── ContextMenu.cs
│ │ ├── DropDownButton.cs
│ │ ├── Gallery.cs
│ │ ├── GalleryGroupContainer.cs
│ │ ├── GalleryGroupFilter.cs
│ │ ├── GalleryItem.cs
│ │ ├── GalleryItemPlaceholder.cs
│ │ ├── GalleryPanel.cs
│ │ ├── GroupSeparatorMenuItem.cs
│ │ ├── IconPresenter.cs
│ │ ├── InRibbonGallery.cs
│ │ ├── KeyTip.cs
│ │ ├── MenuItem.cs
│ │ ├── QuickAccessMenuItem.cs
│ │ ├── QuickAccessToolBar.cs
│ │ ├── RadioButton.cs
│ │ ├── ResizeableContentControl.cs
│ │ ├── RibbonContextualGroupsContainer.cs
│ │ ├── RibbonContextualTabGroup.cs
│ │ ├── RibbonControl.cs
│ │ ├── Ribbon.cs
│ │ ├── RibbonGroupBox.cs
│ │ ├── RibbonGroupBoxWrapPanel.cs
│ │ ├── RibbonGroupsContainer.cs
│ │ ├── RibbonGroupsContainerScrollViewer.cs
│ │ ├── RibbonMenu.cs
│ │ ├── RibbonScrollViewer.cs
│ │ ├── RibbonTabControl.cs
│ │ ├── RibbonTabItem.cs
│ │ ├── RibbonTabsContainer.cs
│ │ ├── RibbonTitleBar.cs
│ │ ├── RibbonToolBarControlDefinition.cs
│ │ ├── RibbonToolBarControlGroup.cs
│ │ ├── RibbonToolBarControlGroupDefinition.cs
│ │ ├── RibbonToolBar.cs
│ │ ├── RibbonToolBarLayoutDefinition.cs
│ │ ├── RibbonToolBarRow.cs
│ │ ├── RibbonWindow.cs
│ │ ├── ScreenTip.cs
│ │ ├── SeparatorTabItem.cs
│ │ ├── Spinner.cs
│ │ ├── SplitButton.cs
│ │ ├── StartScreen.cs
│ │ ├── StartScreenTabControl.cs
│ │ ├── StatusBar.cs
│ │ ├── StatusBarItem.cs
│ │ ├── StatusBarMenuItem.cs
│ │ ├── StatusBarPanel.cs
│ │ ├── TextBox.cs
│ │ ├── ToggleButton.cs
│ │ ├── TransitioningControl.cs
│ │ ├── TwoLineLabel.cs
│ │ ├── UniformGridWithItemSize.cs
│ │ └── WindowSteeringHelperControl.cs
│ ├── Converters
│ │ ├── ApplicationMenuRightScrollViewerExtractorConverter.cs
│ │ ├── ColorToSolidColorBrushConverter.cs
│ │ ├── CornerRadiusConverter.cs
│ │ ├── EqualsToVisibilityConverter.cs
│ │ ├── ExtractLeftRightFromThicknessConverter.cs
│ │ ├── IconConverter.cs
│ │ ├── InverseBoolConverter.cs
│ │ ├── InvertNumericConverter.cs
│ │ ├── IsNullConverter.cs
│ │ ├── ObjectToImageConverter.cs
│ │ ├── RibbonGroupBoxStateDefinitionConverter.cs
│ │ ├── SizeDefinitionConverter.cs
│ │ ├── SpinnerTextToValueConverter.cs
│ │ ├── StaticConverters.cs
│ │ └── ThicknessConverter.cs
│ ├── Data
│ │ ├── KeyTipInformation.cs
│ │ ├── KeyTipPressedResult.cs
│ │ ├── RibbonControlSizeDefinition.cs
│ │ ├── RibbonGroupBoxStateDefinition.cs
│ │ └── RibbonStateStorage.cs
│ ├── Effects
│ │ └── GrayscaleEffect.cs
│ ├── Enumerations
│ │ ├── IconSize.cs
│ │ ├── RibbonControlSize.cs
│ │ └── RibbonGroupBoxState.cs
│ ├── Extensibility
│ │ ├── IKeyTipInformationProvider.cs
│ │ └── IRibbonSizeChangedSink.cs
│ ├── Extensions
│ │ ├── AutomationPeerExtensions.cs
│ │ ├── DispatcherExtensions.cs
│ │ ├── DoubleExtensions.cs
│ │ ├── FrameworkElementExtensions.cs
│ │ ├── ICommandSourceExtensions.cs
│ │ ├── IListExtensions.cs
│ │ ├── ItemContainerGeneratorExtensions.cs
│ │ ├── SelectorAutomationPeerExtensions.cs
│ │ └── UIElementExtensions.cs
│ ├── Fluent.Ribbon.csproj
│ ├── GlobalSuppressions.cs
│ ├── Helpers
│ │ ├── ColorHelpers
│ │ │ ├── ColorBlending.cs
│ │ │ ├── ColorBlendMode.cs
│ │ │ ├── ColorPalette.cs
│ │ │ ├── ColorPaletteEntry.cs
│ │ │ ├── ColorScale.cs
│ │ │ ├── ColorScaleInterpolationMode.cs
│ │ │ ├── ColorScaleStop.cs
│ │ │ ├── ColorTypes.cs
│ │ │ ├── ColorUtils.cs
│ │ │ └── MathUtils.cs
│ │ ├── DoubleHelper.cs
│ │ ├── FrameworkHelper.cs
│ │ ├── ItemsControlHelper.cs
│ │ ├── LogicalChildSupportHelper.cs
│ │ ├── PoupHelper.cs
│ │ ├── ToggleButtonHelper.cs
│ │ └── WindowSteeringHelper.cs
│ ├── IDropDownControl.cs
│ ├── IHeaderedControl.cs
│ ├── IKeyTipedControl.cs
│ ├── ILargeIconProvider.cs
│ ├── ILogicalChildSupport.cs
│ ├── IMediumIconProvider.cs
│ ├── Internal
│ │ ├── AccessTextHelper.cs
│ │ ├── CommandHelper.cs
│ │ ├── Constants.cs
│ │ ├── DoubleUtil.cs
│ │ ├── FocusWrapper.cs
│ │ ├── ItemContainerGeneratorAction.cs
│ │ ├── KeyEventUtility.cs
│ │ ├── KnownBoxes
│ │ │ ├── BooleanBoxes.cs
│ │ │ ├── DoubleBoxes.cs
│ │ │ ├── IconSizeBoxes.cs
│ │ │ ├── IntBoxes.cs
│ │ │ ├── StringBoxes.cs
│ │ │ └── VisibilityBoxes.cs
│ │ ├── ScopeGuard.cs
│ │ ├── SelectorHelper.cs
│ │ ├── SizeConstants.cs
│ │ ├── TypeHelper.cs
│ │ ├── UIHelper.cs
│ │ └── WhenLoaded.cs
│ ├── IRibbonControl.cs
│ ├── IRibbonStateStorage.cs
│ ├── IRibbonWindow.cs
│ ├── IScalableRibbonControl.cs
│ ├── ISimplifiedRibbonControl.cs
│ ├── ISimplifiedStateControl.cs
│ ├── IToggleButton.cs
│ ├── Localization
│ │ ├── Languages
│ │ │ ├── Arabic.cs
│ │ │ ├── Azerbaijani.cs
│ │ │ ├── Bulgarian.cs
│ │ │ ├── Catalan.cs
│ │ │ ├── Chinese.cs
│ │ │ ├── Czech.cs
│ │ │ ├── Danish.cs
│ │ │ ├── Dutch.cs
│ │ │ ├── English.cs
│ │ │ ├── Estonian.cs
│ │ │ ├── Finnish.cs
│ │ │ ├── French.cs
│ │ │ ├── German.cs
│ │ │ ├── Greek.cs
│ │ │ ├── Hebrew.cs
│ │ │ ├── Hungarian.cs
│ │ │ ├── Italian.cs
│ │ │ ├── Japanese.cs
│ │ │ ├── Korean.cs
│ │ │ ├── Lithuanian.cs
│ │ │ ├── Norwegian_Bokm唋.cs
│ │ │ ├── Norwegian.cs
│ │ │ ├── Norwegian_Nynorsk.cs
│ │ │ ├── Persian.cs
│ │ │ ├── Polish.cs
│ │ │ ├── Portuguese_Brazil.cs
│ │ │ ├── Portuguese.cs
│ │ │ ├── Romanian.cs
│ │ │ ├── Russian.cs
│ │ │ ├── Sinhala.cs
│ │ │ ├── Slovak.cs
│ │ │ ├── Slovenian.cs
│ │ │ ├── Spanish.cs
│ │ │ ├── Swedish.cs
│ │ │ ├── Turkish.cs
│ │ │ ├── Ukrainian.cs
│ │ │ └── Vietnamese.cs
│ │ ├── RibbonLocalizationAttribute.cs
│ │ ├── RibbonLocalizationBase.cs
│ │ └── RibbonLocalization.cs
│ ├── Metro
│ │ ├── Behaviours
│ │ │ ├── StylizedBehaviorsCollection.cs
│ │ │ └── StylizedBehaviors.cs
│ │ └── Controls
│ │ └── WindowCommands.cs
│ ├── NativeMethods.json
│ ├── NativeMethods.txt
│ ├── PInvoke.cs
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── RibbonCommands.cs
│ ├── Services
│ │ ├── ContextMenuService.cs
│ │ ├── KeyTipService.cs
│ │ ├── PopupService.cs
│ │ └── ToolTipService.cs
│ ├── StyleSelectors
│ │ ├── ApplicationMenuItemContainerStyleSelector.cs
│ │ ├── BackstageTabControlItemContainerStyleSelector.cs
│ │ ├── HeaderApplicationMenuItemItemContainerStyleSelector.cs
│ │ └── SplitedApplicationMenuItemItemContainerStyleSelector.cs
│ ├── TemplateSelectors
│ │ └── RibbonGroupBoxHeaderTemplateSelector.cs
│ ├── Themes
│ │ ├── Common.xaml
│ │ ├── Controls
│ │ │ ├── ApplicationMenuItem.xaml
│ │ │ ├── ApplicationMenu.xaml
│ │ │ ├── BackstageControls.xaml
│ │ │ ├── BackstageTabControl.xaml
│ │ │ ├── BackstageTabItem.xaml
│ │ │ ├── Backstage.xaml
│ │ │ ├── Button.xaml
│ │ │ ├── CheckBox.xaml
│ │ │ ├── ColorGallery.xaml
│ │ │ ├── ComboBoxItem.xaml
│ │ │ ├── ComboBox.xaml
│ │ │ ├── DropDownButton.xaml
│ │ │ ├── FocusStyles.xaml
│ │ │ ├── GalleryGroupContainer.xaml
│ │ │ ├── GalleryItem.xaml
│ │ │ ├── Gallery.xaml
│ │ │ ├── InRibbonGallery.xaml
│ │ │ ├── KeyTip.xaml
│ │ │ ├── MenuItem.xaml
│ │ │ ├── MenuSeparator.xaml
│ │ │ ├── Menu.xaml
│ │ │ ├── QuickAccessToolbar.xaml
│ │ │ ├── RadioButton.xaml
│ │ │ ├── ResizeableContentControl.xaml
│ │ │ ├── RibbonContextualTabGroup.xaml
│ │ │ ├── RibbonGroupBox.xaml
│ │ │ ├── RibbonMenu.xaml
│ │ │ ├── RibbonScrollViewer.xaml
│ │ │ ├── RibbonSeparator.xaml
│ │ │ ├── RibbonTabControl.xaml
│ │ │ ├── RibbonTabItem.xaml
│ │ │ ├── RibbonTextBox.xaml
│ │ │ ├── RibbonTitleBar.xaml
│ │ │ ├── RibbonToolBarControlGroup.xaml
│ │ │ ├── RibbonToolBar.xaml
│ │ │ ├── Ribbon.xaml
│ │ │ ├── ScreenTip.xaml
│ │ │ ├── ScrollBar.xaml
│ │ │ ├── SeparatorTabItem.xaml
│ │ │ ├── Slider.xaml
│ │ │ ├── Spinner.xaml
│ │ │ ├── SplitButton.xaml
│ │ │ ├── StartScreenTabControl.xaml
│ │ │ ├── StartScreen.xaml
│ │ │ ├── StatusBar.xaml
│ │ │ ├── ToggleButton.xaml
│ │ │ ├── TransitioningControl.xaml
│ │ │ ├── TwoLineLabel.xaml
│ │ │ └── WindowCommands.xaml
│ │ ├── Converters.xaml
│ │ ├── Effects
│ │ │ ├── Grayscale.fx
│ │ │ └── Grayscale.ps
│ │ ├── Generic.xaml
│ │ ├── Images.xaml
│ │ ├── RibbonWindow.xaml
│ │ └── Themes
│ │ ├── GeneratorParameters.json
│ │ └── Theme.Template.xaml
│ └── Theming
│ └── RibbonLibraryThemeProvider.cs
├── Fluent.Ribbon.ruleset
├── Fluent.Ribbon.Showcase
│ ├── Adorners
│ │ └── SimpleControlAdorner.cs
│ ├── App.config
│ ├── app.manifest
│ ├── App.xaml
│ ├── App.xaml.cs
│ ├── Commanding
│ │ ├── IRelayCommand.cs
│ │ └── RelayCommand.cs
│ ├── Converters
│ │ ├── BackgroundImageViewportConverter.cs
│ │ └── UniqueGroupNameConverter.cs
│ ├── Fluent.Ribbon.Showcase.csproj
│ ├── FodyWeavers.xml
│ ├── FodyWeavers.xsd
│ ├── GlobalSuppressions.cs
│ ├── Helpers
│ │ ├── TemplateCollection.cs
│ │ └── ThemeHelper.cs
│ ├── Icons
│ │ └── App.ico
│ ├── Images
│ │ ├── banner.png
│ │ ├── BlueLarge.png
│ │ ├── Blue.png
│ │ ├── Bold.png
│ │ ├── Box.png
│ │ ├── BrownLarge.png
│ │ ├── Brown.png
│ │ ├── ChangeCase.png
│ │ ├── ClearFormatting.png
│ │ ├── FontColor.png
│ │ ├── FormatPainter.png
│ │ ├── GalleryLarge.png
│ │ ├── GrayLarge.png
│ │ ├── Gray.png
│ │ ├── GreenLarge.png
│ │ ├── Green.png
│ │ ├── GrowFont.png
│ │ ├── Italic.png
│ │ ├── OrangeLarge.png
│ │ ├── Orange.png
│ │ ├── PasteFormating.png
│ │ ├── PasteImage.png
│ │ ├── PasteSourceFormating.png
│ │ ├── PasteTextOnly.png
│ │ ├── PasteText.png
│ │ ├── PinkLarge.png
│ │ ├── Pink.png
│ │ ├── RedLarge.png
│ │ ├── Red.png
│ │ ├── SampleImageForScreenTip.png
│ │ ├── ShrinkFont.png
│ │ ├── Strikethrough.png
│ │ ├── Subscript.png
│ │ ├── Superscript.png
│ │ ├── Test16.png
│ │ ├── Test32.png
│ │ ├── TextEffects.png
│ │ ├── TextHighlightColor.png
│ │ ├── Underline.png
│ │ ├── VectorIcons.xaml
│ │ ├── YellowLarge.png
│ │ └── Yellow.png
│ ├── ImagesViewer.xaml
│ ├── ImagesViewer.xaml.cs
│ ├── MahMetroWindow.xaml
│ ├── MahMetroWindow.xaml.cs
│ ├── MinimalWindowSample.xaml
│ ├── MinimalWindowSample.xaml.cs
│ ├── Program.cs
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── RegularWindow.xaml
│ ├── RegularWindow.xaml.cs
│ ├── ResourcesView.xaml
│ ├── ResourcesView.xaml.cs
│ ├── RibbonWindowColorized.xaml
│ ├── RibbonWindowColorized.xaml.cs
│ ├── RibbonWindowWithBackgroundImage.xaml
│ ├── RibbonWindowWithBackgroundImage.xaml.cs
│ ├── RibbonWindowWithoutRibbon.xaml
│ ├── RibbonWindowWithoutRibbon.xaml.cs
│ ├── RibbonWindowWithoutVisibleRibbon.xaml
│ ├── RibbonWindowWithoutVisibleRibbon.xaml.cs
│ ├── SimplifiedRibbonWindow.xaml
│ ├── SimplifiedRibbonWindow.xaml.cs
│ ├── TemplateSelectors
│ │ └── DynamicTemplateSelector.cs
│ ├── TestContent.xaml
│ ├── TestContent.xaml.cs
│ ├── TestIcon.xaml
│ ├── TestIcon.xaml.cs
│ ├── TestWindow.xaml
│ ├── TestWindow.xaml.cs
│ └── ViewModels
│ ├── ColorViewModel.cs
│ ├── FontsViewModel.cs
│ ├── GalleryItemViewModel.cs
│ ├── GallerySampleDataItemViewModel.cs
│ ├── GalleryViewModel.cs
│ ├── IssueRepros
│ │ └── ThemeManagerFromThread.cs
│ ├── IssueReprosViewModel.cs
│ ├── MainViewModel.cs
│ └── ViewModel.cs
├── Fluent.Ribbon.sln
├── Fluent.Ribbon.sln.DotSettings
├── Fluent.Ribbon.Tests
│ ├── Adorners
│ │ └── KeyTipAdornerTests.cs
│ ├── AssemblySetup.cs
│ ├── Automation
│ │ └── Peers
│ │ └── RibbonInRibbonGalleryAutomationPeerTests.cs
│ ├── Collections
│ │ ├── CollectionSyncHelperTests.cs
│ │ └── ItemCollectionWithLogicalTreeSupportTests.cs
│ ├── Controls
│ │ ├── BackstageTests.cs
│ │ ├── IconPresenterTests.cs
│ │ ├── InRibbonGalleryTests.cs
│ │ ├── QuickAccessToolBarTests.cs
│ │ ├── RibbonGroupBoxTests.cs
│ │ ├── RibbonGroupBoxWrapPanelTests.cs
│ │ ├── RibbonTabsContainerTests.cs
│ │ ├── RibbonTests.cs
│ │ ├── RibbonTitleBarTests.cs
│ │ ├── SelectionTests.cs
│ │ └── SplitButtonTests.cs
│ ├── Converters
│ │ ├── InverseBoolConverterTests.cs
│ │ └── ObjectToImageConverterTests.cs
│ ├── Fluent.Ribbon.Tests.csproj
│ ├── GlobalSuppressions.cs
│ ├── Helper
│ │ ├── ReflectionHelper.cs
│ │ └── UIHelper.cs
│ ├── Integration
│ │ └── InRibbonGalleryIntegrationTests.cs
│ ├── Internal
│ │ ├── ScopeGuardTests.cs
│ │ └── WhenLoadedTests.cs
│ ├── Localization
│ │ ├── RibbonLocalizationBaseTests.cs
│ │ ├── RibbonLocalizationGenerator.cs
│ │ └── RibbonLocalizationTranslator.cs
│ ├── Misc
│ │ └── LogicalTreeTests.cs
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── Services
│ │ └── KeyTipServiceTests.cs
│ ├── TestClasses
│ │ ├── IConverterExtensions.cs
│ │ └── TestRibbonWindow.cs
│ ├── ThemeManager
│ │ └── ThemeManagerTests.cs
│ └── Themes
│ ├── MouseOverAndKeyboardFocusTriggerTest.cs
│ └── UpdateGeneratorParametersTest.cs
├── GitVersion.yml
├── global.json
├── Images
│ ├── Appveyor_logo.svg
│ ├── banner.png
│ ├── cake-medium.png
│ ├── Fluent.png
│ ├── icon_ReSharper.png
│ ├── Logo
│ │ ├── Logo_128x128.png
│ │ ├── Logo_16x16.png
│ │ ├── Logo_24x24.png
│ │ ├── Logo_256x256.png
│ │ ├── Logo_32x32.png
│ │ ├── Logo_48x48.png
│ │ ├── Logo_64x64.png
│ │ └── Logo_96x96.png
│ ├── Ribbon
│ │ ├── ApplicationMenu.ai
│ │ ├── Checked.ai
│ │ ├── Copy.ai
│ │ ├── Cut.ai
│ │ ├── DefaultSmallIcon.ai
│ │ ├── DefaultSmallIcon.design
│ │ ├── DialogLauncher.ai
│ │ ├── Help.ai
│ │ ├── MoreColors.ai
│ │ ├── Paste.ai
│ │ ├── QuickAccessToolbarDropDown.ai
│ │ ├── QuickAccessToolbarExtender.ai
│ │ ├── RibbonCollapse.ai
│ │ ├── RibbonExpand.ai
│ │ ├── RibbonPin.ai
│ │ └── Warning.ai
│ ├── Screenshots
│ │ ├── Office 2010 - Black - Backstage.png
│ │ ├── Office 2010 - Blue - Backstage.png
│ │ ├── Office 2010 - Silver - Backstage.png
│ │ ├── Office 2010 - Silver - Collapsed Group.png
│ │ ├── Office 2010 - Silver - ColorGallery.png
│ │ ├── Office 2010 - Silver - ComboBox in QuickAccess.png
│ │ ├── Office 2010 - Silver - Filter in Gallery.png
│ │ ├── Office 2010 - Silver - Gallery in QuickAccess.png
│ │ ├── Office 2010 - Silver - Gallery.png
│ │ ├── Office 2010 - Silver - KeyTips.png
│ │ ├── Office 2010 - Silver - RTL.png
│ │ ├── Office 2013 - White - Backstage.png
│ │ ├── Office 2013 - White.png
│ │ ├── Windows 8 - White - Backstage.png
│ │ └── Windows 8 - White.png
│ └── Showcase.gif
├── License.txt
├── NuGet.Config
├── README.md
├── ReferenceData
│ ├── vCurrentResourceKeys.txt
│ └── vNextResourceKeys.txt
├── Settings.XAMLStyler
└── Shared
├── GlobalAssemblyInfo.cs
└── SharedKey.snk
67 directories, 500 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论