build success

This commit is contained in:
Nathan
2025-12-17 16:15:11 -07:00
parent 06d2c3934b
commit 9436ab7f62
4 changed files with 3691 additions and 38 deletions

View File

@@ -17,7 +17,11 @@ namespace UnifiedFarmLauncher.Views
private readonly WorkerEditViewModel _viewModel;
private bool _result;
public WorkerEditWindow(WorkerConfig? worker = null)
public WorkerEditWindow() : this(null)
{
}
public WorkerEditWindow(WorkerConfig? worker)
{
InitializeComponent();
var configService = new ConfigService();
@@ -91,7 +95,7 @@ namespace UnifiedFarmLauncher.Views
}
}
private async void AddDriveButton_Click(object? sender, RoutedEventArgs e)
private void AddDriveButton_Click(object? sender, RoutedEventArgs e)
{
// Simplified: use a simple input box
// In a full implementation, you'd use a proper input dialog
@@ -106,7 +110,7 @@ namespace UnifiedFarmLauncher.Views
}
}
private async void AddPathButton_Click(object? sender, RoutedEventArgs e)
private void AddPathButton_Click(object? sender, RoutedEventArgs e)
{
// Simplified: use a simple input box
// In a full implementation, you'd use a proper input dialog