public StartForm(Form1 form) { frm1 = form; InitializeComponent(); TextChat tmp = new TextChat(form); chat = tmp; }
public RatingForm(Form1 form) { frm1 = form; InitializeComponent(); TextChat tmp = new TextChat(form); chat = tmp; films.LoadXMLFile(""); }
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); } }
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); } }