寝室值日安排(c++)

上传:dress34198 浏览: 49 推荐: 0 文件:RAR 大小:82.36KB 上传时间:2021-04-21 17:45:57 版权申诉
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Windows.Forms; namespace 寝室值日安排 { class Tray { Form1 form = null; NotifyIcon TrayIcon = null; Label label = null; public Tray(Form1 form,NotifyIcon TrayIcon,Label label) { this.form = form; this.TrayIcon = TrayIcon; this.label = label; } public void click(object sender, System.EventArgs e) { if (this.form.Visible == true) { this.form.Hide(); } else { this.form.Visible = true; } } public void showForm(object sender, System.EventArgs e) { this.form.Visible = true; } public void hideForm(object sender, System.EventArgs e) { this.form.Hide(); } public void showTrayIcoText(object sender, System.Windows.Forms.MouseEventArgs e) { this.TrayIcon.Text = this.label.Text; } public void ExitSelect(object sender, System.EventArgs e) { this.form.Close(); } } }
上传资源
用户评论