public EmotionSuggestion(MainWindow father) { this.Parent = father; InitializeComponent(); this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None; this.ShowInTaskbar = false; }
public EmotionSuggestion() { InitializeComponent(); this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None; this.Parent = null; this.ShowInTaskbar = false; UpdateEmotionSuggestionContent(); }
public EmotionTracking(MainWindow father) { this.Parent = father; InitializeComponent(); this.ShowInTaskbar = false; this.TopMost = true; this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.SizableToolWindow; InitalEmotionTracking(); UpdateEmotionTracking(); }
private void openInNewWindowToolStripMenuItem_Click(object sender, EventArgs e) { MainWindow new_form = new MainWindow(); new_form.Show(); new_form.getCurrentBrowser().Navigate(adress); }