F
F
FilayVasia2016-03-17 21:42:21
C++ / C#
FilayVasia, 2016-03-17 21:42:21

How to correctly implement the work with the tray?

private void button3_Click_1(object sender, EventArgs e)
        {
            string filename;
           
            if (folderBrowserDialog1.ShowDialog() == DialogResult.OK)
            {
                
                //Контекстное меню в трее
                m_menu = new ContextMenu();
                m_menu.MenuItems.Add(0,
                    new MenuItem("Show", new System.EventHandler(Show_Click)));
                m_menu.MenuItems.Add(1,
                    new MenuItem("Hide", new System.EventHandler(Hide_Click)));
                m_menu.MenuItems.Add(2,
                    new MenuItem("Exit", new System.EventHandler(Exit_Click)));
                m_menu.MenuItems.Add(3,
                    new MenuItem("Stop", new System.EventHandler(Stop_Click)));
                m_menu.MenuItems.Add(4,
                    new MenuItem("Continue", new System.EventHandler(Continue_Click)));
                //
 
               // Работа в фоновом режиме, перемещение программы в трей
                Hide();
                notifyIcon1.Icon = new Icon("Lemon64 (1).ico");
                notifyIcon1.ContextMenu = m_menu;
                notifyIcon1.BalloonTipTitle = "Программа начала свою работу";
                notifyIcon1.BalloonTipText = "Обратите внимание что программа была спрятана и продолжит свою работув трее.";
                notifyIcon1.ShowBalloonTip(5000);//показывает сколько милисекунд будет спрятана программа
                //
                
               
                filename = folderBrowserDialog1.SelectedPath;//запись в переменную путь
                    textBox3.Text = filename;//вывод пути
 
                string[] PathPhoto3 = Directory.GetFiles(filename, "*.*", SearchOption.AllDirectories);
 
                //количество файлов
                int SumFiles = PathPhoto3.Length;
                    label2.Text = SumFiles.ToString();
                //
 
                //=====Запуск функции Function1===============
                    Function1(PathPhoto3, filename);
                //============================================
 
                //Удаление лишних папок
                string[] dirs = Directory.GetDirectories(filename, "*", SearchOption.AllDirectories);
 
                for (int y = dirs.Length - 1; y >= 0; y--)
                {
                    if (Directory.GetFileSystemEntries(dirs[y]).Length == 0)
                        Directory.Delete(dirs[y]);
                }
                //
            }
 //Работа в фоновом режиме, перемещение программы в трей
            notifyIcon1.Icon = SystemIcons.Exclamation;
            notifyIcon1.Icon = new Icon("yes.ico");
            notifyIcon1.BalloonTipTitle = "Программа завершила свою работу";
            notifyIcon1.BalloonTipText = "Вы можете перейти в указанную папку и просмотреть результат работы программы.";
            notifyIcon1.ShowBalloonTip(5000);//показывает сколько милисекунд будет спрятана программа
Please tell me what could be a logical error or how to implement so that when you click on the button after
private void button3_Click_1(object sender, EventArgs e)
        {
            string filename;
           
            if (folderBrowserDialog1.ShowDialog() == DialogResult.OK)
            {
the program was minimized to the tray, and when the icon was right-clicked, the context menu was displayed, and when the icon was left-clicked, the program unfolded. Please help me how to implement this, otherwise I'm completely confused.

Answer the question

In order to leave comments, you need to log in

1 answer(s)
M
Michael, 2016-03-18
@Sing303

https://stackoverflow.com/questions/7625421/minimi...

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question