Example #1
0
        public MainWindow()
        {
            InitializeComponent();

            if (!this.includeMissing)
            {
                this.columnSaves.Width = 0;
            }

            manager = new GameSaveManager();
            this.columnName.FillsFreeSpace = true;

            RefreshView(true);
        }
        public PreviewWindow(GameSaveManager manager, ActionList actions)
        {
            InitializeComponent();

            this.manager = manager;
            this.actions = actions;

            this.StartPosition = FormStartPosition.CenterParent;
            this.CancelButton = this.buttonCancel;

            this.columnStatus.FillsFreeSpace = true;
            this.viewActions.AlwaysGroupByColumn = this.columnGame;
            this.viewActions.ClearObjects();
            this.viewActions.SetObjects(this.actions);
        }