欧美大屁股bbbbxxxx,狼人大香伊蕉国产www亚洲,男ji大巴进入女人的视频小说,男人把ji大巴放进女人免费视频,免费情侣作爱视频

歡迎來到入門教程網(wǎng)!

C#教程

當(dāng)前位置:主頁 > 軟件編程 > C#教程 >

C# winForm實(shí)現(xiàn)的氣泡提示窗口功能示例

來源:本站原創(chuàng)|時(shí)間:2020-01-10|欄目:C#教程|點(diǎn)擊: 次

本文實(shí)例講述了C# winForm實(shí)現(xiàn)的氣泡提示窗口功能。分享給大家供大家參考,具體如下:

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
namespace WindowsFormsApplication60
{
  public partial class Form1 : Form
  {
    private Button btnShow = null;
    private Button btnClose = null;
    private NotifyIcon notifyIcon1 = null;
    public Form1()
    {
      InitializeComponent();
      this.Load+=new EventHandler(Form1_Load);
    }
    private void Form1_Load(object sender, EventArgs e)
    {
      btnShow = new Button();//顯示氣泡提示窗口
      btnShow.Text = "show";
      btnShow.Click += new EventHandler(btnShow_Click);
      btnShow.Location = new Point(10, 10);
      this.Controls.Add(btnShow);
      btnClose = new Button();//影藏氣泡提示窗口
      btnClose.Text = "close";
      btnClose.Click += new EventHandler(btnClose_Click);
      btnClose.Location = new Point(10 + btnShow.Width + 10, 10);
      this.Controls.Add(btnClose);
      notifyIcon1 = new NotifyIcon();
      notifyIcon1.MouseMove += new MouseEventHandler(notifyIcon1_MouseMove);
      notifyIcon1.Icon = global::WindowsFormsApplication60.Properties.Resources.Lintway;
    }
    /// <summary>
    /// 鼠標(biāo)移過顯示時(shí)間
    /// </summary>
    /// <param name="sender"></param>
    /// <param name="e"></param>
    void notifyIcon1_MouseMove(object sender, MouseEventArgs e)
    {
      this.notifyIcon1.ShowBalloonTip(1000, "當(dāng)前時(shí)間:", DateTime.Now.ToLocalTime().ToString(), ToolTipIcon.Info);//顯示氣泡提示
    }
    /// <summary>
    /// 影藏時(shí)間
    /// </summary>
    /// <param name="sender"></param>
    /// <param name="e"></param>
    void btnClose_Click(object sender, EventArgs e)
    {
      this.notifyIcon1.Visible = false;//設(shè)置提示控件不可見
    }
    /// <summary>
    /// 顯示時(shí)間
    /// </summary>
    /// <param name="sender"></param>
    /// <param name="e"></param>
    void btnShow_Click(object sender, EventArgs e)
    {
      this.notifyIcon1.Visible = true;//設(shè)置提示控件可見
      this.notifyIcon1.ShowBalloonTip(1000, "當(dāng)前時(shí)間:", DateTime.Now.ToLocalTime().ToString(), ToolTipIcon.Info);//顯示氣泡提示
    }
  }
}

更多關(guān)于C#相關(guān)內(nèi)容感興趣的讀者可查看本站專題:《C#窗體操作技巧匯總》、《WinForm控件用法總結(jié)》、《C#數(shù)據(jù)結(jié)構(gòu)與算法教程》、《C#常見控件用法教程》、《C#面向?qū)ο蟪绦蛟O(shè)計(jì)入門教程》及《C#程序設(shè)計(jì)之線程使用技巧總結(jié)》

希望本文所述對(duì)大家C#程序設(shè)計(jì)有所幫助。

上一篇:在C#項(xiàng)目中如何使用NHibernate詳解

欄    目:C#教程

下一篇:C#利用GDI+給圖片添加文字(文字自適應(yīng)矩形區(qū)域)

本文標(biāo)題:C# winForm實(shí)現(xiàn)的氣泡提示窗口功能示例

本文地址:http://mengdiqiu.com.cn/a1/C_jiaocheng/5215.html

網(wǎng)頁制作CMS教程網(wǎng)絡(luò)編程軟件編程腳本語言數(shù)據(jù)庫服務(wù)器

如果侵犯了您的權(quán)利,請(qǐng)與我們聯(lián)系,我們將在24小時(shí)內(nèi)進(jìn)行處理、任何非本站因素導(dǎo)致的法律后果,本站均不負(fù)任何責(zé)任。

聯(lián)系QQ:835971066 | 郵箱:835971066#qq.com(#換成@)

Copyright © 2002-2020 腳本教程網(wǎng) 版權(quán)所有