欢迎来到入门教程网!

C#教程

当前位置:主页 > 软件编程 > C#教程 >

MessageBox的Buttons和三级联动效果

来源:本站原创|时间:2020-01-10|栏目:C#教程|点击:

一、MessageBox的Buttons

MessageBox.Show可以出现有按钮的对话框

例如:

DialogResult dr = MessageBox.Show("是否要继续吗?", "警告!!!", MessageBoxButtons.OKCancel);//它弹出的对话框如下图所示
if (dr == DialogResult.OK)//只有按下确定按钮才执行下面
{
label1.Text = "天气不错";
}

除此之外MessageBoxButtons还有好几种对话框

二、三级联动

三个Combobox

public Form1()// Form1的构造函数
{
InitializeComponent();
AreaDataBind(comboBox1, "0001");
AreaDataBind(comboBox2, comboBox1.SelectedValue.ToString());
AreaDataBind(comboBox3, comboBox2.SelectedValue.ToString());
}
public void AreaDataBind(ComboBox cb, string Pcode)
{
cb.DataSource = new ChinaData().Select(Pcode);//数据源
cb.DisplayMember = "AreaName";//显示值
cb.ValueMember = "AreaCode";//实际值
}
private void comboBox1_SelectedIndexChanged(object sender, EventArgs e)
{
AreaDataBind(comboBox2, comboBox1.SelectedValue.ToString());
}
private void comboBox2_SelectedIndexChanged(object sender, EventArgs e)
{
AreaDataBind(comboBox3, comboBox2.SelectedValue.ToString());
}

DateTime类型比较大小:

DateTime.Compare(t1,t2)比较两个日期大小,排前面的小,排在后面的大,比如:2011-2-1就小于2012-3-2

返回值小于零: t1 小于 t2。

返回值等于零 : t1 等于 t2。

返回值大于零: t1 大于 t2。

以上所示是小编给大家介绍的MessageBox的Buttons和三级联动,希望对大家有所帮助,如果大家有任何问题欢迎给我留言,小编会及时回复大家的!

上一篇:基于C#的socket编程的TCP异步的实现代码

栏    目:C#教程

下一篇:c#几种数据库的大数据批量插入(SqlServer、Oracle、SQLite和MySql)

本文标题:MessageBox的Buttons和三级联动效果

本文地址:https://www.xiuzhanwang.com/a1/C_jiaocheng/6183.html

网页制作CMS教程网络编程软件编程脚本语言数据库服务器

如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

联系QQ:835971066 | 邮箱:835971066#qq.com(#换成@)

Copyright © 2002-2020 脚本教程网 版权所有