Shai UI
Shai UI

Reputation: 51958

WPF/Silverlight: How to disassemble a XAML from a DLL file?

I tried .NET reflector with no luck. Is that the primary way?

Upvotes: 5

Views: 2036

Answers (3)

Dan Gøran Lunde
Dan Gøran Lunde

Reputation: 5353

I had problems finding the XAML view in Reflector 6.0.

  1. Add plugin via View -> AddIns -> Select BamlViewer.dll
  2. Restart Reflector 6.0 (not sure if this was required)
  3. Open XAML pane with Tools -> BAML Viewer

Upvotes: 0

Sonosar
Sonosar

Reputation: 526

with .Net reflector you can do it... open dll with reflector and navigate to resources of that dll. all the .xamls are there.

Upvotes: 2

Matěj Zábský
Matěj Zábský

Reputation: 17272

Check out BAML Viewer plug-in for .NET Reflector.

The plug-in.

How to use it.

Upvotes: 8

Related Questions