A.this.mnmMenu.Items.Remove("文件");B.this.mnmMenu.Items.RemoveAt(0);C.this.mnmMenu.Items.RemoveAt(1);D.this.mnmMenu.Items.RemoveAt("文件");
单项选择题WinForms窗体的后缀名是()
A.csB.aspxC.formD.xml
多项选择题.Net Framework 数据提供程序包含的对象有()
A.ConnectionB.CommandC.DataReaderD.Data
多项选择题要使用适配器对象获取MyTable 表中所有数据,假设con 是可用的连接对象,则正确的方式为()
A.SqlDataAdapter da =SqlDataAdapter("SELECT *FROM MyTable",con);DataSet ds =new DataSet();da.Fill(ds);B.SqlCommand cmd =new ("SELECT *FROM MyTable",con);SqlDataAdapter da =SqlDataAdapter(cmd);DataSet ds =new DataSet();da.Fill(ds);C.SqlCommand cmd =new ("SELECT *FROM MyTable",con);SqlDataAdapter da =SqlDataAdapter(cmd);DataSet ds =new DataSet();da.Fill(ds,"MyTable");D.SqlDataAdapter da =SqlDataAdapter("SELECT *FROM MyTable",con);DataSet ds =new DataSet();da.Fill(ds.Tables["MyTable"]);
单项选择题为了使ListView 控件右键单击时能够显示一个上下文菜单,必须设置其()属性。
A.ShowMenuB.MenuStripC.ContextMenuStripD.Menu
单项选择题在Winform中,决定控件上文字的字形,字体,大小,颜色及效果的属性是()
A.TextB.CaptionC.NameD.Font