1
0
mirror of synced 2024-12-03 11:37:21 +01:00
Switch-Toolbox/Switch_FileFormatsMain/GUI/BFRES/Materials/ShaderParams/ParamValueDialog.cs

28 lines
594 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using Switch_Toolbox.Library.Forms;
namespace FirstPlugin.Forms
{
public partial class ParamValueDialog : STForm
{
public ParamValueDialog()
{
InitializeComponent();
}
public void AddControl(UserControl control)
{
stPanel1.Controls.Clear();
stPanel1.Controls.Add(control);
}
}
}