分享
 
 
 

Visual Studio Integrated Development Environment (IDE)

王朝asp·作者佚名  2006-01-10
窄屏简体版  字體: |||超大  

Visual Studio Integrated Development Environment (IDE)

When you start a new project in Visual Studio .NET, you will see a group of

windows opened within the development environment (one possible layout is

shown in Figure 3.4). The following subsections describe each of these

windows.

Figure 3.4. Several windows will be open when you start a new Visual Studio

.NET project.

Toolbox Window

The Toolbox window contains a list of controls or components that you can

drag and drop onto your design surface. The Toolbox window contains several

tabs that make different sets of components available, depending on the

type of designer active in the editor window (the window in the middle of

the environment). If you are designing a Windows Form, you will get a

specific set of tools that work with Windows Forms. If you are designing a

Web Form, you will get a specific set of tools for working with Web Forms.

If you are designing an XML document, there will be other options you can

choose. To view the Toolbox window, select View, Toolbox from the Visual

Studio .NET menu bar. Figure 3.5 shows the Toolbox window displaying

controls available on Windows Forms.

Figure 3.5. The Toolbox holds a list of controls.

TIP

In addition to providing the standard tools and tabs that Visual Studio

.NET provides, you can add tabs, as well as your own code snippets, to the

Toolbox. Right-click the Toolbox window to add or delete tabs. You can drag

code from the code editor onto the Toolbox, as well, for later use.

If you wish to customize the list of tools displayed in the Toolbox window,

or if you wish to add any additional .NET components, ActiveX controls, or

third-party controls, choose the Tools, Customize Toolbox menu item to

display the Customize Toolbox dialog box, as shown in Figure 3.6 and Figure

3.7. Figure 3.6 shows a list of available COM components, and Figure 3.7

shows the available .NET Framework components.

Figure 3.6. Customize Toolbox lets you add COM components to your Toolbox.

Figure 3.7. Use Customize Toolbox to choose which .NET Framework components

are displayed in the Toolbox window.

Solution Explorer Window

In Visual Studio .NET, a solution is a set of one or more projects that are

part of the same application. The Solution Explorer window shows you an

expandable list of projects, each project's references, and each project's

components. If this window is closed, you can open it by selecting the

View, Solution Explorer menu item. Components may be made up of forms,

classes, modules, and any other file types it takes to create your

application. Double-click an item in order to edit that item within the

IDE. Figure 3.8 shows the Solution Explorer window displaying the contents

of a sample Windows application solution.

Figure 3.8. The Solution Explorer gives you a graphical representation of

all the files that make up your project(s).

The Solution Explorer window displays a series of buttons across its top,

and these buttons dynamically change based on the item you have selected in

the Solution Explorer window. Table 3.3 describes some of these buttons,

starting with the leftmost and proceeding right.

Table 3.3. Buttons on the Solution Explorer Window Button Description

View Code Displays the code for the file that has focus in the Solution

Explorer

View Designer Displays the designer for the specific file that has focus

in the Solution Explorer

Refresh Refreshes the Solution Explorer

Show All Files Displays all files associated with the project, including

files normally hidden by Visual Studio

Properties Displays the Properties window, which shows properties for the

selected file

Class View Window

When you start creating your own classes, you may want to see a list of all

the properties and methods available in those classes. You can use the

Class View window, as shown in Figure 3.9, to get an overview of these

items. You can bring up this win-dow using the View, Class View menu item.

Once the window is displayed, you can expand each item in the list to see

the members of the class. If you choose any of these members, you can

right-click and see a menu of actions that apply directly to the definition

of that member. Double-click any of the members of the class to display a

code window with the item definition displayed in the editor.

Figure 3.9. The Class View is an excellent way to view all the properties

and methods of your classes.

Server Explorer Window

The Server Explorer window (accessed using the View, Server Explorer menu)

allows you to view the various services available on a particular server.

These services include Crystal Services (for working with Crystal Reports),

Event Logs, Message Queues, Performance Counters, and SQL Servers.

For most of these services, you can drill down and see a list of existing

items梐nd you can even add new items. You can drag and drop a service from

the Server Explorer window, shown in Figure 3.10, onto a design surface so

that you can interact with the element programmatically in your

application. For example, you can drag a performance counter onto a Web

Form and use that component to interact with the counter. You could also

drag a database table onto a page, and it will automatically create the

necessary "plumbing" so that you can work with data from that table.

Figure 3.10. The Server Explorer window shows a list of servers, Windows

services, databases, event logs, and more, available on your server or any

server to which you can attach.

Properties Window

The Properties window provides a visual means of investigating and altering

the properties of any object within the Visual Studio .NET environment. You

can display the Properties window using the View, Properties Window menu

item. Once this window is visible, you can either view the list

alphabetically or categorized by attribute. Some properties within this

window can be selected from a list; others allow you to click a button that

brings up a dialog box. Still others require you to supply text by typing

into a text box. Figure 3.11 shows the Properties window.

Figure 3.11. The Properties window is where you will spend a lot of time.

Object Browser Window

Similar to the Class View window, the Object Browser window shows you a

list of classes and their respective members. The main difference between

these two tools is that the Object Browser allows you to browse all

referenced components, not just the components for the current project like

the Class View window does. A nice feature of the Object Browser is that it

also shows you the full declaration for the method or property. Bring up

the Object Browser by using the View, Other Windows, Object Browser menu

item. Figure 3.12 shows the Object Browser window in use.

Figure 3.12. The Object Browser shows you a complete list of all classes,

properties, and methods in your project.

Task List Window

The Task List window displays, among other items, any To Do items that you

have entered in your code. In addition, you'll see information about build

errors in this window. Bring up the Task List window using the View, Other

Windows, Task List menu item. You will then see a window in your design

environment similar to the one shown in Figure 3.13. To add a new task, you

can click where the window reads "Click here to add a new task," or you can

add comments in a specific format right in your project code. The default

comment that adds to the Task List looks like this:

'TODO: Write the RepeaterBind procedure here

Figure 3.13. Tasks can help you organize your thoughts on what needs to be

done to complete your project.

Use TODO: after the comment mark (the apostrophe), and the Task List will

display your comment. You can double-click a task in the Task List window

to take you directly to the associated comment in your code.

TIP

You can create your own Task List items using the Tools, Options menu item.

Within the Options dialog box, select Environment, Task List in the left

pane. In the right pane, add new items. By default, Visual Studio .NET uses

HACK, TODO, and UNDONE as Task List indicators. Add your own tag items to

this list and click the Add button to make them available as tags that link

comments in your code with the Task List.

 
 
 
免责声明:本文为网络用户发布,其观点仅代表作者个人观点,与本站无关,本站仅提供信息存储服务。文中陈述内容未经本站证实,其真实性、完整性、及时性本站不作任何保证或承诺,请读者仅作参考,并请自行核实相关内容。
2023年上半年GDP全球前十五强
 百态   2023-10-24
美众议院议长启动对拜登的弹劾调查
 百态   2023-09-13
上海、济南、武汉等多地出现不明坠落物
 探索   2023-09-06
印度或要将国名改为“巴拉特”
 百态   2023-09-06
男子为女友送行,买票不登机被捕
 百态   2023-08-20
手机地震预警功能怎么开?
 干货   2023-08-06
女子4年卖2套房花700多万做美容:不但没变美脸,面部还出现变形
 百态   2023-08-04
住户一楼被水淹 还冲来8头猪
 百态   2023-07-31
女子体内爬出大量瓜子状活虫
 百态   2023-07-25
地球连续35年收到神秘规律性信号,网友:不要回答!
 探索   2023-07-21
全球镓价格本周大涨27%
 探索   2023-07-09
钱都流向了那些不缺钱的人,苦都留给了能吃苦的人
 探索   2023-07-02
倩女手游刀客魅者强控制(强混乱强眩晕强睡眠)和对应控制抗性的关系
 百态   2020-08-20
美国5月9日最新疫情:美国确诊人数突破131万
 百态   2020-05-09
荷兰政府宣布将集体辞职
 干货   2020-04-30
倩女幽魂手游师徒任务情义春秋猜成语答案逍遥观:鹏程万里
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案神机营:射石饮羽
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案昆仑山:拔刀相助
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案天工阁:鬼斧神工
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案丝路古道:单枪匹马
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:与虎谋皮
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:李代桃僵
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:指鹿为马
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案金陵:小鸟依人
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案金陵:千金买邻
 干货   2019-11-12
 
推荐阅读
 
 
 
>>返回首頁<<
 
靜靜地坐在廢墟上,四周的荒凉一望無際,忽然覺得,淒涼也很美
© 2005- 王朝網路 版權所有