1. 首页
  2. 编程语言
  3. C++ 
  4. 寝室值日安排(c++)

寝室值日安排(c++)

上传者: 2021-04-21 17:45:57上传 RAR文件 82.36KB 热度 51次
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(); } } }
下载地址
用户评论
码姐姐匿名网友 2025-03-28 21:49:07

不怎么样,不是想象的那样