Path config - tabbed layout approach
This commit is contained in:
parent
c4403a2959
commit
57672564a5
File diff suppressed because it is too large
Load Diff
|
@ -11,6 +11,15 @@ namespace BizHawk.MultiClient
|
||||||
{
|
{
|
||||||
public partial class PathConfig : Form
|
public partial class PathConfig : Form
|
||||||
{
|
{
|
||||||
|
//TODO:
|
||||||
|
// `exe` shoudl be valid notation to mean path that the .exe is in ex: `exe`/NES
|
||||||
|
// ./ and ../ are always always relative to base path
|
||||||
|
// `recent` notation for most recently used path
|
||||||
|
//If "always use recent path for roms" is checked then base path of each platorm should be disabled
|
||||||
|
//Path text boxes shoudl be anchored L + R and the remaining widgets anchored R
|
||||||
|
//Alight everything in each tab the same
|
||||||
|
|
||||||
|
|
||||||
public PathConfig()
|
public PathConfig()
|
||||||
{
|
{
|
||||||
InitializeComponent();
|
InitializeComponent();
|
||||||
|
@ -36,5 +45,10 @@ namespace BizHawk.MultiClient
|
||||||
SaveSettings();
|
SaveSettings();
|
||||||
this.Close();
|
this.Close();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private void textBox24_TextChanged(object sender, EventArgs e)
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue