ImageVerifierCode 换一换
格式:DOCX , 页数:18 ,大小:21.91KB ,
资源ID:16078390      下载积分:3 金币
快捷下载
登录下载
邮箱/手机:
温馨提示:
快捷下载时,用户名和密码都是您填写的邮箱或者手机号,方便查询和重复下载(系统自动生成)。 如填写123,账号就是123,密码也是123。
特别说明:
请自助下载,系统不会自动发送文件的哦; 如果您已付费,想二次下载,请登录后访问:我的下载记录
支付方式: 支付宝    微信支付   
验证码:   换一换

加入VIP,免费下载
 

温馨提示:由于个人手机设置不同,如果发现不能下载,请复制以下地址【https://www.bdocx.com/down/16078390.html】到电脑端继续下载(重复下载不扣费)。

已注册用户请登录:
账号:
密码:
验证码:   换一换
  忘记密码?
三方登录: 微信登录   QQ登录  

下载须知

1: 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。
2: 试题试卷类文档,如果标题没有明确说明有答案则都视为没有答案,请知晓。
3: 文件的所有权益归上传用户所有。
4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
5. 本站仅提供交流平台,并不能对任何下载内容负责。
6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。

版权提示 | 免责声明

本文(《人机界面设计》选择题样题文档格式.docx)为本站会员(b****5)主动上传,冰豆网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对上载内容本身不做任何修改或编辑。 若此文所含内容侵犯了您的版权或隐私,请立即通知冰豆网(发送邮件至service@bdocx.com或直接QQ联系客服),我们立即给予删除!

《人机界面设计》选择题样题文档格式.docx

1、 / C# Form1 myForm; myForm = Form1.CreateForm();B. VB myForm.Show() / C# myForm.Show();C. myForm = Form1 myForm = Form1;D. myForm = New Form1() myForm = new Form1();2. Which of the following code snippets correctly demonstrates how to set a form to a nonrectangular shape? (C)下面的代码片段演示了如何设置非矩形形状的形式?A

2、. Dim aPath As New System.Drawing.Drawing2D.GraphicsPath aPath.AddEllipse(0, 0, this.Width, this.Height) Me.Region = New Region(); System.Drawing.Drawing2D.GraphicsPath aPath = new System.Drawing.Drawing2D.GraphicsPath(); aPath.AddEllipse(0, 0, Me.Width, Me.Height); this.Region = new Region(); aPath

3、.AddEllipse(0, 0, Me.Width, Me.Height) aPath.AddEllipse (0, 0, this.Width, this.Height); Me.Region = New Region(aPath) aPath.AddEllipse(0, 0, this.Width, this.Height); this.Region = new Region(aPath); Me.Region = aPath this.Region = aPath;3. Which of the following code samples correctly sets the tit

4、le, border style, size, and opacity of a form? (A)下面的代码样本中正确设置的标题,边框样式,大小和不透明度的一种形式? Me.Text = My Form Me.FormBorderStyle = FormBorderStyle.Fixed3D Me.Size = New Size(300, 300) Me.Opacity = 0.5 this.Text = ; this.FormBorderStyle = FormBorderStyle.Fixed3D; this.Size = new Size(300, 300); this.Opacity

5、 = 0.5; Me.BorderStyle = Fixed3D this.BorderStyle = Me.Size = (300,300) Me.Opacity = 100% this.Size = (300,300); this.Opacity = Me.Title = Me.Size = New Size(300,300) this.Title = this.Size = new Size(300,300);Lesson 21. Which of the following code samples demonstrates how to set a flow break on a c

6、ontrol named aButton in a FlowLayoutPanel named FLPanel1?下面的代码示例演示如何设置流断裂在一个FlowLayoutPanel的名为FLPanel1名为aButton获得控制? aButton.SetFlowBreak() aButton.SetFlowBreak(); aButton.SetFlowBreak(FLPanel1) aButton.SetFlowBreak(FLPanel1); FLPanel1.SetFlowBreak(aButton, True) FLPanel1.SetFlowBreak(aButton, true)

7、; FLPanel1.aButton.SetFlowBreak FLPanel1.aButton.SetFlowBreak();2. You are designing an application that includes a property page that enables the user to set properties of the application. These properties are divided into three categories: Appearance, Execution, and Memory Management. Which contai

8、ner control represents the best starting point for the user interface?你正在设计一个应用程序,其中包括一个属性页,使用户能够设置应用程序的属性。这些属性分为三类:外观,执行和内存管理。哪一个容器控件代表用户界面的最佳起点?A. TableLayoutPanel B. FlowLayoutPanel C. GroupBox D. TabControl 3. Which of the following is the correct way to add a control to a form at design time? (

9、Choose all that apply.) (A、B、C、D)下列哪一项是正确的方法,在设计时添加控件到窗体? (选择所有适用)A. Select a control in the Toolbox and double-click the form. B. Select a control in the Toolbox and draw on the form with the mouse. C. Double-click the control in the Toolbox. D. Select the control in the Toolbox and drag it to the

10、form. A.选择控制工具箱中双击表格。B.选择工具箱中的一个控制,用鼠标画的形式。C.双击工具箱中的控制。D.在工具箱中选择的控制,并将其拖动到表单。4. Which of the following code samples demonstrates the correct way to add a Button control to a form named Form1 at run time? (B)下面的代码示例演示一个名为Form1的窗体在运行时正确的方式来添加一个Button控件?Form1.Controls.Add(Button) / C#Form1.Controls.Add(Button);

copyright@ 2008-2022 冰豆网网站版权所有

经营许可证编号:鄂ICP备2022015515号-1