ARCed.Database.Animations.AnimationMainForm.RefreshCurrentObject C# (CSharp) Method

RefreshCurrentObject() public method

Refreshes the form to display data for the currently selected RPG.Animation.
public RefreshCurrentObject ( ) : void
return void
        public override void RefreshCurrentObject()
        {
            SuppressEvents = true;
            this.animeXnaPanel.Animation = this._animation;
            this.animeSrcXnaPanel.Animation = this._animation;
            this.textBoxName.Text = this._animation.name;
            this.textBoxGraphic.Text = String.IsNullOrWhiteSpace(this._animation.animation_name) ?
                "<None>" : this._animation.animation_name;
            this.numericUpDownFrames.Value = this._animation.frame_max;
            this.comboBoxPosition.SelectedIndex = this._animation.position;
            this.RefreshTimings();
            this.RefreshFrameList();
            SuppressEvents = false;
        }