mirror of
https://github.com/KillzXGaming/Switch-Toolbox
synced 2025-01-02 08:08:44 +00:00
31 lines
731 B
C#
31 lines
731 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 Switch_Toolbox.Library;
|
|
using Syroot.NintenTools.NSW.Bfres;
|
|
using System.Windows.Forms.Design;
|
|
using System.Resources;
|
|
using System.Drawing.Design;
|
|
using System.Collections.Specialized;
|
|
using System.Reflection;
|
|
|
|
namespace FirstPlugin
|
|
{
|
|
public partial class BfresProperties : UserControl
|
|
{
|
|
public BfresProperties()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
public void LoadProperty(object type)
|
|
{
|
|
propertyGrid1.SelectedObject = type;
|
|
}
|
|
}
|
|
}
|