单项选择题
下列关于窗体事件的描述,不正确的是()
A.窗体的显示有两种方式,分别为非模式窗体和模式窗体
B.调用窗体对象Show()方法,以非模式窗体显示
C.调用窗体对象的ShowDialog()方法,以模式窗体显示
D.模式窗体与非模式窗体,两种显示方式没有区别
点击查看答案
相关考题
-
单项选择题
以下代码输出结果是()string str="abcd";int result=str.IndexOf("a");Console.WriteLine(result)
A.-1
B.0
C.1
D.代码编写有误,不能运行 -
单项选择题
以下代码输出结果是()string str ="abcd";int result =str.LastIndexOf("d");Console.WriteLine(result)
A.4
B.3
C.0
D.代码编写有误,不能运行 -
单项选择题
以下代码输出结果是()string str ="aaa@qq.com";string[]result =str.Split(’@’);Console.WriteLine(result[0]);
A.aaa
B.qq.com
C.qq
D.代码编写有误,不能运行
