-
-
Notifications
You must be signed in to change notification settings - Fork 517
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Custom method for saving and restoring QAT items #276
Comments
@floele-sp Could you have a look if my implementation fits your needs? |
@batzen Thanks, the GetQuickAccessElements()-method should be sufficient. |
@floele-sp So the implementation fits your needs, or not? ;-) |
@batzen I cannot currently upgrade the Fluent library so I didn't use it yet, but in theory it fits my needs, |
@floele-sp Ok, then please post back as soon as you got the chance to verify my implementation. |
@floele-sp Any news? |
@batzen Sorry, but no. We'll need a few more weeks before we can upgrade, but I'll let you know. I probably need to report a few issues I noticed (if still present) anyway. |
I don't like to pressure you, but this is the last open issue that's preventing version 5.0 from being released ;-) |
It's not the last open issue anymore. Moved some issues from 6.0 to 5.0. ;-) |
I don't really want to stop you releasing 5.0, so feel free to close it. |
Fluent still works with .net 4.0. You just need VS 2015 to compile. Have a look at the appveyor build, you can grab the compiled binaries from there. Will release the first official preview for v5 to nuget someday this week. |
Oh I should probably have used the 4.0.csproj ;) Alright, looks like the new property is working fine, thanks. |
Thanks for testing. |
Our application needs to store QAT items within an XML file. Currently the ribbon does not provide access to these items, however. My minimally invasive method to achieve my goal so far was changing
// Currently added in QAT items
private readonly Dictionary<UIElement, UIElement> quickAccessElements = new Dictionary<UIElement, UIElement>();
to
// Currently added in QAT items
protected readonly Dictionary<UIElement, UIElement> quickAccessElements = new Dictionary<UIElement, UIElement>();
and then implement the required functionality in a derived ribbon class. An officially supported way to do this would be great.
The text was updated successfully, but these errors were encountered: