mirror of
https://github.com/KillzXGaming/Switch-Toolbox
synced 2024-11-15 17:27:56 +00:00
41 lines
1.1 KiB
C#
41 lines
1.1 KiB
C#
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 Toolbox.Library.Forms;
|
|
|
|
namespace FirstPlugin
|
|
{
|
|
public partial class BMDModelImportSettings : STForm
|
|
{
|
|
public string TexturePath => texturePathTB.Text;
|
|
public string MaterialPath => materalPathTB.Text;
|
|
|
|
public BMDModelImportSettings()
|
|
{
|
|
InitializeComponent();
|
|
stComboBox1.SelectedIndex = 0;
|
|
|
|
CanResize = false;
|
|
}
|
|
|
|
private void texturePathTB_DoubleClick(object sender, EventArgs e)
|
|
{
|
|
FolderSelectDialog ofd = new FolderSelectDialog();
|
|
if (ofd.ShowDialog() == DialogResult.OK)
|
|
texturePathTB.Text = ofd.SelectedPath;
|
|
}
|
|
|
|
private void materalPathTB_DoubleClick(object sender, EventArgs e)
|
|
{
|
|
FolderSelectDialog ofd = new FolderSelectDialog();
|
|
if (ofd.ShowDialog() == DialogResult.OK)
|
|
materalPathTB.Text = ofd.SelectedPath;
|
|
}
|
|
}
|
|
}
|