-
- Dropped support for .NET 5.0 and .NET 3.1. Added .NET 6.0 and .NET 8.0 instead
- Aligned theming with current office versions
Backstage
- Removed default
MinWidth
on the button responsible for opening - Saving and restoring window sizes were removed
- Removed default
BackstageTabControl
IsWindowSteeringHelperEnabled
andSelectedContentMargin
were removed
BackstageTabItem
- Selection now happens on left mouse button down instead of up
- Selection now happens on focus retrieval instead of
Space
orEnter
key press
RibbonContextualTabGroup
- Width is now always the width of it's containing tabs
RibbonGroupBox
- Changed default
Padding
from0
to0 4 0 0
- Removed method
ClearCache
- Changed default
RibbonTabItem
- Changed default
HeaderPadding
from8 5 8 5
to9 7 9 7
.
Padding
is gradually increased/decreased when the available space changes.
Down to a minimum of5
for left/right. - Replaced
IsSeparatorVisible
bySeparatorOpacity
- Changed default
Padding
from0
to4 0 4 0
Padding
is now forwarded to theMargin
of the content- Active border thickness (underline) can be changed by overwriting
Fluent.Ribbon.Values.RibbonTabItem.Active.BorderThickness
- Default
HeaderTemplate
now contains twoTextBlock
- Changed default
RibbonTabControl
PART_SelectedContentPresenter
was renamed toPART_SelectedContent
and can be of typeFrameworkElement
.
The default template uses the newTransitioningControl
.
The used transition can be changed by overwriting the resourceFluent.Ribbon.Values.RibbonTabControl.Content.Transition
.DefaultContentGapHeight
changed from1
to3
DefaultContentHeight
changed from94
to100
- Corner radius for item display can be changed by
Fluent.Ribbon.Values.RibbonTabControl.Content.CornerRadius
- Drop shadow can be changed by overwriting
Fluent.Ribbon.Values.RibbonTabControl.Content.DropShadowEffect
- Content margin can be changed by overwriting
Fluent.Ribbon.Values.RibbonTabControl.Content.Margin
RibbonTitleBar
- Changed default
HideContextTabs
fromfalse
totrue
- Changed default
RibbonWindow
- Default
Background
is nowFluent.Ribbon.Brushes.RibbonWindow.Background
- Default
ScreenTip
- Type for
Image
was changed fromImageSource
toobject
to allow any image content - Type for
Text
was changed fromstring
toobject
to allow rich content (see #716)
- Type for
DropDownButton
,SplitButton
andApplicationMenu
don't generateMenuItem
butContentPresenter
as containers.
This provides more flexibility and also fixes the nestedMenuItem
issues.- Removed default style assignment for
ScrollBar
- Themes
- All
- Quite a few colors/brushes changed
- Dark
Fluent.Ribbon.Colors.White
changed from#FF252525
to#FF000000
- All
-
- Added
TabItemForeground
toRibbonContextualTabGroup
- Added resource
Fluent.Ribbon.Brushes.RibbonWindow.Background
- Added
TransitioningControl
to animate content changes - Added
IsBackstageOrStartScreenOpen
onRibbon
- #716 - Unable to use rich content for ScreenTip
- Changed text from
string
toobject
and addedTextTemplate
toScreenTip
to support this
- Changed text from
- #719 - Make StatusBarItems always visible
- Added
IsCheckable
toStatusBarItem
which defaults totrue
- Added
RibbonProperties
- Added
PressedBackground
(used inFluent.Ribbon.Styles.WindowCommands.CaptionButton
etc.) - Added
CornerRadius
(used forRibbonTabControl
,Fluent.Ribbon.Templates.ScrollButton
etc.)
- Added
- Selecting an
RibbonTabItem
brings it into view now - Improved keyboard navigation inside
BackstageTabControl
- Improved mouse wheel selection on
RibbonTabControl
DropDownButton
- Added support for
UsesItemContainerTemplate
andItemContainerTemplateSelector
- Added support for
MenuItem
- Added support for
UsesItemContainerTemplate
andItemContainerTemplateSelector
IsSplit
is now automatically set by a style trigger. IfCommand
is not null andHasItems
is true.
- Added support for
RibbonMenu
- Added support for
UsesItemContainerTemplate
andItemContainerTemplateSelector
- Added support for
- Added
-
- #1162 - Maximum dropdown height is not screen aware
- #1196 - GroupName causes the selected ToggleButton to no longer trigger the click event
- Value of
HideContextTabs
are now properly restored whenBackstage
is closed RibbonTitleBar
- Fixed rendering when
HideContextTabs
istrue
- Rendering now updates when QAT is shown/hidden
- Fixed rendering when
- Opening
Backstage
/StartScreen
now properly sets the focus to it's content (BackstageTabControl
,StartScreenTabControl
etc.) - Fixed mouse over for
Fluent.Ribbon.Templates.WindowCommands.CaptionButton
- Fixed selection events for
BackstageTabControl
,BackstageTabItem
,GalleryItem
,InRibbonGallery
,RibbonTabControl
andRibbonTabItem
-
- Simplified state was not updated when items changed
- #1165 - ScreenTip is not DPI aware
- #1183 - MenuItems, having a submenu, do not stay highlighted when MenuItem from the submenu is highlighted
- #1185 - LauncherIcon not rendered correctly and items in QAT can be removed from QAT in it's popup
- #1191 - Popup of DropDownButton/SplitButton has unwanted MinHeight
-
- Performance of measuring (and thus rendering) of
RibbonTabItem
(and it's contents) was improved by reducing the amount of measures required. Most of the time there should only be one or two measure calls when switching tabs, compared to six or eight in case of the showcase application. This is mostly achieved by getting rid of internal caching. The caching turned out to be more expensive than not caching at all. - Added
RibbonProperties.CustomIconSize
as an attached property. This is used inside control templates to setCustomSize
ofIconPresenter
. - Default value of
IsHitTestVisible
is nowfalse
onIconPresenter
. - #1177 - RibbonComboBox cannot be customized based on the original RibbonComboBox style (thanks @nishy2000)
- #1180 - Padding and BorderBrush of the gallery control do not work (thanks @nishy2000)
- Performance of measuring (and thus rendering) of
-
- #1165 - ScreenTip is not DPI aware
-
- #1125 - BackStage Back Button doesn't have an accessibility text.
-
- #1133 - Fixing binding path to attached property for simplified ControlTemplates (thanks @dcm99)
- #1134 - Selected Tab on first render has a black border
- #1135 - Black line between Ribbon and Window (when using a colorful theme)
- #1125 - BackStage Back Button doesn't have an accessibility text.
- #1151 - ComboBox Popup MinWidth too large
- #1152 - Using ObjectToImageConverter via StaticResource raises an exception (thanks @nishy2000)
-
- Dropped support for .NET 4.5.2. The lowest support .NET version is now 4.6.2.
- Resizing popups should now work properly where supported (ComboBox, DropDownButton, InRibbonGallery, MenuItem, SplitButton).
Templates now use the new specializedResizeableContentControl
to enable this.
Resize code was moved from single controls to the new control. - Updated ControlzEx to version 6.
RibbonWindow
now inherits fromWindowChromeWindow
GlowBrush
andNonActiveGlowBrush
are now namedGlowColor
andNonActiveGlowColor
and are both of typeColor
instead ofBrush
- Default value for
BorderThickness
changed from1
to0
- PDBs are now embedded
- Removed
IsMinimized
andIsOpen
fromRibbonTabItem
HeaderTemplate
andHeaderTemplateSelector
were added toIHeaderedControl
- Various controls (
Button
,ComboBox
etc.) now useHeaderTemplate
to format their header instead of usingTwoLineLabel
directly - #948 - Minimize button misplaced
Minimize button was moved to the right hand side of the toolbar in the tab item row - All resources now have the prefix
Fluent.Ribbon.
.
This means that nearly all resources got renamed. InputWidth
was converted from an instance proptery to an attached property inInputControlProperties
-
- #1035 - Binding failures from within RibbonTabItem on IsMinimized & IsOpen
- #1041 - MenuItem CreateQuickAccessItem should create ToggleButton (thanks @andersforsgren)
- #1070 - Separators no longer shown in Backstage (related to #936)
- #1081 - Fix InvalidOperationException thrown when switching focus from editable ComboBox to Hyperlink (thanks @orrindeng)
- #1087 - Multiple levels of menu items of DropDownButton behaves not well (thanks @orrindeng)
- #1092 - Fix on some computers, the gallery layout is not good (thanks @orrindeng)
- #1095 - Add missing localizations for the danish language (thanks @cbra-caa)
- #1096 - BackstageTabItem tooltip shows on content hover (thanks @cbra-caa)
- #1098 - Collapsed groupboxes are not keyboard accessible (thanks @cbra-caa)
- #1101 - Backstage button tooltip shows on active backstage (thanks @cbra-caa)
- #1103 - Backstage.IsOpen is not bindable (thanks @cbra-caa)
- #1107 - Child sizes are not updated when user switches between Classic/Simplified Ribbon while Ribbon is minimized
- #1114 - Fix combobox can't open dropdown when the editable textbox of it has the focus (thanks @orrindeng)
- #1115 - Update Russian translation (thanks @Blueberryy)
- #1116 - Accessibility: Ribbon Display Options are read as "DropDown Button"
- #1117 - Accessibility: BackButton has low contrast
- #1125 - BackStage Back Button doesn't have an accessibility text.
- #1129 - Popup has been detached by the parent control
-
- #1026 - Translate some Chinese cases (thanks @leixao)
- #1034 - Enable TextTrimming in Button Header
To enable thisHeaderTemplate
andHeaderTemplateSelector
were added toIHeaderedControl
. - #1048 - DismissOnClickOutside property added to DropDownButton (thanks @MuhammadSulaiman001)
- #1049 - IsDisplayOptionsButtonVisible property is added to RibbonTabControl (thanks @zui-jiu-zhou)
- #1058 - Add option to use legacy/office-style mouse wheel tab shifting (thanks @andersforsgren)
- #1091 - Image Resource Viewer (thanks @avalanchus)
- #1112 - Enhanced FocusVisual for various controls (thanks @cbra-caa)
-
- #1014 - Ribbon menu not fully displayed after minimized
IconPresenter
must not be focusable- Fixed mouse over and keyboard focus colors of ComboBox
-
- #1004 - Detach from KeyDown event to match code in Show()
-
- #999 - Window object not being recycled after ribbon window is closed
-
- #870 - Add .NET 5 and .NET Core 3.1 and remove .NET Core 3.0
Support for .NET Core 3.0 was removed and support for .NET Core 3.1 and .NET 5.0 was added - Increasing ControlzEx dependency version to >= 5
- #948 - Minimize button misplaced
Minimize button is moved to the right hand side of it's parent container.
That means custom toolbar items are not moving the button further left anymore.
- #870 - Add .NET 5 and .NET Core 3.1 and remove .NET Core 3.0
The following resources were added, renamed or removed ("---" indicates added when in column "Old" and removed when in column "New"):
Click here to show the list of renamed and removed things
Old | New |
---|---|
Fluent.Ribbon.Brushes.Images.RibbonCollapse | --- |
Fluent.Ribbon.Brushes.Images.RibbonExpand | --- |
Fluent.Ribbon.Brushes.Images.RibbonPin | --- |
Fluent.Ribbon.Images.RibbonCollapse | --- |
Fluent.Ribbon.Images.RibbonExpand | --- |
Fluent.Ribbon.Images.RibbonPin | --- |
Fluent.Ribbon.Resources.RibbonTabControl.ExpandScreenTip | --- |
Fluent.Ribbon.Resources.RibbonTabControl.MinimizeScreenTip | --- |
Fluent.Ribbon.Resources.RibbonTabControl.SwitchScreenTip | --- |
Fluent.Ribbon.Styles.RibbonTabControl.MinimizeToggleButton | --- |
Fluent.Ribbon.Templates.RibbonTabControl.MinimizeToggleButton | --- |
--- | Fluent.Ribbon.Brushes.Images.RibbonDisplayOptions |
--- | Fluent.Ribbon.Images.RibbonDisplayOptions |
--- | Fluent.Ribbon.Resources.RibbonTabControl.DisplayOptionsScreenTip |
--- | Fluent.Ribbon.Styles.RibbonTabControl.DisplayOptionsButton |
--- | Fluent.Ribbon.Templates.Button.Simplified |
--- | Fluent.Ribbon.Templates.CheckBox.Simplified |
--- | Fluent.Ribbon.Templates.ComboBox.Simplified |
--- | Fluent.Ribbon.Templates.DropDownButton.Simplified |
--- | Fluent.Ribbon.Templates.InRibbonGallery.ToggleButton.Simplified |
--- | Fluent.Ribbon.Templates.MenuItem.HeaderOnly |
--- | Fluent.Ribbon.Templates.RadioButton.Simplified |
--- | Fluent.Ribbon.Templates.RibbonGroupBox.Simplified |
--- | Fluent.Ribbon.Templates.RibbonTabControl.DisplayOptionsButton |
--- | Fluent.Ribbon.Templates.RibbonTextBox.Simplified |
--- | Fluent.Ribbon.Templates.Spinner.Simplified |
--- | Fluent.Ribbon.Templates.SplitButton.Simplified |
--- | Fluent.Ribbon.Templates.SplitButton.ToggleButton.Simplified |
--- | Fluent.Ribbon.Templates.ToggleButton.Simplified |
-
- #845 - QuickAccessToolBar issues in Colorful variant
- #894 - Cannot use scroll wheel in fluent:ApplicationMenu since Fluent.Ribbon 7
- #900 - Application freezes when opening collapsed groups with galleries
- #908 - KeyTipService should dismiss keytips if the first key does not match any keytips
- #918 - Custom color does not reset color gallery selection state
- #919 - Ribbon content is not confined in Windows dimensions
- #925 - Controls might not be shown when using default layout of RibbonToolbar (thanks @nishy2000)
- #927 - Size value calculated by RibbonGroupBox is not reflected in RibbonControls in Panel control (thanks @nishy2000)
- #929 - SizeDefinition property of RibbonControls in RibbonToolBar is not reflected in layout (thanks @nishy2000)
- #941 - LauncherIcon and LauncherText of RibbonGroupBox are not applied to the appearance (thanks @nishy2000)
- #943 - The LauncherIcon in the RibbonGroupBox added to QuickAccess will always be shown (thanks @nishy2000)
- #952 - Help with IsSelectionRequired property setting on "File" tab for accessibility purposes
- #954 - Adding an InputBinding for Alt+Up or Alt+Down results in extra character (thanks @dgosbell)
- #961 - Fluent.Button Header Binding not visible
- #973 - Wrong reference to ControlzEx
- #989 - QuickAccessToolbar - More Commands leaves open empty Popup when overflow gets empty
-
- #924 - Feature simplified ribbon (thanks @nishy2000)
- #935 - Support MediumIcon (24x24) size in RibbonGroupBox (thanks @nishy2000)
- #936 - Add ability to vertically align items in Backstage
You have to setVerticalAlignment="Bottom"
,DockPanel.Dock="Bottom"
and if you want to align multiple items at the bottom invert their order (because of howDockPanel
works). - Added automation peers for
InRibbonGallery
andGalleryItem
- Improved keyboard navigation for
InRibbonGallery
-
- #821 - Different visual of menu item and submenu item
- #823 - Gallery item content hidden when mouse pressed
- #825 - CLS compliance
- #830 - When a window is set to automatically resize to its content, when its title is set in code, it disappears
- #834 - InRibbonGallery resizing issue when changing
Visibility
- #837 - InRibbonGallery Property MinItemsInDropDownRow not considered
- #838 - InRibbonGallery changes into DropDownButton after DropDown is opened and closed
- #840 - Ribbon does not scroll anymore
- #848 - Colorful-Theme and Fullscreen Issue
- #849 - QuickAccessToolBar not editable anymore (thanks @chrfin)
- #851 - Tab KeyTips Are Shown Together With Tab-Item KeyTips (different to 7.0.0)
- #855 - Method Fluent.StartScreen.Show lacks documentation return value
- #856 - RibbonTabItem.IsSelected is briefly set to true for a tab that's not selected anymore, when a modal dialog is closed.
-
- Support for .NET 4.5 was removed and support for .NET 4.5.2 was added
- #811 -
ThemeManager
was replaced byThemeManager
from "ControlzEx".
You now have to useThemeManager.Current
instead of the static classThemeManager
.
Because of this you now got more automatic and manual sync options.
Syncing now, optionally, includes the current accent color from Windows.
You can now generate themes at runtime more easily.
The documentation for Fluent.Ribbon can be found at https://fluentribbon.github.io/documentation/styles_since_8
The documentation forThemeManager
can be found at https://github.com/ControlzEx/ControlzEx/blob/develop/Wiki/ThemeManager.md Colorful
was removed from the available base colors for themes and was changed to a theme "variant".
Due to this change you now have a lot more themes to choose from.- The built in state storage will no longer persist the state of quick access items.
Details can be found in #810
-
- #745 - SplitButton.IsEnabled based on Command.CanExecute?
- #772 - Backstage & Keyboard navigation
- #782 - Using MahApps IconPacks for BackstageTabItem's icon
- #786 - InRibbonGallery: Dynamic ItemWidth / use translated Text in items
- #788 - Maximize icon is incorrectly drawn on high-dpi displays
- #789 - Opening gallery messes up InRibbonGallery resizing.
- #791 - Problem with dynamic items in InRibbonGallery
- #795 - Check mark of menuitem not visible
- #798 - The elements in the ribbon use ElementName = xxx to bind the data and cannot find the xxx element
- #819 - Is there a way to disable default tooltip when RibbonGroupBox is disabled?
-
- #804 - Ribbon Window's Icon Not Centered
AddedVerticalIconAlignment
toRibbonWindow
- #804 - Ribbon Window's Icon Not Centered
-
- #745 - SplitButton.IsEnabled based on Command.CanExecute?
- #755 - ComboBox.Height fixed at 22
The height setting was moved from the template to the style. - #758 - Auto menu expanding not working for MenuItems with ItemSource binding
- #765 - InRibbonGallery Resizing Issues
- #766 - Resizing of InRibbonGallery in a DataTemplate does not work
- #768 - Accessibility Insights: "An onscreen element must not have a null"
- #769 - GalleryPanel does not resize properly on apply of filter
- #770 - Cannot left align the content in InRibbonGallery
-
- Many automation peers have been added and improved
- #775 - First underscore missing in drop down menu header text
You can now control whether the ribbonMenuItem
handles access keys or not by settingRecognizesAccessKey
-
- #471 - Drop support for .Net 4.0
- Reverted #466 - StrongName signed assembly?
Assemblies are strong named again, butAssemblyVersion
is now fixed for every major release.
This means that, for example, for version7.1
theAssemblyVersion
will still be7.0
.
Other versions likeAssemblyFileVersion
etc. won't be fixed. - #515 - Switch to new csproj format and require VS2017 for development
- #545 - SplitButton.IsChecked is not bound 2 way by default
- Due to #549
RibbonGroupBox.Header
is now of type object andRibbonGroupBox
now inherits fromHeaderedItemsControl
instead ofItemsControl
.
Please have a look at the documentation for details. - Removed
CornerRadius
everywhere except in all controls related toApplicationMenu
. - Default
Foreground
forComboBox
changed fromInherited
toFluent.Ribbon.Brushes.LabelTextBrush
. - Default
VerticalContentAlignment
forComboBox
,Spinner
andTextBox
changed fromTop
toCenter
. - Key tips can not be opened by pressing
Space
anymore. - #574 - Move backstage animations from BackstageTabControl to Backstage .
Backstage.IsOpenAnimationEnabled
got renamed toBackstage.AreAnimationsEnabled
. This also applies toStartScreen
.Backstage.HideAnimationDuration
got removed. This also applies toStartScreen
.- Default value of dependency property
Backstage.HideContextTabsOnOpen
is nowtrue
. The default value from style was already set totrue
. So this should only be a breaking change for you if you did not use the default style forBackstage
. - Default value for
Foreground
ofRibbonTabItem
is nowFluent.Ribbon.Brushes.RibbonTabItem.Foreground
instead ofFluent.Ribbon.Brushes.RibbonTabItem.Selected.Foreground
because trigger order was fixed in #578. GlassFrameThickness
was removed in favor of the newGlowWindowBehavior
. Thus you can now useGlowBrush
andNonActiveGlowBrush
onRibbonWindow
. The resize border now also works "outside" of the window.
This fixes #307, #319 and #556.- The default value for
TabItemSelectedForeground
onRibbonContextualTabGroup
is now bound toFluent.Ribbon.Brushes.RibbonContextualTabGroup.TabItemSelectedForeground
. Previously this was bound toForeground
ofRibbonContextualTabGroup
. - The default value for
TabItemMouseOverForeground
onRibbonContextualTabGroup
is now bound toFluent.Ribbon.Brushes.RibbonContextualTabGroup.TabItemMouseOverForeground
. Previously this was bound toFluent.Ribbon.Brushes.HighlightBrush
orBlackBrush
. - The default value for
Fluent:RibbonProperties.MouseOverForeground
onRibbonTabItem
is now bound toFluent.Ribbon.Brushes.RibbonTabItem.MouseOver.Foreground
. Previously this was bound toFluent.Ribbon.Brushes.HighlightBrush
orBlackBrush
. - #596 - Breaking changes in theming
The theming got rewritten this means that there is no longer a separation betweenAppTheme
andAccent
. These got replaced byTheme
.
Instead of something likepack://application:,,,/Fluent;component/Themes/Colors/BaseLight.xaml
andpack://application:,,,/Fluent;component/Themes/Accents/Cobalt.xaml
you now have to usepack://application:,,,/Fluent;component/Themes/Themes/Light.Cobalt.xaml
. The wordsAppTheme
andAccent
are replaced byTheme
everywhere. - The target type for
Fluent.Ribbon.Styles.MenuItem
(previously namedFluentDefaultSystemMenuItemStyle
) now isFluent:MenuItem
instead ofMenuItem
- Instead of depending on
System.Windows.Interactivity
we now depend on the open source versionMicrosoft.Xaml.Behaviors.Wpf
- #650 - Create XAML icons and replace the shipped pngs with these (thanks @DenZuck for creating the xaml icons)
Due to this change all shipped images are now of typeDrawingImage
instead ofBitmapImage
. - The filename inside
IsolatedStorageFile
for the defaultRibbonStateStorage
is now "Fluent.Ribbon.State." + Hex value of MD5 instead of "Fluent.Ribbon.State.2.0." + hex value ofGetHashCode
. This was done becauseGetHashCode
does not return a stable value, especially on .NET core 3.0. RibbonTabItem.Indent
was replaced byRibbonTabItem.HeaderPadding
The following resources were added, renamed or removed ("---" indicates added when in column "Old" and removed when in column "New"):
Click here to show the list of renamed and removed things
Old | New |
---|---|
ApplicationMenuStyle | Fluent.Ribbon.Styles.ApplicationMenu.MenuItem |
ApplicationMenuSecondLevelStyle | Fluent.Ribbon.Styles.ApplicationMenu.MenuItemSecondLevel |
BackstageButtonStyle | Fluent.Ribbon.Styles.BackstageTabControl.Button |
FluentDefaultSystemMenuItemStyle | Fluent.Ribbon.Styles.MenuItem |
BackstageButtonControlTemplate | Fluent.Ribbon.Templates.BackstageTabControl.Button |
BackstageSeparatorTabItemStyle | Fluent.Ribbon.Styles.BackstageTabControl.SeparatorTabItem |
ComboBoxBackstageStyle | Fluent.Ribbon.Styles.Backstage.ComboBox |
ComboBoxItemBackstageControlTemplate | --- |
MetroComboBoxItemBackstageStyle | --- |
ComboBoxBackstageControlTemplate | --- |
ButtonBackstageStyle | Fluent.Ribbon.Styles.Backstage.Button |
ButtonBackstageControlTemplate | --- |
ToggleButtonBackstageStyle | Fluent.Ribbon.Styles.Backstage.ToggleButton |
ToggleButtonBackstageControlTemplate | --- |
DropDownButtonBackstageStyle | Fluent.Ribbon.Styles.Backstage.DropDownButton |
DropDownButtonBackstageControlTemplate | --- |
--- | Fluent.Ribbon.Brushes.TextBox.CaretBrush |
--- | Fluent.Ribbon.Brushes.TextBox.SelectionBrush |
DialogLauncherButtonKeyTipKeysProperty | LauncherKeysProperty |
OnCanAddToQuickAccessToolbarChanged | OnCanAddToQuickAccessToolBarChanged |
OnIsOpenTrueStoryboard | Fluent.Ribbon.Storyboards.Backstage.IsOpenTrueStoryboard |
OnIsOpenFalseStoryboard | Fluent.Ribbon.Storyboards.Backstage.IsOpenFalseStoryboard |
--- | Fluent.Ribbon.Brushes.RibbonWindow.TitleBackground |
--- | Fluent.Ribbon.Brushes.RibbonContextualTabGroup.TabItemSelectedForeground |
--- | Fluent.Ribbon.Brushes.RibbonContextualTabGroup.TabItemMouseOverForeground |
--- | Fluent.Ribbon.Brushes.RibbonContextualTabGroup.TabItemSelectedMouseOverForeground |
--- | Fluent.Ribbon.Brushes.RibbonTabItem.MouseOver.Foreground |
--- | Fluent.Ribbon.Brushes.RibbonTabItem.Selected.MouseOver.Foreground |
--- | Fluent.Ribbon.Brushes.Backstage.Background |
--- | Fluent.Ribbon.Brushes.Backstage.Foreground |
--- | Fluent.Ribbon.Brushes.BackstageTabControl.Button.MouseOver.Background |
--- | Fluent.Ribbon.Brushes.BackstageTabItem.Header.Foreground |
--- | Fluent.Ribbon.Brushes.BackstageTabItem.MouseOver.Background |
--- | Fluent.Ribbon.Brushes.BackstageTabItem.Selected.Background |
--- | Fluent.Ribbon.Brushes.Backstage.BackButton.Background |
--- | Fluent.Ribbon.Brushes.Backstage.BackButton.Foreground |
--- | Fluent.Ribbon.Brushes.BackstageTabControl.ItemsPanelBackground |
--- | Fluent.Ribbon.Brushes.RibbonWindow.TitleForeground |
--- | Fluent.Ribbon.Templates.WindowCommands |
WindowCommandsControlTemplate | Fluent.Ribbon.Templates.WindowCommands.Button |
--- | Fluent.Ribbon.Styles.WindowCommands.Button |
CaptionButtonStyle | Fluent.Ribbon.Styles.WindowCommands.CaptionButton |
--- | Fluent.Ribbon.Templates.WindowCommands.CaptionButton |
-
- #165 - Save As menu is added to QAT but does not have child items
- #307 - Black flicker on complete window-area when resizing
- #319 - How to make window resizable with Win32 content?
- #535 - BorderBush on bottom of RibbonTabItem (and Ribbon)
- #536 - RibbonContextualTabGroup header text trimmed until hovered
- #542 - InRibbonGallery not reducing properly
- #543 - Using images that can't be found during design time crashes designer
A generic "error" image is rendered during design time and an exception is thrown during runtime. - #551 - "Auto" size for ribbon group box header to support custom font sizes (thanks @chrfin)
- #552 - RibbonGroupBox should resize when font family or size are changed
- #556 - Wrong Window Resize-Border Sensitivity
- #562 - Pressing "right" arrow key to open submenu on menuitem causes NullRef exception when there is no submenu
- #564 - Gallery overflow panel (with menu items) doesn't close when clicking once in the application
- #572 - KeyTip.Keys Position
- #573 - Empty context menu on controls and ribbon
- #576 - Does RibbonGroupBox set Foreground invalid?
- #581 - StackOverflow Exception when trying to access ApplicationMenu while RibbonMenu is minimized
- #586 - BackstageTabItem IsEnabled=False still displays content
- #587 - DisplayMemberPath no longer working on DropDownButton/MenuItem as of version 6.0
- #593 - Disable state selected in InRibbonGallery after click
- #594 - Keep title in the same location when opening the backstage
- #602 - Pin button not clickable when Ribbon in collapsed state
- #607 - Submenu contained in DropDownButton closes too slow
- #616 - ContextMenu auto hidden after right click (related to #439)
- #632 - Ribbon sometimes clips over other applications
- #637 - Escape key doesn't close menu on data-bound DropDownButton
- #638 - Setting AreTabHeadersVisible="False" on startup makes entire ribbon disappear
- #639 - Group headers take focus when tabbing through with keyboard
- #653 - Incorrect context menu of Fluent:TextBox
- #656 - Backstage icons not showing
- #659 - Fix Dutch localization errors (thanks @carloslubbers)
- #660 - ContextualTabs visibility problem
- #662 - Backstage/StartScreen closing if clicking outside of Application
- #663 - Fluent:ApplicationMenu not closing on outside click after opening context menu.
- #666 - InRibbonGallery DropDown not layouting correctly
- #673 - RibbonContextualTabGroup not shown
- #677 - Alt Codes no longer working in alpha version v7.0.0
- #688 - Backstage and StartScreen closing when pressing Alt
- #698 - Submenus in the application menu are not opened each time
- #704 - CheckBox.Header - InvalidCastException
- #705 - ApplicationMenu header can't be set to text
- #714 - ResizeMode="NoResize" and ShowInTaskbar="False" causes crash on startup
- #722 - NullReferenceException in KeyTipService.OnAdornerChainTerminated
- #730 - Add null check for Application.Current to ThemeManager (thanks @Evangelink)
-
- #516 - Add options to hide the row containing RibbonTabItems
You can achieve this by:- Setting
Ribbon.Menu
tonull
(or never assigning anything) - Setting
Ribbon.CanMinimize
tofalse
- Setting
Ribbon.AreTabHeadersVisible
tofalse
- Setting
Ribbon.IsToolBarVisible
tofalse
- Setting
- #533 - Issue when using templated ribbon items
- #544 - Add proper DPI support for icons/images aquired through ObjectToImageConverter on .NET 4.6.2
- #549 - Implement RibbonGroupBox header template
- #553 - Introduce resources for CaretBrush and SelectionBrush for TextBox
- #554 - No Keytips on templated ribbon items.
- #563 - Add customizable keys for activating the key tips. (thanks @pschimmel)
You can now set your own keys for showing key tips. Have a look atRibbon.KeyTipKeys
. - #568 - Allow setting the height of GalleryPanel inside InRibbonGallery
You can now control the height of theGalleryPanel
insideInRibbonGallery
by settingGalleryPanelContainerHeight
. - #578 - Theming of selected context ribbon tab
You can now useFluent.Ribbon.Brushes.RibbonWindow.TitleBackground
,RibbonContextualTabGroup.TabItemSelectedForeground
andRibbonContextualTabGroup.TabItemMouseOverForeground
to further control colors. - #590 - SplitButton custom KeyTip
You can now usePrimaryActionKeyTipPostfix
andSecondaryActionKeyTipPostfix
onSplitButton
to control the postfix for key tips. - #592 - Disable context menu on Ribbon
You can now useIsDefaultContextMenuEnabled
onRibbon
to disable the default context menu. - #599 - MahApps.Metro dialog on backstage
You can now useUseHighestAvailableAdornerLayer
onBackstage
to improve interop with MahApps.Metro regarding dialogs above the backstage. - #606 - added non-generated Colorful.Blue and Colorful.Gray themes (thanks @stylefish)
- #635 - Quick access menu arrow customization
- #640 - Narrator doesn't read out button headers
- #642 - Ignore Alt Gr key, by blacklisting modifier keys, in KeyTips detection (thanks @stylefish)
- #692 - Add dedicated secondary KeyTip on SplitButton
You can now useSecondaryKeyTip
onSplitButton
for the secondary key tip. IfKeyTip
is empty or null only theSecondaryKeyTip
will be used. - #696 - Adding Greek language translations (thanks @b-karamichael)
- #516 - Add options to hide the row containing RibbonTabItems
-
- #510 - Submenus in DropDownButton are not opened each time
- #511 - Binding on RibbonWindow.Icon not working
- #512 - Ideal text color should match the colors in the ribbon
- #513 - Hovering causes flickering of ribbon backstage menu items
- #517 - Fluent 6.0: buttons inside drop downs don't seem to work when using ClosePopupOnMouseDown
- #524 - Fixes Korean translation error. (thanks @softinus)
-
- #509 - Checked mark + Icon image at Menuitem
- #514 - Detect Windows 10 app mode setting and adjust current AppTheme automatically
You can useThemeManager.SyncAppThemeWithWindowsAppModeSetting
to align theAppTheme
once. You can useThemeManager.IsAutomaticWindowsAppModeSettingSyncEnabled
to align theAppTheme
automatically when the Windows setting is changed during runtime. - #518 - Replace Thread.Sleep with Task.Delay for non-.NET 4.0 platforms (thanks @GeertvanHorrik)
-
- #466 - StrongName signed assembly? Hey, it's 2017...
Fluent.Ribbon is no longer a strong-named assembly. - #433 - ToggleButton not working correctly when placed in collapsed GroupBox
ToggleButton
grouping was done like it's done for a regularRadioButton
, except that it was bound to visual root scope.
The dependency on a visual root scope has been remove, so please adjust theGroupName
for groups if you have groups with the same name in different visual root scopes. DropDownButton
(and thus alsoSplitButton
) now inherit fromItemsControl
instead ofMenuBase
.
This was changed becauseMenuBase
causes a lot of issues regarding keyboard navigation, focus etc.. This also means that you should useFluent:MenuItem
instead of the system providedMenuItem
as immediate children ofDropDownButton
andSplitButton
.SplitButton
now generates twoKeyTip
elements for itself. If you previously used "S" asKeyTip
there will now be "S1" for the button action and "S2" will open the dropdown.- Changes made to
Ribbon
- Internal properties for
QuickAccessToolBar
andTabControl
got converted toDependencyProperty
- Changed order of Children returned from
LogicalChildren
- Type of metadata for
Menu
andStartScreen
changed fromPropertyMetadata
toFrameworkPropertyMetadata
- Internal properties for
- There are a lot new resources to control the colorization. Please have a look at Colors.xaml for a list of all available resources.
This also means that, for example, simply changing the foreground/background of one outer control won't change the foreground/background of all inner controls. - #457 - Return type of
IKeyTipedControl.OnKeyTipPressed
was changed fromvoid
toKeyTipPressedResult
. - The following
Color
andBrush
resources were replaced/renamed/removed ("---" indicates removed):
- #466 - StrongName signed assembly? Hey, it's 2017...
Click here to show the list of replaced/renamed/removed things
Old | New |
---|---|
Fluent:MetroColors.ThemeColorKey | Fluent.Ribbon.Colors.AccentBaseColor |
ButtonDisabledBackgroundBrush | --- |
ButtonDisabledBorderBrush | --- |
SliderShadowBrush | WhiteBrush |
SliderLightenBrush | WhiteBrush |
BackstageBackgroundBrush | WhiteBrush |
BackstageControlHoverBorderBrush | Fluent.Ribbon.Brushes.Button.MouseOver.BorderBrush |
BackstageControlActiveBorderBrush | Fluent.Ribbon.Brushes.Button.Pressed.BorderBrush |
ButtonBorderBrush | Fluent.Ribbon.Brushes.Control.BorderBrush |
ButtonHoverOuterBackgroundBrush | Fluent.Ribbon.Brushes.Button.MouseOver.Background |
ButtonHoverOuterBorderBrush | Fluent.Ribbon.Brushes.Button.MouseOver.BorderBrush |
ButtonPressedOuterBackgroundBrush | Fluent.Ribbon.Brushes.Button.Pressed.Background |
ButtonPressedOuterBorderBrush | Fluent.Ribbon.Brushes.Button.Pressed.BorderBrush |
ButtonPressedInnerBorderBrush | Fluent.Ribbon.Brushes.Button.Pressed.BorderBrush |
ButtonPressedInnerBackgroundBrush | Fluent.Ribbon.Brushes.Button.Pressed.Background |
ButtonHoverInnerBackgroundBrush | --- |
ButtonHoverInnerBorderBrush | --- |
ButtonCheckedBrush | Fluent.Ribbon.Brushes.HighlightBrush & Fluent.Ribbon.Brushes.Button.MouseOver.Background |
CheckBoxHoverBackgroundBrush | Fluent.Ribbon.Brushes.Button.MouseOver.Background |
CheckBoxHoverBorderBrush | Fluent.Ribbon.Brushes.Button.MouseOver.BorderBrush |
CheckBoxPressedBackgroundBrush | Fluent.Ribbon.Brushes.Button.Pressed.Background |
CheckBoxPressedBorderBrush | Fluent.Ribbon.Brushes.Button.Pressed.BorderBrush |
CheckBoxOutterBorderBrush | --- |
CheckBoxOutterBackgroundBrush | --- |
CheckBoxInnerBorderBrush | --- |
CheckBoxInnerBackgroundBrush | --- |
CheckBoxHoverOutterBorderBrush | --- |
CheckBoxHoverOutterBackgroundBrush | --- |
CheckBoxHoverInnerBorderBrush | --- |
CheckBoxHoverInnerBackgroundBrush | --- |
CheckBoxPressedOutterBorderBrush | --- |
CheckBoxPressedOutterBackgroundBrush | --- |
CheckBoxPressedInnerBorderBrush | --- |
CheckBoxPressedInnerBackgroundBrush | --- |
ContextMenuLineBrush | --- |
ContextMenuBarBackgroundBrush | Fluent.Ribbon.Brushes.DropDown.BackgroundBrush |
ContextMenuBarBorderBrush | Fluent.Ribbon.Brushes.DropDown.BorderBrush |
ContextMenuBarResizeBorderBrush | Fluent.Ribbon.Brushes.DropDown.Resize.BorderBrush |
ContextMenuBarResizeBackgoundBrush | Fluent.Ribbon.Brushes.DropDown.Resize.BackgroundBrush |
GalleryBorderBrush | Fluent.Ribbon.Brushes.Control.BorderBrush |
InRibbonGalleryBorderBrush | Fluent.Ribbon.Brushes.Control.BorderBrush |
BackstageGalleryItemHoverBackgroundBrush | Fluent.Ribbon.Brushes.Button.MouseOver.Background |
BackstageGalleryItemSelectedBackgroundBrush | Fluent.Ribbon.Brushes.Button.Pressed.Background |
BackstageToggleButtonCheckedBorderBrush | Fluent.Ribbon.Brushes.HighlightBrush |
BackstageToggleButtonCheckedBackgroundBrush | Fluent.Ribbon.Brushes.Button.MouseOver.Background |
QuickAccessToolbarPopupBackgrondBrush | {Binding Background, RelativeSource={RelativeSource AncestorType=Window}} |
WindowContentBorderBrush | Fluent.Ribbon.Brushes.Separator.BorderBrush |
GroupBoxSeparatorBorderBrush | Fluent.Ribbon.Brushes.Separator.BorderBrush |
GroupBoxSeparatorBackgroundBrush | Fluent.Ribbon.Brushes.Separator.Background |
ContextMenuSeparatorBrush | Fluent.Ribbon.Brushes.Separator.BorderBrush |
KeyTipBackgroundBrush | Fluent.Ribbon.Brushes.KeyTip.Background |
KeyTipBorderBrush | Fluent.Ribbon.Brushes.KeyTip.BorderBrush |
GalleryHeaderBackgroundBrush | Fluent.Ribbon.Brushes.Gallery.Header.Background |
TextBoxBorderBrush | Fluent.Ribbon.Brushes.TextBox.BorderBrush |
TextBoxBackgroundBrush | Fluent.Ribbon.Brushes.TextBox.Background |
TextBoxHoverBackgroundBrush | Fluent.Ribbon.Brushes.TextBox.MouseOver.Background |
TextBoxHoverBorderBrush | Fluent.Ribbon.Brushes.TextBox.MouseOver.BorderBrush |
TextBoxDisabledBackgroundBrush | Fluent.Ribbon.Brushes.TextBox.Disabled.Background |
TextBoxDisabledBorderBrush | Fluent.Ribbon.Brushes.TextBox.Disabled.BorderBrush |
RibbonSeparatorBrush | Fluent.Ribbon.Brushes.GroupSeparator.Background |
GroupSeparatorBrush | Fluent.Ribbon.Brushes.GroupSeparator.Background |
CloseButtonHoverBackgroundBrush | Fluent.Ribbon.Brushes.WindowCommands.CloseButton.MouseOver.Background |
CloseButtonPressedBackgroundBrush | Fluent.Ribbon.Brushes.WindowCommands.CloseButton.Pressed.Background |
MenuItemBackground | Fluent.Ribbon.Brushes.MenuItem.Background |
MenuItemCheckBoxBackgroundBrush | Fluent.Ribbon.Brushes.ApplicationMenuItem.CheckBox.Background |
MenuItemCheckBoxBorderBrush | Fluent.Ribbon.Brushes.ApplicationMenuItem.CheckBox.BorderBrush |
RibbonThemeColorBrush | Fluent.Ribbon.Brushes.AccentBaseColorBrush |
TransparentBrush | --- |
BackstageFontBrush | Fluent.Ribbon.Brushes.IdealForegroundColorBrush |
TabItemFontBrush | Fluent.Ribbon.Brushes.LabelTextBrush |
Fluent.Ribbon.Brushes.LabelTextBrush | Fluent.Ribbon.Brushes.LabelTextBrush |
GroupHoverBrush | Fluent.Ribbon.Brushes.RibbonGroupBox.Collapsed.MouseOver.Background GroupHoverBrush |
GroupHighlightBrush | Fluent.Ribbon.Brushes.RibbonGroupBox.DropDownOpen.Background |
GroupBoxFontBrush | Fluent.Ribbon.Brushes.RibbonGroupBox.Header.Foreground |
ActiveTabBackgroundBrush | Fluent.Ribbon.Brushes.RibbonTabItem.Active.Background |
TabItemSelectedFontBrush | Fluent.Ribbon.Brushes.RibbonTabItem.Selected.Foreground |
RibbonBackgoundBrush | Fluent.Ribbon.Brushes.Ribbon.Background |
RibbonTopBorderBrush | Fluent.Ribbon.Brushes.RibbonTabItem.BorderBrush & Fluent.Ribbon.Brushes.ColorGallery.Item.BorderBrush |
ScrollButtonDefaultBorderBrush | Fluent.Ribbon.Brushes.ScrollButton.Default.BorderBrush |
ScrollButtonDefaultBackgroundBrush | Fluent.Ribbon.Brushes.ScrollButton.Default.Background |
ScrollButtonHoverBorderBrush | Fluent.Ribbon.Brushes.Button.MouseOver.BorderBrush |
ScrollButtonHoverBackgroundBrush | Fluent.Ribbon.Brushes.Button.MouseOver.Background |
ScrollButtonPressedBorderBrush | Fluent.Ribbon.Brushes.Button.Pressed.BorderBrush |
ScrollButtonPressedBackgroundBrush | Fluent.Ribbon.Brushes.Button.Pressed.Background |
ScrollBackgroundBrush | Fluent.Ribbon.Brushes.ScrollBar.Background |
ScrollVerticalBackgroundBrush | Fluent.Ribbon.Brushes.ScrollBar.Background |
ScrollThumbDefaultBorderBrush | Fluent.Ribbon.Brushes.ScrollThumb.Default.BorderBrush |
ScrollThumbDefaultBackgroundBrush | Fluent.Ribbon.Brushes.ScrollThumb.Default.Background |
ScrollThumbHoverBorderBrush | Fluent.Ribbon.Brushes.Button.MouseOver.BorderBrush |
ScrollThumbHoverBackgroundBrush | Fluent.Ribbon.Brushes.Button.MouseOver.Background |
ScrollThumbPressedBorderBrush | Fluent.Ribbon.Brushes.Button.Pressed.BorderBrush |
ScrollThumbPressedBackgroundBrush | Fluent.Ribbon.Brushes.Button.Pressed.Background |
ScrollViewerButtonBorderBrush | Fluent.Ribbon.Brushes.ScrollViewer.Button.BorderBrush |
ScrollViewerButtonBackgroundBrush | Fluent.Ribbon.Brushes.ScrollViewer.Button.BackgroundBrush |
- The following default values changed:
Name/Location | Old | New |
---|---|---|
Button.BorderThickness | 0 | 1 |
ContentGapHeight | 5 | 1 |
- The following styles got removed/renamed:
Old | New |
---|---|
NonEditableComboBoxItemStyle | is now the default style |
EditableComboBoxItemStyle | --- |
-
- #344 - Invisible header of combobox on QuickAccessToolBar.
- #395 - issues with contextual tab group
- #405 - InRibbonGallery when loaded, mouse wheel up or down cause crash. (thanks @Yumeryu)
- #419 - BackstageTabItem Is Never Deselected if BackstageTabControl is not Logical Parent
- #428 - Values from DependencyProperties with FrameworkPropertyMetadataOptions.Inherits are not properly inherited from Ribbon to Menu, StartScreen and some other children
This also overrules the fix made for #415. - #430 - No Rezising at Fluent:RibbonContextualTabGroup at Version 5.0
- #433 - ToggleButton not working correctly when placed in collapsed GroupBox
- #438 - Titlebar icon missing left margin when maximized
- #439 - Context menu and submenu disappears after a right click
- #446 - Wrong submenu Position in application menu
- #450 - Fix Ribbon.OnTitleBarChanged clearing the new title bar instead of the old one (thanks @Cubey2019)
- #451 - combobox and dateformat
- #454 - RibbonWindow title not shown in correct position when using SizeToContent
- #456 - Maximising a RibbonWindow with MaxWidth or MaxHeight causes an extra border above the title bar
- #457 - Using the keytip shortcut to open a backstage briefly opens it, then closes it immediately
- #459 - Label of the Spinner disappears, if there isn't enough place
- #463 - ShowQuickAccessToolBarAboveRibbon="False" causes crash
- #464 - Clicking on hyperlink inside of ApplicationMenu causes crash
- #465 - Clicking on ContextualGroup background or scrolling through ribbon will open disabled tab
During this fixRibbonTabControl.GetFirstVisibleItem
was renamed toRibbonTabControl.GetFirstVisibleAndEnabledItem
. - #473 - RibbonWindow does not resize when Children resize and SizeToContent is used
- #481 - ToggleButton behaviour is wrong when GroupName is set
- #485 - InRibbonGallery broken when ItemsSource is empty
- #486 - Stretching of DropDownButton differs from Button
- #489 - Fluent Ribbon crashes program on shutdown
- #493 - Sometimes icons are not drawn when using ObjectToImageConverter
- #500 - Binding error for RibbonProperties.MouseOverBackground
- #501 - Ribbon controls disappear when ribbon is initially disabled
-
LayoutTransform
andRenderTransform
can now be used directly onRibbonWindow
as this now gets forwarded to the first template child of the window. Have a look atTestWindow
in the showcase application for an example on how to use it. This was added as the fix for #430.- You can change accent and base colors by using
ThemeManager
just like in MahApps.Metro. Please read the documentation for details. - #275 - Option for customizing the quick access toolbar access keys
QuickAccessToolBar
now has a property calledUpdateKeyTipsAction
which accepts an instance ofQuickAccessToolBar
through which you can create your own keytips for items in the toolbar.
Look at the UnitTestQuickAccessToolBarTests.TestCustomKeyTips
for a sample. - #313 - Window state buttons not updating to Windows 10 look / feel
- #417 - Keytips for Splitbuttons
You now get 2 KeyTips forSplitButton
. One for the main action button and one for the dropdown. Those KeyTips get generated by append "A" and "B" to the originalKeyTip
. - #431 - Changing Ribbon Tab Control Background color and possibly adding Graphic Styling.
- #435 - Add ability to change the Window Title Background the Ribbon Bar is on in order to match the Office 365 Style.
- #440 - Enable changing the height of content area of RibbonTabControl
ContentHeight
is available onRibbon
and tranferred toRibbonTabControl
from there - #443 - Release .NET 4.6.2 version
- #444 - Add
IgnoreTaskbarOnMaximize
toRibbonWindow
- #445 - Startsceen "shines" through backstage
- #455 - Add brushes for checked toggle buttons (thanks @Cubey2019)
- #478 - Custom MinWidth of Start Screen (LeftContent)
- #479 - Bulgarian language (thanks @kalatchev)
- #480 - Disable Scroll Wheel for tab selection
You can control this behavior by usingIsMouseWheelScrollingEnabled
onRibbon
- #484 - Add special style/template for MenuItem with set description
- #488 - Display border around content area of RibbonTabControl
You can now useFluent.Ribbon.Values.RibbonTabControl.Content.BorderThickness
to control the thickness of the border around the content area ofRibbonTabControl
- #494 - How to align controls such as ToggleButton, Spinner with text
You can now opt in to align the headers of controls likeComboBox
orSpinner
which are placed in the same column of aRibbonGroupBox
by addingGrid.IsSharedSizeScope="True"
to aRibbonGroupBox
. You can opt out of this behavior for single controls in that column by addingFluent:RibbonGroupBoxWrapPanel.ExcludeFromSharedSize="True"
to that control.
Documentation can be found at http://fluentribbon.github.io/documentation/concepts/sizing#aligningControls - #495 - Add option disable handling of KeyTips
You can now disable handling of all KeyTips by settingIsKeyTipHandlingEnabled
onRibbon
toFalse
. - #503 - Add IsDefinitive property to GalleryItem (thanks @noctis0430)
- #437 - "Could not load ControlzEx"
-
- Office 2010 and Windows 8 themes got removed. Office 2013 theme was moved from "Themes/Office2013/Generic.xaml" to "Themes/Generic.xaml". This was a community voted decision.
ComboBox
now uses the defaultItemsPanelTemplate
instead ofVirtualizingStackPanel
again.
If you prefer to useVirtualizingStackPanel
you can change this on a per instance level or add it to your defaultStyle
.- #301 - Remove Office 2010 and Windows 8 themes
- #302 - Rename Office 2013 theme to Generic
- #309 - Remove grouping from ComboBox and make GalleryPanel inherit from StackPanel
- #310 - Refactoring of localization
- #349 - Move
RibbonTitleBar
fromRibbon
toRibbonWindow
RibbonWindow
exposesTitleBar
which is of typeRibbonTitleBar
.
Ribbon
uses theTitleBar
provided by theRibbonWindow
by default, through it'sStyle
.
This allows changing theTitleBar
being used by theRibbon
.
- Removed
RibbonProperties.TitleBarHeight
to simplify usage of theRibbon
in nonRibbonWindow
.
To support this the following things were added:SelectedContentMargin
was added toBackstageTabControl
QuickAccessToolBarHeight
onRibbon
TitleBarHeight
onRibbonWindow
- #400 - Default menu / menuitem appearance overridden by FluentRibbon
- Styles for the following types are no longer overwritten globally
ContextMenu
,MenuItem
,MenuItem.SeparatorStyleKey
,StatusBar
,StatusBarItem
,StatusBar.SeparatorStyleKey
MenuItemStyle
is renamed toFluentDefaultSystemMenuItemStyle
- Styles for the following types are no longer overwritten globally
-
- #288 - Fluent:DropDownButton Background can't be changed
- #300 - Startscreen not working in 4.0.3
- #305 - Combobox items will be drawn above each other on scroll down
- #311 - State loading too verbose
- #315 - Menu button gets blurry
- #325 - Running RibbonWindow not on the main thread.
- #329 - ArgumentOutOfRangeException when adding StatusBarItem
- #333 - NullReference Exception app.Run
- #339 - SelectedTabChanged fired when selection of contained Selector changes
- #341 - Fix text going under custom window commands (thanks @chrfin)
- #342 - Fixed dependency property name of property Groups in GalleryGroupFilter. (thanks @polepage)
- #346 - RibbonWindow icon is blurry (thanks @chdft)
- #365 - BackstageAdorner is not removed
- #368 - Render Glitch when Maximizing RibbonWindow with SizeToContent Enabled
- #369 - "Restore" button in title bar not displayed correctly when application starts maximized
- #377 - ToggleButton highlight doesn't match the button size
- #388 - QuickAccess item not visible when added from backstage
- #391 - QAT items not displayed properly if tab is made visible after initialization
- #392 - Change Window Title doesn't update Title length
- #397 - Backstage Opening Animation
- #398 - ColorGallery: SelectedColorChanged event raised before SelectedColor changed
- #403 - Tabs can "detach" from ribbon area
-
- #250 - Enable change/hide of window title foreground
Foreground
of window titel can now be changed by settingTitleForeground
onRibbonWindow
.
This is bound toForeground
ofRibbonWindow
.
- #276 - Custom method for saving and restoring QAT items
- #279 - Localization of ColorGallery
- #299 - Quick access items should show item text as tool tip if no tooltip is set
- #324 - Add "IsSeparatorVisible" to RibbonGroupBox (thanks to @maurosampietro)
- #326 - Add interface for controls which provide LargeIcon
- #334 - Select all text in Spinner on focus
- #340 - Expose GroupByAdvanced from GalleryPanel on Gallery and InRibbonGallery
- #360 - Toggling of KeyTips should not happen when Shift is pressed (thanks to @stylefish)
- #387 - Disable/Hide the Menu-DropDown in QuickAccessToolbar
Ribbon
now hasIsQuickAccessToolBarMenuDropDownVisible
andQuickAccessToolbar
now hasIsMenuDropDownVisible
.
- Added
CanChangeIsOpen
toBackstage
- Added
ActiveTabBackground
andActiveTabBorderBrush
toRibbonTabItem
- Improved interop with windows which are not of type
RibbonWindow
.
The showcase contains a sample showcasing working context-tabs in a MahApps.MetroMetroWindow
.
- #250 - Enable change/hide of window title foreground
-
- Fixes issues with window border on Windows 7 and Windows 8
-
- #294 - Issues with default style and OverridesDefaultStyle
-
- #293 - ArgumentNullException in BackstageTabControl while trying to find the selected tab
-
- As of now the Office 2010 and Windows 8 themes will be removed in version 5.0. You can vote for this at Future direction of this library.
-
- New nuget dependency: ControlzEx. So don't forget to add ControlzEx.dll to your distribution/setup.
- BorderlessWindowBehavior was replaced by WindowChromeBehavior from ControlzEx. This also removes the dependency Microsoft.Windows.Shell as ControlzEx contains everything we need to use WindowChrome. This behavior is initialized in code behind (InitializeWindowChromeBehavior) and shows which properties of RibbonWindow can be used to control the behavior.
- SaveWindowPosition and WindowSettingBehavior were removed #196
- GlassBorderThickness was renamed to GlassFrameThickness to be consitent with WindowChrome and WindowChromeBehavior #209
- FluentTest project was renamed to Fluent.Ribbon.Showcase #212
-
- We switched to Visual Studio 2015 so we can use nameof etc. #219
-
- #10 - Maximising a ribbon window with DWM enabled results in it not maximising properly
- #90 - Window chrome turning black during window resize.
- #116 - MenuItem: When the description is long the MenuItem does not expands in Width or Height, does not wrap text
- #129 - DontUseDwm="True" case the window corner unpainted
- #146 - Rendering of Office 2010 theme incorrect on Windows 10
- #191 - Windows 8 Theme - Blue/black margin around the window in windows 10
- #210 - Fix wrong dimensions assumed for WindowCaptionButtons on Windows 10 in Office2010 and Windows 8 themes
- #218 - Not displaying properly when maximized
- #221 - Office2013 theme undesired space between tabItem and its content when showing unpinned
- #223 - RibbonContextualTabGroup ignores Window.ResizeMode
- #226 - Maximising a ribbon window on Win7 "Non-Aero" Mode causes rendering issues
- #228 - Backstage disappears when changing DontUseDwm
- #234 - Disable KeyTips when Ribbon isn't Enabled
- #235 - Items of invisble tab are shown
- #236 - Window size is wrong when window is maximized, backstage is closed and window should be restored to normal size
- #237 - Ribbon Buttons with large text cut off a few pixels
- #238 - New WindowChrome does not work correctly on Windows 7
- #240 - Backstage closes when popup is dismissed inside backstage
- #241 - Keytips should be cancelled if Alt+Num0 is pressed
- #244 - KeyTip not working for childs of ContentPresenter
- #246 - Bind RibbonGroupBox.DataContext on QuickAccessToolBar (thanks to @nishy2000)
- #251 - Changing RibbonStatusBar height to 23 and RibbonStatusBarItem foreground to BackstageFontBrush (thanks to @maurosampietro)
- #253 - Icons of buttons not aligned correctly in Office 2013 theme (thanks to @floele-sp)
- #254 - Basic fix for KeyTips not working when focus is inside a WinForms control
- #256 - ComboBox items don't update properly on ItemsSource binding source collection changes
- #255 - Submenus don't show scroll viewer if items exceed the available space on screen (thanks to @floele-sp)
- #257 - Windows8 RibbonWindowTitleTextGlowBackground was missing (thanks to @maurosampietro)
- #263 - Changing theme from backstage is broken
- #267 - maximizing in Win 10
- #269 - Show underscore of header text on RibbonTabItem
- #272 - Changing RibbonThemeColorBrush does not change background of ItemsPanel in Backstage
- #274 - RadioButton Icon and LargeIcon
- #280 - Keytips of the Ribbon overlay StartScreen
- #284 - Overriding width of button does not work as it should
- #285 - MaterialDesign DialogHost issue with FluentRibbon
- #291 - BackStageTabItem leftmousedown event not firing
- OpenBackstage command was not acting on the correct backstage in a multiple backstage scenario (thanks to @maurosampietro)
-
- #120 - Adding short-cuts or additional information to Application Menu Item
- #185 - Major refactoring of how WindowChrome is used
- #194 - There should be an option to disable animations in the whole control
- #205 - Fluent Spinner handles Format="P0" incorrectly.
- #207 - Enable DragMove on unused RibbonTabControl space like in Office 2013
- #230 - Option to disable the "Minimize"-Ribbon Button & Behavior (thanks to @robertmuehsig)
- #242 - Add start screen like in office 2013 and upwards
- #258 - Refactoring of KeyTipService and KeyTipAdorner (merged with #264)
-
- #29 - Backstage flicker
- #112 - Backstage flicker
- #192 - Background of RibbonGroupBox can't be set/changed
- #197 - Some adaptions to better align with Office 2013
- #200 - KeyTips in SplitButton no longer work
- #201 - Cannot change Fluent.Button Icon Dynamically
- #202 - Center the button labels in Office 2013 theme
- #206 - Center alignment button inside RIbbonGroupBox
- #214 - Assign a StringFormat binding to a RibbonGroupBox Header
Commits: v3.6.0...v3.6.1
-
- #163 - ColorGallery produces Binding errors because of Binding of Color on SolidColorBrush in Fill/Background
- #166 - Type is mismatch for IsCheckedProperty of ToggleButton
- #170 - Black RibbonWindow title bar
- #173 - Binding Observable Collection to InRibbonGallery causes Layout Error
- #178 - Ribbonwindow crashes
Commits: c7151027f5...97001b17e9
-
- #161 - Window not maximized correctly when MaxHeight and/or MaxWidth are set
- #160 - Invisible first tab is selected when selected tab becomes invisible
- #159 - Maximized RibbonWindow state error after long IO operation.
- #158 - Treat all themes equally by generating their Generic.xaml in the specific theme folder
- #154 - Removing item (that has DropDown ) from QAT removes items in Ribbon Toolbar
- #153 - Incorrect rendering with SizeToContent="WidthAndHeight"
- #151 - RibbonToolBarLayoutDefinition is not compatible with some bindings?
- #150 - Menu Item Tool tip not appearing when in a datatemplate
- #147 - Foreground colour backstage items
- #80 - Window "Not Responding" cut Title
Commits: 9f8c919f1b...175ba6c882
-
- #143 "Resizing InRibbonGallery causes content to be narrower than container"
-
- #113 "Ribbon starts with no active tab selected"
- #122 "The CanAddToQuickAccessToolBar="False" property not work correctly for "MenuItem""
- #135 "Null pointer exception when trying to bring back QuickAccessItem"
- #136 "Add translation for TradChinese(Taiwan)"
- When backstage was open while items were added to quick access the items were not immediately visible after closing backstage
- Show above/below can't be added to quick access from now on
- Fixing warning that was caused by an not applied storyboard being removed
- Removed opacity animation from backstage in Office 2013 theme to align with Office 2013
-
- #78 "Minimized but visible ribbon lacks top border in theme 2013"
- #81 "Invalid typeof in style resolution of RadioButton"
- #83 "Aligned vertical alignment of dropdownbutton and button."
- #85 "ComboBox Items don t get a overlay color when mouse over items"
- #95 "repair nullref combobox combined with focus on winforms control"
- #97 "Fixed possible InvalidCastException when creating a QAT item of a CheckBox"
- #102 "Redundant separator in context menu if quick access is hidden"
- #104 "Non-DWM fullscreen window is not fullscreen"
- #106 "BackStage should be 1 px higher"
- #115 "MenuItem: IsSplited="True" gray line issue"
- #117 "Backstage not shown when Window Content is not a FrameworkElement"
- #124 "The text in fluent:Spinner cannot be centered vertically."
-
- #74 "Added DropDownButton.ClosePopupOnMouseDownDelay to allow the end-developer to tweak the delay (sometimes 100 ms is too fast)"
-
- #34 "A bug in the Menu of DropdownButton"
- #45 "Little style Bug in Office2013 Style"
- #61 "Fix for backstage controls in Windows 8 theme"
- #62 "Review TODO:s in Windows 8 theme"
- #63 "Office2013 Icon fixing"
- #65 "Problems when layout is scaled"
- #66 "RibbonWindow not closed when system menu icon is double clicked"
- #68 "NullReferenceException is thrown on closing by Alt+Space and C"
- #69 "Ribbon Title not update its position"
- #71 "Starting application with backstage menu open causes problems"
-
- #45 Little style Bug in Office2013 Style
- #46 Little Bug in Office2010 style
- #49 Fluent:RibbonProperties.TitleBarHeight="0" no longer works!
- #50 Blurred Window Icon in Office 2013 Style
- #55 Changing menu font size in Windows mess ups ribbon
- #57 Slimmer arrow on combo box
- #58 ColorGallery SelectedColor
- #59 Little style bug in Windows 8 theme
-
- Ribbon, RibbonTitleBar and RibbonStatusBar now use SystemFonts.MenuFont* as font settings
-
- #23 "Drop support for ancient .NET 3.5"
- #24 "RibbonTitleBar.MeasureOverride should not return the constraint parameter value"
- #25 "Press Alt key without Backstage raises ArgumentNullException"
- #28 "Height and FontSize of MenuItem"
- #30 "Line break in _minimizeButtonScreenTipText"
- #33 "Fix Issue #24 : measureoverride"
- #35 "Quick Access Toolbar IsChecked never correctly set"
- #36 "Fix size of group box controls with large font."
- #39 "Application menu button has wrong height"
- #40 "Simplified Chinese translation may be wrong"
- #41 "Fix issue #30 - Line break in _minimizeButtonScreenTipText"
- #42 "Set correct height on backstage and application menu button"
- #43 "Added delay in ClosePopupOnMouseDown feature"
- #44 "Little Bug in Office2013 style"
-
- Added DropDownButton.ClosePopupOnMouseDown property which defaults to false. If true, it will close the drop down popup automatically when a mouse down event occurs.
- #3 "Consider using GitLink to allow users to step through Fluent source code"
-
- Renaming InnerBackstageTabCotrolItem to InnerBackstageTabControlItem
-
- Fixed: #11 "ContextMenu and Popup has 10px space at bottom and right side"
- Fixed: #13 "Backstage does not open at application start anymore"
- Fixed: #17 "Problem with Mouse Capture on SplitButton"
- Fixed: #18 "Tabs are disabled when using datatemplate for viewmodel in window content"
- Fixed: #19 "Vertical Scrollbar will not hide in Fluent:Combobox"
- Fixed: 22521 "RibbonWindow is activated when focus is lost after Alt+Tab"
- Fixed: 22523 "Typo in Generic.xaml"
- Fixed: 22519 "Normalize button closes application) Thanks to GeertvanHorrik for finding out that the version of Microsoft.Windows.Shell for .NET 4.0 that was used is buggy."
- Fixed: 22519 "Normalize button closes application"
- Fixed an issue with closed direct member menus (keytips were always redirected for direct childs)
- Fixed: 22518 "Faulty white margin on the right and left of the window body"
- Fixed: 22516 "Issues with backstage content localization using WPF Localization Extension"
- Office 2013 theme is now included
- MVVM support got better (yet not complete, please file a bug for things you need to work)
- Samples are not divided anymore (all features shown there are now present in the showcase application)
- All resource reference are now of type "DynamicResource" see comments for changeset https://fluent.codeplex.com/SourceControl/changeset/3572af781b96
- We now use the WindowChrome class provided by Microsoft instead of custom code to render in the non client area
- Large amount of fixed bugs
- Style resources have been improved. That means you now have to include "Themes/Generic.xaml" to get Office 2010 silver and you can just import "Themes/Office2010/Black.xaml" etc. afterwards to get the different colors. To use the Office 2013 theme you can omit "Themes/Generic.xaml" and include "Themes/Office2013/Generic.xaml" instead. You can use RibbonWindow for Office 2010 or Office 2013 themes and you can switch between those at runtime. The showcase application shows how you can do that.
- No control in this library sets IsFocusScope=True anymore. This means that ApplicationCommands (such as paste, cut or copy), when bound to a button, don't get enabled when you would expect them to be activated. The showcase application uses those buttons with IsFocusScope=True.