Reputation: 3793
Odyssey outlook bar has three themes. How can I change theme for it in XAML?
Upvotes: 1
Views: 794
Reputation: 398
The example code does the following:
SkinManager.SkinId = SkinId.OfficeBlack;
Upvotes: 0
Reputation: 3793
I found solution myself:
OutlookBar bar = new OutlookBar();
bar.Resources = Odyssey.Controls.Classes.SkinManager.WindowsSeven;
Upvotes: 1