ErocM
ErocM

Reputation: 4662

WPF Creation versus Visual Studio Creation

I created a form in WPF and it looked great. When I opened it in Visual Studio 2010, it look alot different than what I created.

Any ideas why this would happen? Should I ignore how it shows up in VS? This makes me wonder if either is how the user will actually see it.

Any suggestions?

Thanks again! Eroc

Upvotes: 1

Views: 52

Answers (1)

JaredPar
JaredPar

Reputation: 754575

The Visual Studio view of your WPF form is the designer view. Designer views of WPF forms, or really any other design of a UI component, will often differ in dislpay vs. the actual running component. Some of these differences are intentional to make design easier and some are just limitations of not having the WPF element actually running in a program (lack of certain runtime data bindings for example).

I wouldn't worry about it unless it starts looking incorrect when running.

Upvotes: 1

Related Questions