Maxim Gershkovich
Maxim Gershkovich

Reputation: 47199

WPF form displaying as winform

Sorry this is probably a really silly question but I am developing a WPF form on a Windows 7 machine with VS2010 yet when running the application the form still looks like a standard WinForms window.

I am assuming that it requires an extra component installed on the system to be displayed as shown in the designer?

PS: To be more specific what I am referring to is basically the outline and border.

Designer Running

Upvotes: 0

Views: 139

Answers (2)

CodeNaked
CodeNaked

Reputation: 41403

That border is just for design purposes. But you could add your own Border to recreate it during runtime.

Upvotes: 0

Jean-Louis Mbaka
Jean-Louis Mbaka

Reputation: 1612

No, what you are experiencing is totally normal. Unless you have altered the default style of your controls, your application will be drawn using windows default look and feel.

Upvotes: 1

Related Questions