Example #1
0
        public StartForm(Form1 form)
        {
            frm1 = form;
            InitializeComponent();
            TextChat tmp = new TextChat(form);

            chat = tmp;
        }
Example #2
0
        public RatingForm(Form1 form)
        {
            frm1 = form;
            InitializeComponent();
            TextChat tmp = new TextChat(form);

            chat = tmp;
            films.LoadXMLFile("");
        }
Example #3
0
        public YearForm(Form1 form)
        {
            frm1 = form;
            InitializeComponent();
            films.LoadXMLFile("");
            TextChat tmp = new TextChat(form);

            chat = tmp;
            for (int i = 2019; i >= 1886; i--)
            {
                comboBoxYearFrom.Items.Add(i);
                comboBoxYearTo.Items.Add(i);
            }
        }
Example #4
0
        public Form1()
        {
            TextChat  tmp  = new TextChat(this);
            StartForm form = new StartForm(this);

            chat         = tmp;
            form.TopMost = true;
            form.Show();
            InitializeComponent();
            textBoxMessages.ReadOnly   = true;
            textBoxMessages.ScrollBars = ScrollBars.Vertical;
            Text = textBoxMessages.Text;
            bool RepeatText = Text.Contains("Будь ласка, введіть жанр фільма, рейтинг або рік для пошуку");

            if (RepeatText == true)
            {
                textBoxMessages.AppendText("Бот: " + "Будь ласка, введіть жанр фільма, рейтинг або рік для пошуку" + Environment.NewLine);
            }
        }