Reputation:
I am trying to use the Fluent ribbon suite but it's giving me error after error after error and I've not changed a single thing about it yet, I downloaded and read the entire walkthrough and search all over the web but couldn't find any help trying to get it to work.
It keeps tellling me that it's missing this and that.
And when I load it into visual studio, it won't let me view the designer because of missing assemblies, BUT THEY'RE ALL THERE. I even went through the whole damn process of unblocking every single file included in the download, it still just can't "find them". I even readded them using 'Add reference' option but nothing works.
Can someone please help me get this thing to work?
Any help is appreciated.
Thank you
Upvotes: 0
Views: 1836
Reputation: 3163
After you download the zip file, go to file property and UNBLOCK it!
Upvotes: 1
Reputation: 41
Try placing following code in app.xaml
file
<Application.Resources>
<!--Attach Default Fluent Control's Theme-->
<ResourceDictionary Source="pack://application:,,,/Fluent;Component/Themes/Office2010/Blue.xaml" />
</Application.Resources>
This might resolve the problem.
Upvotes: 4