Compare with Previous |
Blame |
View Log
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
namespace BuildSkin
{
public partial class OptWinForm : Form
{
public OptWinForm()
{
InitializeComponent();
tEditorPath.Text = fBuildSkin.Options.EditorPath;
cConfirm.Checked = fBuildSkin.Options.ConfirmActions;
cAutoLoad.Checked = fBuildSkin.Options.AutoLoadLast;
}
void ClickBrowse(object oSender, EventArgs e)
{
var ofdOpen = new OpenFileDialog();
if (ofdOpen.ShowDialog() == System.Windows.Forms.DialogResult.OK)
{
tEditorPath.Text = ofdOpen.FileName;
}
ofdOpen.Dispose();
}
}
}
Compare with Previous |
Blame
All times are GMT -5. The time now is 06:10 PM.