psti
psti

Reputation: 177

How to get to design view on Visual Studio 2013?

This is driving me insane. I keep clicking on the form I want to see but it just keeps showing me the code for it as oppose to the actual form. I'm on Visual Basic on visual studio if that helps.

Upvotes: 3

Views: 27128

Answers (8)

Shashi
Shashi

Reputation: 1

  1. Right click any HTML file in the Solution Explorer in Visual Studio and click on Open with
    2.Select the HTML (web forms) editor
    3.Click on Set as default
    4.Click on the OK button

Upvotes: 0

W. Kolling
W. Kolling

Reputation: 1

right click your project (right below the solution) in the solution explorer, add existing item, go to where you saved your project and add the form, and double click on the form. This worked for me.

Upvotes: 0

Arkadas Kilic
Arkadas Kilic

Reputation: 2484

You need to enable HTML Designer you can access this setting under Tools menu,

Tools > Options > HTML Designer > General

Make sure Enable HTML designer option is checked. You can also select how you want to see your forms on start up.

  • Source View
  • Design View
  • Split View

Upvotes: 1

KAThompson
KAThompson

Reputation: 151

With WinForms I had the same trouble, it turns out that VS2013 defaults to the "Class View" by default, so be sure to select the "Solution Explorer" first, then you can just double click the form name and the form designer for the form should open.

Upvotes: 1

Armando S
Armando S

Reputation: 11

At the solution explorer, right click on the file and select open with then select -Web Forms Editor- you can set it as default if you want. To see the code, right click on the file and select -View Mark Up - I hope it helps.

Upvotes: 1

Victor Zakharov
Victor Zakharov

Reputation: 26424

WinForms? Double click on the Form name in Solution Explorer always worked for me.

Upvotes: 0

user2694605
user2694605

Reputation:

Right click on the FormName.vb in the file view list and hit View Designer...

Upvotes: 4

Rick Hodder
Rick Hodder

Reputation: 2252

If you are talking about the web designer, there is a setting under Tools->Options->Html Designer->General called "Start Pages In" that lets you choose design or code or split view

If you are talking about Silverlight/XAML, there is a setting under Tools->Options->Text Editor->XAML called "Default View" that lets you choose to always open documents in full xaml view

Upvotes: 0

Related Questions