17 lines
532 B
C#
17 lines
532 B
C#
using System.Windows.Forms;
|
|
|
|
namespace RCM {
|
|
public partial class WinBoxConfigControl : UserControl {
|
|
public WinBoxConfigControl(WinBoxConfig winBoxConfig) {
|
|
InitializeComponent();
|
|
textBoxWinBox.Text = winBoxConfig.WinBoxPath;
|
|
}
|
|
|
|
private void ButtonSelectWinBox_Click(object sender, System.EventArgs e) {
|
|
if (openFileDialogWinBox.ShowDialog() == DialogResult.OK) {
|
|
textBoxWinBox.Text = openFileDialogWinBox.FileName;
|
|
}
|
|
}
|
|
}
|
|
}
|