网友您好, 请在下方输入框内输入要搜索的题目:
题目内容
(请给出正确答案)
如何更改画布大小?
A.选择Edit>canvas>canvas size
B.选择Modify>canvas size
C.选择Modify>canvas>canvas size
D.选择Select>canvas size
参考答案
更多 “ 如何更改画布大小?A.选择Edit>canvas>canvas sizeB.选择Modify>canvas sizeC.选择Modify>canvas>canvas sizeD.选择Select>canvas size ” 相关考题
考题
请完成下列Java程序:建立一个Applet程序,包括创建一个画布构件、一个面板构件,面板构件上包含3个按钮,用来设置画布和面板的背景颜色,这3个按钮(Red、Green、Blue)分别控制画布和面板背景色改变为3原色,即红、绿、蓝。要求画布宽度为300,高度为200。注意:请勿改动main()主方法和其他已有语句内容,仅在下划线处填入适当的语句。源程序文件代码清单如下:import java.awt.*;import java.applet.*;/*<applet code="ex10_2.class" width=800 height=400 ></applet>*/public class ex10_2 extends Applet{private Panel pane110_2;private Canvas canvas10_2;private Button btn1, btn2, btn3;public void init(){canvas10_2=new Canvas();canvas10_2. ______;canvas10_2.setBackground(Color.black);add(canvas10_2);pane110_2 = new Panel();pane110_2.setBackground( Color.black );btn1 = new Button( "Red" );btn2 = new Button( "Green" );btn3 = new Button( "Blue" );pane110_2.add( btn1 );pane110_2.add( btn2 );pane110_2.add( btn3 );______;}public boolean action( Event e, Object o ){if( e.target == btn1 ){pane110_2.setBackground( Color.red );canvas10_2.setBackground( Color.red );}else if( e.target == btn2 ){pane110_2.setBackground( Color.green );canvas10_2.setBackground(Color.green);}else if( e.target == btn3 ){canvas10_2.setBackground( Color.blue );pane110_2.setBackground( Color.blue );}return true;}}
考题
一个应用程序必须继承Canvas类才能获得有用的功能,比如创建一个自定义构件。如果想在画布上完成一些图形处理,则Canvas类中的哪个方法必须重写?A.add()B.requestFocus()C.repaint()D.paint()
考题
canvas元素构建的画布是一个基于二维(x,y)的网格,坐标原点(0,0)位于canvas的(),从原点延x轴(),从原点延y轴(),取值依次递增。
A.右上角,从左到右,从上到下B.右下角,从右到左,从下到上C.左下角,从左到右,从下到上D.左上角,从左到右,从上到下
考题
关于canvas不正确的是()A、canvas是HTML5的一部分,允许脚本动态渲染位图像B、canvas是作为Flash的替代技术出现C、canvas拥有多种绘制路径、矩形、圆形、字符及添加图像的方法D、Internet Explorer自Internet Explorer9起已经可以支持canvas
考题
J2ME用户界面组件分为高阶用户界面组件和低阶用户界面组件,以下描述正确的是()A、Screen类属于低阶用户界面组件B、Canvas类属于高阶用户界面组件C、Screen类和Canvas都属于高阶用户界面组件D、Displayable类是Screen类和Canvas类的父类
考题
以下关于Canvas的描述有误的是()A、通常Canvas(画布)、Paint(画笔)、Bitmap(位图)、ViewFlipper(动画)和使用OpenGL去设计的2D、3D图形或动画是用来开发Android游戏的类库。B、Canvas就像手机中的画布,我们只能在Canvas上绘制图片。C、View类的onDraw()方法会传入一个Canvas对象,用来绘制组件界面的画布。D、Android提供了多种处理图形图像的工具类,加上自定义View技术,几乎可以完成任何的图形图像处理
考题
创建canvas画布使用的方法是()。A、getContent("3d")B、document.Context("3d")C、getContext("2d")D、document.Context("2d")
考题
如何更改画布大小?A、选择EditcanvascanvassizeB、选择ModifycanvassizeC、选择ModifycanvascanvassizeD、选择Selectcanvassize
考题
在Fireworks中,要设置画布的大小,可以进行的操作有:()A、在新建文档中设置画布的大小B、在图象操作过程中,单击“Modify”下拉菜单,选择“Canvas Size”命令进行调整C、在图象操作过程中,单击“Modify”下拉菜单,选择“Image Size”命令进行调整。D、在导出过程中,“Export preview”面板中设置导出区域。
考题
单选题以下关于Canvas的描述有误的是()A
通常Canvas(画布)、Paint(画笔)、Bitmap(位图)、ViewFlipper(动画)和使用OpenGL去设计的2D、3D图形或动画是用来开发Android游戏的类库。B
Canvas就像手机中的画布,我们只能在Canvas上绘制图片。C
View类的onDraw()方法会传入一个Canvas对象,用来绘制组件界面的画布。D
Android提供了多种处理图形图像的工具类,加上自定义View技术,几乎可以完成任何的图形图像处理
考题
单选题You need to create a form for Payroll application that will allow the user to view all information for any employee ID queried. This data should be displayed to the user in a grouped format. The user should be able to choose which information they want to see from a pull down list containing the values PERSONAL and PAYROLL. Which format should you use to create this form?()A
One content canvas and multiple stacked canvases. B
One content and one stacked canvas.C
Tab canvas with several tab pages. D
One content canvas. E
A horizontal and vertical toolbar.
考题
多选题在Fireworks中,要设置画布的大小,可以进行的操作有:()A在新建文档中设置画布的大小B在图象操作过程中,单击“Modify”下拉菜单,选择“Canvas Size”命令进行调整C在图象操作过程中,单击“Modify”下拉菜单,选择“Image Size”命令进行调整。D在导出过程中,“Export preview”面板中设置导出区域。
考题
单选题Which canvas built-in display the given canvas in front of any stacked canvases?()A
HIDE_VIEW B
SHOW_VIEW C
SET_CANVAS_PROPERTY D
REPLACE_CONTENT_VIEW
考题
单选题You need to display a very large single-record data block. Since it will be so large, a convenient means of navigation is needed between items. Which type of canvas would you use to display the data block? ()A
Tab canvas. B
Pop up canvas. C
Spread table canvas. D
Vertical toolbar canvas.
考题
单选题You need to add a pop-up menu to the CV_EMP canvas to display when a user right-clicks the mouse within the canvas. How could you create the pop-up menu?()A
Use the Layout Editor to create a pop-up menu, assign commands to the menu in the Menu Editor, and attack the menu items to the canvas. B
Use the Report Wizard to create a pop-up menu and attack the menu items to the canvas. C
Alter the pop-up Menu Property value in the Property Palette of the canvas. D
Use the Object Navigator to create a pop-up menu, assign commands to the menu items, and attack the menu to items or canvases.
考题
单选题如何修改画布大小?()A
编辑à画布à画布大小B
修改à画布大小C
修改à画布à画布大小D
选择à画布大小
热门标签
最新试卷