diff --git a/ClientsLibrary/AccountSupport/FormAccountDetails.cs b/ClientsLibrary/AccountSupport/FormAccountDetails.cs index 9636b6e..10ce2ac 100644 --- a/ClientsLibrary/AccountSupport/FormAccountDetails.cs +++ b/ClientsLibrary/AccountSupport/FormAccountDetails.cs @@ -421,6 +421,8 @@ namespace ClientsLibrary private void userButton2_Click(object sender, EventArgs e) { // 删除选中文件 + if (treeView1.SelectedNode == null) return; + TreeNode treeNode = treeView1.SelectedNode; if (treeNode.Name != "files_root") { diff --git a/CommonLibrary/UserSystem.cs b/CommonLibrary/UserSystem.cs index 1c95483..aee5bf7 100644 --- a/CommonLibrary/UserSystem.cs +++ b/CommonLibrary/UserSystem.cs @@ -44,7 +44,7 @@ namespace CommonLibrary **************************************************************************/ - SoftBasic.FrameworkVersion = new SystemVersion("1.7.11"); + SoftBasic.FrameworkVersion = new SystemVersion("1.7.12"); }