Inheritance: Eto.Forms.Dialog
Exemple #1
0
        public MainForm()
        {
            _createMenu();

            this.WindowState = WindowState.Maximized;
            this.Model = new MainFormModel();
            this._chooser = new SessionChooser();
            this._chooser.Closed += _chooserClosed;
            this._chooser.SessionChosen += _sessionChosen;

            // sets the client (inner) size of the window for your content
            this.ClientSize = new Eto.Drawing.Size(600, 400);
            this.Title = Constants.MainFormDefaultTitle;
        }