Skip to content

Commit a31510a

Browse files
JusterZhugitee-org
authored andcommitted
!3 变量赋值修复;文件夹按钮选择文件夹而不是文件
Merge pull request !3 from tp1415926535/N/A
2 parents 23ce633 + 02826ee commit a31510a

File tree

1 file changed

+28
-25
lines changed

1 file changed

+28
-25
lines changed

src/WPF/GeneralUpdate.Packet/ViewModels/PacketViewModel.cs

+28-25
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
using CommunityToolkit.Mvvm.Input;
1+
using CommunityToolkit.Mvvm.Input;
22
using GeneralUpdate.AspNetCore.DTO;
33
using GeneralUpdate.Core.Utils;
44
using GeneralUpdate.Differential;
@@ -10,6 +10,7 @@
1010
using System.IO;
1111
using System.Text;
1212
using System.Windows;
13+
using Microsoft.WindowsAPICodePack.Dialogs;
1314

1415
namespace GeneralUpdate.Packet.ViewModels
1516
{
@@ -49,7 +50,7 @@ internal PacketViewModel()
4950
public bool IsPublish { get => isPublish; set => SetProperty(ref isPublish, value); }
5051
public string Url { get => url; set => SetProperty(ref url, value); }
5152
public string PacketName { get => packetName; set => SetProperty(ref packetName, value); }
52-
public string DriverDir { get => packetName; set => SetProperty(ref driverDir, value); }
53+
public string DriverDir { get => driverDir; set => SetProperty(ref driverDir, value); }
5354

5455
public AsyncRelayCommand<string> SelectFolderCommand
5556
{
@@ -146,33 +147,35 @@ public string CurrentAppType
146147
/// <param name="value"></param>
147148
private async Task SelectFolderAction(string value)
148149
{
149-
var openFileDialog = new OpenFileDialog();
150-
openFileDialog.InitialDirectory = @"D:\";
151-
openFileDialog.Filter = "All files (*.*)|*.*";
152-
if (openFileDialog.ShowDialog() == false)
150+
using (var dialog = new CommonOpenFileDialog())
153151
{
154-
await ShowMessage("Pick options", "No results were selected !");
155-
return;
156-
}
157-
158-
string selectedFilePath = openFileDialog.FileName;
159-
switch (value)
160-
{
161-
case "Source":
162-
SourcePath = selectedFilePath;
163-
break;
152+
dialog.InitialDirectory = @"D:\";
153+
dialog.IsFolderPicker = true;
154+
CommonFileDialogResult result = dialog.ShowDialog();
155+
if (result != CommonFileDialogResult.Ok)
156+
{
157+
await ShowMessage("Pick options", "No results were selected !");
158+
return;
159+
}
160+
string selectedFilePath = dialog.FileName;
161+
switch (value)
162+
{
163+
case "Source":
164+
SourcePath = selectedFilePath;
165+
break;
164166

165-
case "Target":
166-
TargetPath = selectedFilePath;
167-
break;
167+
case "Target":
168+
TargetPath = selectedFilePath;
169+
break;
168170

169-
case "Patch":
170-
PatchPath = selectedFilePath;
171-
break;
171+
case "Patch":
172+
PatchPath = selectedFilePath;
173+
break;
172174

173-
case "Driver":
174-
DriverDir = selectedFilePath;
175-
break;
175+
case "Driver":
176+
DriverDir = selectedFilePath;
177+
break;
178+
}
176179
}
177180
}
178181

0 commit comments

Comments
 (0)