예제 #1
0
        public MainForm()
        {
            InitializeComponent();
            mainController            = new MainController();
            topicController           = new TopicController();
            alternativeListController = new AlternativeListController();

            // Auto Login
            // currentUser = new User("admin", true);
            // currentTopic = new Topic(1, "Test Comparison");

            this.WindowState = FormWindowState.Maximized;

            //topicToolStripMenuItem.Visible = false;
            updateTooltipVisibility();

            // Prevent window flickering
            //this.SetStyle(
            //    ControlStyles.AllPaintingInWmPaint |
            //    ControlStyles.DoubleBuffer,
            //    true);
        }