User form

This commit is contained in:
Aurélie Delhaie
2022-05-25 13:10:25 +02:00
parent 56e94d8dfe
commit 4cf1d4b3b0
20 changed files with 2582 additions and 81 deletions

View File

@@ -48,6 +48,7 @@ namespace OpenSaveCloudClient
}
else
{
saveManager.DetectChanges();
this.Invoke((MethodInvoker)delegate {
AboutButton.Enabled = true;
if (_configuration.GetBoolean("synchronization.at_login", true))
@@ -316,6 +317,7 @@ namespace OpenSaveCloudClient
SyncButton.Enabled = l;
DownloadButton.Enabled = l;
LogoutButton.Enabled = l;
UserSettingsButton.Enabled = l;
}
private void listView1_DoubleClick(object sender, EventArgs e)
@@ -373,5 +375,11 @@ namespace OpenSaveCloudClient
}
}
}
private void UserSettingsButton_Click(object sender, EventArgs e)
{
UserForm userForm = new();
userForm.ShowDialog();
}
}
}