lindexi
lindexi

Reputation: 4327

How to get UWP control's source code?

I want to learn the solution in UWP to fix bug in wpf that I used the DotPeek to decompilate the UWP ListView control but I got the result without source code.

How to get the uwp control's source code?

I use some tool software to decompilate the control of uwp but I cant get the source code.

What I want is I can get the source code that can run in VisualStudio or you can support me a site like https://referencesource.microsoft.com/ that can see some source code.

As we know, WPF cant do some thing well but UWP can that I want to learn it.

Upvotes: 3

Views: 2960

Answers (2)

lindexi
lindexi

Reputation: 4327

Update

Now we can find some source code in Windows UI Library repo.

Upvotes: 4

mm8
mm8

Reputation: 169228

Unlike .NET, UWP is not open-sourced as of now so there is no where to get the uncompiled source code.

You will have to somehow decompile the assemblies if you want to take a look at the code. Decompiling native code is tough though.

Upvotes: 4

Related Questions