Запуск графической программы с параметрами из командной строки - C#

Узнай цену своей работы

Формулировка задачи:

Пишу примитивный нотифер, нужно что бы через консоль можно было передавать текст в label и listbox. И почему-то не работает анимация плавного закрытия программы.
Листинг программы
  1. using System;
  2. using System.Drawing;
  3. using System.Windows.Forms;
  4. namespace notification
  5. {
  6. public partial class notificationForm : Form
  7. {
  8. public string ncaption;
  9. public string ntext;
  10. public notificationForm() //(string [] args)
  11. {
  12. InitializeComponent();
  13. this.StartPosition = FormStartPosition.Manual;
  14. this.Location = new Point(Screen.PrimaryScreen.Bounds.Width - this.Width - 20, Screen.PrimaryScreen.Bounds.Height - this.Height - 20);
  15. // string ncaption = args[0];
  16. //string ntext = args[1];
  17. }
  18. private void start()
  19. {
  20. Opacity = 0;
  21. System.Windows.Forms.Timer timer1 = new System.Windows.Forms.Timer();
  22. timer1.Tick += new EventHandler((sender1, e1) =>
  23. {
  24. if ((Opacity += 0.05) == 1)
  25. timer1.Stop();
  26. });
  27. timer1.Interval = 1;
  28. timer1.Start();
  29. }
  30. private void stop()
  31. {
  32. Opacity = 1;
  33. System.Windows.Forms.Timer timer2 = new System.Windows.Forms.Timer();
  34. timer2.Tick -= new EventHandler((sender2, e2) =>
  35. {
  36. if ((Opacity -= 0.05) == 0)
  37. timer2.Stop();
  38. });
  39. timer2.Interval = 1;
  40. timer2.Start();
  41. this.Close();
  42. }
  43.  
  44. private void notificationForm_Load(object sender, EventArgs e)
  45. {
  46. // CaptionLabel.Text = ncaption;
  47. // notificationText.Text = ntext;
  48. start();
  49. }
  50. private void timer1_Tick(object sender, EventArgs e)
  51. {
  52. stop();
  53. }
  54. }
  55. }
Если все раскомментировать, но запинается на одной ошибке:

Ошибка CS7036 Отсутствует аргумент, соответствующий требуемому формальному параметру "args" из "notificationForm.notificationForm(string[])". notification C:\Users\kondratiev_ms\Documents\Visual Studio 2015\Projects\notification\notification\Program.cs 19 Активно

Листинг программы
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Threading.Tasks;
  5. using System.Windows.Forms;
  6. namespace notification
  7. {
  8. static class Program
  9. {
  10. /// <summary>
  11. /// Главная точка входа для приложения.
  12. /// </summary>
  13. [STAThread]
  14. static void Main()
  15. {
  16. Application.EnableVisualStyles();
  17. Application.SetCompatibleTextRenderingDefault(false);
  18. Application.Run(new notificationForm()); // <---
  19. }
  20. }
  21. }

Решение задачи: «Запуск графической программы с параметрами из командной строки»

textual
Листинг программы
  1. CaptionLabel.Text = arguments [1];
  2.             notificationText.Text = arguments[2];

ИИ поможет Вам:


  • решить любую задачу по программированию
  • объяснить код
  • расставить комментарии в коде
  • и т.д
Попробуйте бесплатно

Оцени полезность:

15   голосов , оценка 3.867 из 5

Нужна аналогичная работа?

Оформи быстрый заказ и узнай стоимость

Бесплатно
Оформите заказ и авторы начнут откликаться уже через 10 минут
Похожие ответы