基本信息
源码名称:右下角弹框提示
源码大小:0.07M
文件格式:.rar
开发语言:C#
更新时间:2013-03-29
   友情提示:(无需注册或充值,赞助后即可获取资源下载链接)

     嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300

本次赞助数额为: 10 元 
   源码介绍
 WinForm下弹框提示信息,可以设置包括上升下降和淡出淡入两种展示方式。标题、内容、实现时间、展示时间、消失时间、展示方式均可自定义

private void button1_Click(object sender, EventArgs e)
        {
            string afTitle = txtTitle.Text;
            string afContent = txtContent.Text;
            if (string.IsNullOrEmpty(afContent))
            {
                MessageBox.Show("内容不能为空"); return;
            }
            AlertLib.AlertForm.ShowWay showWay = AlertLib.AlertForm.ShowWay.UpDown;
            if (cbShowWay.SelectedIndex == 1) showWay = AlertLib.AlertForm.ShowWay.Fade;




            int afShowInTime, afShowTime, afShowOutTime;
            int afWidth, afHeigth;


            int.TryParse(txtShowInTime.Text, out afShowInTime);
            int.TryParse(txtShowTime.Text, out afShowTime);
            int.TryParse(txtShowOutTime.Text, out afShowOutTime);
            int.TryParse(txtWidth.Text, out afWidth);
            int.TryParse(txtHeigth.Text, out afHeigth);


            if (rbOnly.Checked && af != null)
            {
                af.Dispose();
            }


            af = new AlertLib.AlertForm();
            af.Show(afContent, afTitle, showWay,afWidth,afHeigth,afShowInTime,afShowTime,afShowOutTime);
        }