源码网商城,靠谱的源码在线交易网站 我的订单 购物车 帮助

源码网商城

C#程序最小化到托盘图标操作步骤与实现代码

  • 时间:2022-05-15 16:30 编辑: 来源: 阅读:
  • 扫一扫,手机访问
摘要:C#程序最小化到托盘图标操作步骤与实现代码
[u]复制代码[/u] 代码如下:
// this.SizeChanged += new System.EventHandler(this.Form1_SizeChanged); //上面一行是主窗体InitializeComponent()方法中需要添加的引用 private void Form1_SizeChanged(object sender, EventArgs e) { if (this.WindowState==FormWindowState.Minimized) { this.Hide(); this.notifyIcon1.Visible=true; } } .添加点击图标事件(首先需要添加事件引用): private void notifyIcon1_Click(object sender, EventArgs e) { this.Visible = true; this.WindowState = FormWindowState.Normal; this.notifyIcon1.Visible = false; } .可以给notifyIcon添加右键菜单: 主窗体中拖入一个ContextMenu控件contextMenu1,点中控件,在上下文菜单中添加菜单,notifyIcon1的ContextMenu行为中选中contextMenu1作为上下文菜单。 (可以在子菜单中添加行为)
  • 全部评论(0)
联系客服
客服电话:
400-000-3129
微信版

扫一扫进微信版
返回顶部