您好,欢迎访问三七文档
当前位置:首页 > 临时分类 > C2012大学教程第2章剖析
2009PearsonEducation,Inc.Allrightsreserved.22VisualStudioExpress2012forWindowsDesktop介绍2009PearsonEducation,Inc.Allrightsreserved.3Seeingisbelieving.眼见为实–ProverbFormeverfollowsfunction.–LouisHenriSullivanIntelligenceisthefacultyofmakingartificialobjects,especiallytoolstomaketools.–Henri-LouisBergson2009PearsonEducation,Inc.Allrightsreserved.4目标本章将讲解:VisualStudioExpress2012forWindowsDesktopIntegratedDevelopment(IDE)基础知识,编写、运行和调试应用。VisualStudio的帮助特性。IDE’s菜单和工具栏中的主要命令。理解VisualStudioExpress2012forWindowsDesktopIDE中各种窗口的用途。2009PearsonEducation,Inc.Allrightsreserved.5目标什么是可视化程序开发,它是如何简化和提速应用开发的。用可视化程序开发技术创建、编译和执行简单的VisualC#程序,可视化程序技术显示文本和图像。2009PearsonEducation,Inc.Allrightsreserved.62.1简介2.2VisualStudioExpress2012IDE概述2.3菜单栏和工具栏2.4VisualStudioIDE导航2.5使用帮助2.6使用可视化程序开发创建简单的程序,显示文本和图像2009PearsonEducation,Inc.Allrightsreserved.72.1简介•VisualStudio2012是Microsoft的集成开发环境(IDE),用于创建、运行和调试各种.NET编程语言编写的程序。•VisualStudio2012IDE允许拖放预定义的组件到合适的界面位置—这种技术就叫做可视化程序开发(visualappprogramming)。2009PearsonEducation,Inc.Allrightsreserved.82.2概述VisualStudioExpress2012IDE•有多个可用的VisualStudio版本。书中的大多数例子基于VisualStudioExpress2012forWindowsDeskto版本。.•给出的例子能够用于VisualStudio的所有版本—但有些选项、菜单和指令可能有所不同。2009PearsonEducation,Inc.Allrightsreserved.9•MicrosoftVisualStudioExpress2012forWindowsDesktop简介•启动IDE,选择“开始”“所有程序”MicrosoftVisualStudio2012ExpressVSExpressforDesktop(在Windows8系统中,在开始屏幕上单击VSforDesktop图标)2.2概述VisualStudioExpress2012IDE(续.)2009PearsonEducation,Inc.Allrightsreserved.2.2概述VisualStudioExpress2012IDE(续.)图.2.1|在VisualStudioExpress2012forWindowsDesktop中的开始页.•一旦开始执行ExpressEdition,会显示“开始页“标签。(如图.2.1).2009PearsonEducation,Inc.Allrightsreserved.11•“开始页”中的链接被分为两列–左列“开始”(Start)部分包含的选项可以用来新创建一个程序或者打开以前创建的程序。“最近”(Recent)部分包含最近创建或修改过的工程的链接。–右列包含三个标签—入门,操作方法视频,新闻。-“入门”标签提供由VisualStudio和学习资源提供的编程语言信息。-新闻标签包含一个RSSFeed按钮。2.2概述VisualStudioExpress2012IDE(续.)2009PearsonEducation,Inc.Allrightsreserved.12•你可以使用网络浏览器(internalwebbrowser)浏览网页。•选择“试图”(View)“其他窗口”(OtherWindows)Web浏览器(WebBrowser)。•通过输入URL地址到地址栏访问Web网页(图.2.2).2.2概述VisualStudioExpress2012IDE(续.)Requestedwebpage(URLinlocationbardrop-down)SelectedtabforrequestedwebpageFig.2.2|在VisualStudio中显示网页.2009PearsonEducation,Inc.Allrightsreserved.13•工程(project)是一组相关的文件,比如创建程序的代码文件和一些图像文件。•解决方案(Solutions)包含一个或多个工程。•VisualC#开始编程,选择“文件”(File)“新建工程”(NewProject)。2.2概述VisualStudioExpress2012IDE(续.)2009PearsonEducation,Inc.Allrightsreserved.14•“新建工程”对话框(图.2.3)2.2概述VisualStudioExpress2012IDE(续.)图2.3|“新建工程”对话框2009PearsonEducation,Inc.Allrightsreserved.2.2概述VisualStudioExpress2012IDE(续.)•用户可以用VisualC#模板创建工程类型(Templates)–在Windows操作系统运行一个Windows窗体应用程序,这个程序具有一个可视化用户界面【graphicaluserinterface(GUI)】——用户与程序交互的可视化部分。2009PearsonEducation,Inc.Allrightsreserved.16•选择“窗体应用程序”,然后单击“确定”显示IDE设计视图(图.2.4),它包含创建程序的特性。•灰色的方块(叫窗体Form)表示应用程序的主窗体。2.2概述VisualStudioExpress2012IDE(续.)2009PearsonEducation,Inc.Allrightsreserved.172.2概述VisualStudioExpress2012IDE(续.)图.2.4|IDE的设计视图.2009PearsonEducation,Inc.Allrightsreserved.18•图2.5显示在属性窗口(Properties)修改窗体的名称。2.2概述VisualStudioExpress2012IDE(续.)图.2.5|在VisualStudioIDE中的文本框控件中修改属性.Textbox(displayingtheForm’sname,Form1)whichcanbemodified2009PearsonEducation,Inc.Allrightsreserved.19•图2.6显示在字体对话框中修改控件的文字属性。2.2概述VisualStudioExpress2012IDE(续.)图.2.6|在VisualStudioIDE中通过属性对话框修改控件的文字属性OKbuttonCancelbutton2009PearsonEducation,Inc.Allrightsreserved.202.3菜单栏和工具栏(续.)•管理IDE的命令被包含在菜单和菜单栏中(图.2.7)。•菜单栏的显示依赖于当前在IDE中所做的工作。•菜单包含相关的菜单项(menuitems)使IDE执行特定的操作。•图2.8总结了图2.7中显示的菜单。图.2.7|VisualStudio菜单栏2009PearsonEducation,Inc.Allrightsreserved.21MenuDescriptionFileCommandsforopening,closing,addingandsavingprojects.EditCommandsforeditingprograms,suchascut,copy,paste,undo,redo,delete,findandselect.ViewCommandsfordisplayingIDEwindowsandaddingtoolbars.ProjectCommandsformanagingprojectsandfiles.BuildCommandsforcompilingprograms.DebugCommandsfordebuggingandrunningprograms.DataContainscommandsforinteractingwithdatabases.FormatCommandsforarrangingandmodifyingaForm’scontrols.ToolsCommandsforcustomizationoftheIDE.WindowCommandsforhiding,opening,closinganddisplayingIDEwindows.HelpCommandsforaccessingtheIDE’shelpfeatures.图.2.8|VisualStudio2012IDE菜单.2.3菜单栏和工具栏(续.)2009PearsonEducation,Inc.Allrightsreserved.2.3菜单栏和工具栏(续.)•从工具栏中可以访问许多常用的菜单命令(图.2.9),包含了图标,它以图示化的方式显示命令。•显示的标准工具栏可以修改,依靠所使用的的VisualStudio版本。2009PearsonEducation,Inc.Allrightsreserved.232.3菜单栏和工具栏(续.)图.2.9|VisualStudio标准工具栏.后向导航新工程向后导航打开文件保存保存全部恢复重做启动解决方案配置解决方案平台在文件中查找2009PearsonEducation,Inc.Allrightsreserved.242.3菜单栏和工具栏(续.)•添加更多的工具栏(视图(View)工具栏(Toolbars)(图.2.10).图.2.10|添加Build工具栏到IDE.Additionaltoolbarsappearhere2009PearsonEducation,Inc.Allrightsreserved.252.3菜单栏和工具栏(续.)•鼠标悬停在图标上会使图标加亮显示,只需做短暂停留就会显示这个图标的描述,这称为工具提示(图.2.11)。•同居提示有助于熟悉IDE的特性便于记住每个工具栏图标的功能。图.2.11|IDE工具栏图标显示额外的命令当鼠标悬停在一个图标上时,就会出现工具提示2009PearsonEducation,Inc.Allrightsreserved.262.4VisualStudioIDE导航•IDE提供的窗口用于访问工程文件和定制控件。•IDE的窗口可以通过选择“视图”菜单的名称访问。2009PearsonEducation,Inc.Allrightsreserved.272.4StudioIDE导航(续.)•VisualStudio提供了一个节省空间的特性,称为自动隐藏。(auto-hide)•当自动隐藏可用时,标签显示在IDE的边缘(图.2.12)。图.2.12|自动隐藏特性
本文标题:C2012大学教程第2章剖析
链接地址:https://www.777doc.com/doc-3970472 .html