How to use the Elysium project?

The Elysium project on CodePlex looks interesting. One problem. I can’t figure out how to use it. I can only assume that there is an assumption that the user knows what he or she is doing. I do not see. I am downloading the Debug binary from here . It has a batch file for uploading files, and it seems to run without errors. But I can’t figure out where to go from here. When I open Blend, I do not see templates or themes. Can anybody help?

thanks

+7
source share
4 answers
  • Download files from Codeplex or Nuget.
  • Add links to the binary files: Elysium.Theme.dll , Microsoft.Expression.Interactions.dll , Microsoft.Windows.Shell.dll and System.Windows.Interactivity.dll
    • Note. Some of the binaries that come with the package are not added correctly if you do this through Nuget, so you will have to add them manually.
  • When you add a new window to your application, add this namespace to your XAML: xmlns:metro="http://schemas.codeplex.com/elysium/theme"
  • Then change your XAML so that this window is not just <Window ..>...</Window> , but instead <metro:Window ..>...</metro:Window> .
  • There are many other examples in the test project on the Elysium site that show how to use user controls, etc.

That should get you started.

Good luck.

+17
source

For Elysium 1.5 onwards, here is the step.

  • Download and extract the zip file.
  • Look for " Elysium.dll " and " Elysium.Notifications.dll ". You may need to extract the zip again if you are using an x86 system.
  • Add link to Elysium.dll and Elysium.Notifications.dll
  • Add Elysium controls to visual studio
  • Drag any Elysium theme control into your user interface, visual studio will automatically add the xmlns link to xaml.

See http://bizvise.com/2012/09/24/how-to-install-elysium-on-visual-studio-project/ for a complete walkthrough.

+3
source

Download the SDK from here and enable the SDK. It integrates with Visual Studio, and you also have the Metro WPF template.

+1
source

For Elysium version 2.0, here I did:

  • Download the SDK here .
  • Extract the .zip file.
  • Install the correct .exe file (x86 or x64).
  • Restart Visual Studio (if open).
  • Create a new project using the WPF Metro app: enter image description here

  • Finally, you can add controls manually in the toolbar: enter image description here

If you like this extension, you can donate on your site.

+1
source

All Articles