1
0
mirror of synced 2024-09-24 03:28:21 +02:00
Switch-Toolbox/File_Format_Library/GUI/BotwActorEditorControl.cs
2019-08-10 21:14:06 -04:00

30 lines
687 B
C#

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Drawing;
using System.Data;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using Toolbox.Library.Forms;
using UKing.Actors;
namespace UKing.Actors.Forms
{
public partial class BotwActorEditorControl : STUserControl
{
public BotwActorEditorControl()
{
InitializeComponent();
stTabControl1.myBackColor = FormThemes.BaseTheme.FormBackColor;
}
public void LoadActor(BotwActorLoader.ActorEntry entry)
{
stPropertyGrid1.LoadProperty(entry.Info);
}
}
}