Пример #1
0
 public EmotionSuggestion(MainWindow father)
 {
     this.Parent = father;
     InitializeComponent();
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
     this.ShowInTaskbar = false;
 }
Пример #2
0
 public EmotionSuggestion()
 {
     InitializeComponent();
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
     this.Parent = null;
     this.ShowInTaskbar = false;
     UpdateEmotionSuggestionContent();
 }
Пример #3
0
        public EmotionTracking(MainWindow father)
        {
            this.Parent = father;
            InitializeComponent();
            this.ShowInTaskbar = false;
            this.TopMost = true;
            this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.SizableToolWindow;

            InitalEmotionTracking();

            UpdateEmotionTracking();
        }
Пример #4
0
 private void openInNewWindowToolStripMenuItem_Click(object sender, EventArgs e)
 {
     MainWindow new_form = new MainWindow();
     new_form.Show();
     new_form.getCurrentBrowser().Navigate(adress);
 }