2022年5月4日 星期三

[C#]視窗在工具列點擊出現提示選單

 新增工具元件"notifyIcon" 與 "contextMenuStrip" 加到專案中

1.在Form.cs 的UI上選擇contextMenuStrip加入事件

2.到notifyIcon的屬性contextMenuStrip添加contextMenuStrip1元件名稱

3.到notifyIcon的事件 加入Click


using System.Reflection;

        private void notifyIcon1_Click(object sender, EventArgs e)

        {

            Type t = typeof(NotifyIcon);

            MethodInfo mi = t.GetMethod("ShowContextMenu", BindingFlags.NonPublic | BindingFlags.Instance);

            mi.Invoke(this.notifyIcon1, null);

        }

即可完成選單與通知

沒有留言:

張貼留言

[SQL]顯示千分位與小數顯示

  CONVERT ( data_type [ ( length ) ] , expression [ , style ] ) CONVERT style參數說明 1  (expression為 money 或 smallmoney型別): 0 : 預設,保留小數位後兩位,並四捨...