Dejan Stuparic
Dejan Stuparic

Reputation: 595

Change look and feel in WPF application?

Is there easy way to change look and feel of your WPF app, just like in Java Swing?

I can change it manually, by adopting manually crated styles on various controls...

Upvotes: 2

Views: 943

Answers (2)

TomTom
TomTom

Reputation: 62111

I can change it manually, by adopting manually crated styles on various controls...

Depends how smart you were developing it.

Normal WPF controls have no look at all - to start with. They use INHERITED STYLES, which you can override. If you override them manually, as you said, on various controls, you basically willfully ignore the inheritance. Just put in a new style catalogue at the root of the inheritance tree.

Upvotes: 1

as-cii
as-cii

Reputation: 13019

I don't know if I have well understood the question but in WPF Toolkit there are some themes that allows you to change quickly your application interface.

Upvotes: 1

Related Questions