mirror of
https://github.com/sourcegit-scm/sourcegit.git
synced 2024-12-23 20:47:25 -08:00
fix<FolderDialog>: using System.Windows.Forms.FolderBrowserDialog instead of Controls.FolderDialog to avoid crashes
This commit is contained in:
parent
0dc73cbc0d
commit
12511007e3
7 changed files with 16 additions and 134 deletions
|
@ -3,6 +3,7 @@
|
||||||
<TargetFrameworks>net48</TargetFrameworks>
|
<TargetFrameworks>net48</TargetFrameworks>
|
||||||
<OutputType>WinExe</OutputType>
|
<OutputType>WinExe</OutputType>
|
||||||
<UseWPF>true</UseWPF>
|
<UseWPF>true</UseWPF>
|
||||||
|
<UseWindowsForms>true</UseWindowsForms>
|
||||||
<ApplicationIcon>App.ico</ApplicationIcon>
|
<ApplicationIcon>App.ico</ApplicationIcon>
|
||||||
<Company>sourcegit</Company>
|
<Company>sourcegit</Company>
|
||||||
<Description>OpenSource GIT client for Windows</Description>
|
<Description>OpenSource GIT client for Windows</Description>
|
||||||
|
|
|
@ -95,8 +95,9 @@ namespace SourceGit.Views {
|
||||||
}
|
}
|
||||||
|
|
||||||
private void OnFolderSelectorClick(object sender, RoutedEventArgs e) {
|
private void OnFolderSelectorClick(object sender, RoutedEventArgs e) {
|
||||||
var dialog = new Controls.FolderDialog();
|
var dialog = new System.Windows.Forms.FolderBrowserDialog();
|
||||||
if (dialog.ShowDialog() == true) {
|
dialog.ShowNewFolderButton = true;
|
||||||
|
if (dialog.ShowDialog() == System.Windows.Forms.DialogResult.OK) {
|
||||||
Folder = dialog.SelectedPath;
|
Folder = dialog.SelectedPath;
|
||||||
txtFolder.GetBindingExpression(TextBox.TextProperty).UpdateTarget();
|
txtFolder.GetBindingExpression(TextBox.TextProperty).UpdateTarget();
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,124 +0,0 @@
|
||||||
using System;
|
|
||||||
using System.Runtime.InteropServices;
|
|
||||||
using System.Security;
|
|
||||||
|
|
||||||
namespace SourceGit.Views.Controls {
|
|
||||||
|
|
||||||
[SuppressUnmanagedCodeSecurity]
|
|
||||||
internal delegate Int32 BrowseCallbackProc(IntPtr hwnd, Int32 msg, IntPtr lParam, IntPtr lpData);
|
|
||||||
|
|
||||||
[StructLayout(LayoutKind.Sequential, CharSet = CharSet.Auto)]
|
|
||||||
[SuppressUnmanagedCodeSecurity]
|
|
||||||
internal class BrowseInfo {
|
|
||||||
public IntPtr hwndOwner;
|
|
||||||
public IntPtr pidlRoot;
|
|
||||||
public IntPtr pszDisplayName;
|
|
||||||
public String lpszTitle;
|
|
||||||
public Int32 ulFlags;
|
|
||||||
public BrowseCallbackProc lpfn;
|
|
||||||
public IntPtr lParam;
|
|
||||||
public Int32 iImage;
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Win32 API封装(user32.dll)
|
|
||||||
/// </summary>
|
|
||||||
[SuppressUnmanagedCodeSecurity]
|
|
||||||
internal static class User32 {
|
|
||||||
[DllImport("user32.dll", CharSet = CharSet.Auto)]
|
|
||||||
public static extern IntPtr SendMessage(HandleRef hWnd, Int32 msg, Int32 wParam, String lParam);
|
|
||||||
|
|
||||||
[DllImport("user32.dll", CharSet = CharSet.Auto)]
|
|
||||||
public static extern IntPtr SendMessage(HandleRef hWnd, Int32 msg, Int32 wParam, Int32 lParam);
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Win32 API封装(ole32.dll)
|
|
||||||
/// </summary>
|
|
||||||
[SuppressUnmanagedCodeSecurity]
|
|
||||||
internal static class Ole32 {
|
|
||||||
[DllImport("ole32.dll", CharSet = CharSet.Auto, ExactSpelling = true, SetLastError = true)]
|
|
||||||
internal static extern void CoTaskMemFree(IntPtr pv);
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Win32 API封装(shell32.dll)
|
|
||||||
/// </summary>
|
|
||||||
[SuppressUnmanagedCodeSecurity]
|
|
||||||
internal static class Shell32 {
|
|
||||||
[DllImport("shell32.dll", CharSet = CharSet.Auto)]
|
|
||||||
public static extern Boolean SHGetPathFromIDList(IntPtr pidl, IntPtr pszPath);
|
|
||||||
|
|
||||||
[DllImport("shell32.dll", CharSet = CharSet.Auto)]
|
|
||||||
public static extern IntPtr SHBrowseForFolder([In] BrowseInfo lpbi);
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// 调用WindowsAPI打开对话目录对话框
|
|
||||||
/// </summary>
|
|
||||||
public class FolderDialog : Microsoft.Win32.CommonDialog {
|
|
||||||
/// <summary>
|
|
||||||
/// 选中的目录
|
|
||||||
/// </summary>
|
|
||||||
public string SelectedPath { get; private set; } = string.Empty;
|
|
||||||
|
|
||||||
public override void Reset() {
|
|
||||||
SelectedPath = string.Empty;
|
|
||||||
}
|
|
||||||
|
|
||||||
protected override bool RunDialog(IntPtr hwndOwner) {
|
|
||||||
BrowseCallbackProc callback = new BrowseCallbackProc(BrowseCallbackHandler);
|
|
||||||
bool ok = false;
|
|
||||||
try {
|
|
||||||
var info = new BrowseInfo();
|
|
||||||
info.pidlRoot = IntPtr.Zero;
|
|
||||||
info.hwndOwner = hwndOwner;
|
|
||||||
info.pszDisplayName = IntPtr.Zero;
|
|
||||||
info.lpszTitle = null;
|
|
||||||
info.ulFlags = 0x0153;
|
|
||||||
info.lpfn = callback;
|
|
||||||
info.lParam = IntPtr.Zero;
|
|
||||||
info.iImage = 0;
|
|
||||||
|
|
||||||
IntPtr result = Shell32.SHBrowseForFolder(info);
|
|
||||||
if (result != IntPtr.Zero) {
|
|
||||||
IntPtr pathPtr = Marshal.AllocHGlobal(260 * Marshal.SystemDefaultCharSize);
|
|
||||||
Shell32.SHGetPathFromIDList(result, pathPtr);
|
|
||||||
|
|
||||||
if (pathPtr != IntPtr.Zero) {
|
|
||||||
SelectedPath = Marshal.PtrToStringAuto(pathPtr);
|
|
||||||
ok = true;
|
|
||||||
Marshal.FreeHGlobal(pathPtr);
|
|
||||||
}
|
|
||||||
|
|
||||||
Ole32.CoTaskMemFree(result);
|
|
||||||
}
|
|
||||||
} finally {
|
|
||||||
callback = null;
|
|
||||||
}
|
|
||||||
|
|
||||||
return ok;
|
|
||||||
}
|
|
||||||
|
|
||||||
private Int32 BrowseCallbackHandler(IntPtr hwnd, Int32 msg, IntPtr lParam, IntPtr lpData) {
|
|
||||||
switch (msg) {
|
|
||||||
case 1:
|
|
||||||
if (!string.IsNullOrEmpty(SelectedPath)) {
|
|
||||||
Int32 flag = Marshal.SystemDefaultCharSize == 1 ? 1126 : 1127;
|
|
||||||
User32.SendMessage(new HandleRef(null, hwnd), flag, 1, SelectedPath);
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
case 2:
|
|
||||||
if (lParam != IntPtr.Zero) {
|
|
||||||
IntPtr pathPtr = Marshal.AllocHGlobal(260 * Marshal.SystemDefaultCharSize);
|
|
||||||
bool flag = Shell32.SHGetPathFromIDList(lParam, pathPtr);
|
|
||||||
Marshal.FreeHGlobal(pathPtr);
|
|
||||||
User32.SendMessage(new HandleRef(null, hwnd), 1125, 0, flag ? 1 : 0);
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -90,8 +90,9 @@ namespace SourceGit.Views {
|
||||||
}
|
}
|
||||||
|
|
||||||
private void SelectGitCloneDir(object sender, RoutedEventArgs e) {
|
private void SelectGitCloneDir(object sender, RoutedEventArgs e) {
|
||||||
var dialog = new Controls.FolderDialog();
|
var dialog = new System.Windows.Forms.FolderBrowserDialog();
|
||||||
if (dialog.ShowDialog() == true) {
|
dialog.ShowNewFolderButton = true;
|
||||||
|
if (dialog.ShowDialog() == System.Windows.Forms.DialogResult.OK) {
|
||||||
Models.Preference.Instance.Git.DefaultCloneDir = dialog.SelectedPath;
|
Models.Preference.Instance.Git.DefaultCloneDir = dialog.SelectedPath;
|
||||||
txtGitCloneDir?.GetBindingExpression(TextBox.TextProperty).UpdateTarget();
|
txtGitCloneDir?.GetBindingExpression(TextBox.TextProperty).UpdateTarget();
|
||||||
}
|
}
|
||||||
|
|
|
@ -369,8 +369,9 @@ namespace SourceGit.Views.Widgets {
|
||||||
saveToPatch.Icon = saveToPatchIcon;
|
saveToPatch.Icon = saveToPatchIcon;
|
||||||
saveToPatch.Header = App.Text("CommitCM.SaveAsPatch");
|
saveToPatch.Header = App.Text("CommitCM.SaveAsPatch");
|
||||||
saveToPatch.Click += (o, e) => {
|
saveToPatch.Click += (o, e) => {
|
||||||
var dialog = new Controls.FolderDialog();
|
var dialog = new System.Windows.Forms.FolderBrowserDialog();
|
||||||
if (dialog.ShowDialog() == true) {
|
dialog.ShowNewFolderButton = true;
|
||||||
|
if (dialog.ShowDialog() == System.Windows.Forms.DialogResult.OK) {
|
||||||
new Commands.FormatPatch(repo.Path, commit.SHA, dialog.SelectedPath).Exec();
|
new Commands.FormatPatch(repo.Path, commit.SHA, dialog.SelectedPath).Exec();
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
|
@ -313,8 +313,9 @@ namespace SourceGit.Views.Widgets {
|
||||||
saveAs.Header = App.Text("SaveAs");
|
saveAs.Header = App.Text("SaveAs");
|
||||||
saveAs.IsEnabled = node.Type == Models.ObjectType.Blob;
|
saveAs.IsEnabled = node.Type == Models.ObjectType.Blob;
|
||||||
saveAs.Click += (obj, ev) => {
|
saveAs.Click += (obj, ev) => {
|
||||||
var dialog = new Controls.FolderDialog();
|
var dialog = new System.Windows.Forms.FolderBrowserDialog();
|
||||||
if (dialog.ShowDialog() == true) {
|
dialog.ShowNewFolderButton = true;
|
||||||
|
if (dialog.ShowDialog() == System.Windows.Forms.DialogResult.OK) {
|
||||||
var full = Path.Combine(dialog.SelectedPath, Path.GetFileName(node.Path));
|
var full = Path.Combine(dialog.SelectedPath, Path.GetFileName(node.Path));
|
||||||
new Commands.SaveRevisionFile(repo, node.Path, sha, full).Exec();
|
new Commands.SaveRevisionFile(repo, node.Path, sha, full).Exec();
|
||||||
}
|
}
|
||||||
|
|
|
@ -23,8 +23,9 @@ namespace SourceGit.Views.Widgets {
|
||||||
|
|
||||||
#region FUNC_EVENTS
|
#region FUNC_EVENTS
|
||||||
private void OnOpenClicked(object sender, RoutedEventArgs e) {
|
private void OnOpenClicked(object sender, RoutedEventArgs e) {
|
||||||
var dialog = new Controls.FolderDialog();
|
var dialog = new System.Windows.Forms.FolderBrowserDialog();
|
||||||
if (dialog.ShowDialog() == true) CheckAndOpen(dialog.SelectedPath);
|
dialog.ShowNewFolderButton = true;
|
||||||
|
if (dialog.ShowDialog() == System.Windows.Forms.DialogResult.OK) CheckAndOpen(dialog.SelectedPath);
|
||||||
}
|
}
|
||||||
|
|
||||||
private void OnOpenTerminalClicked(object sender, RoutedEventArgs e) {
|
private void OnOpenTerminalClicked(object sender, RoutedEventArgs e) {
|
||||||
|
|
Loading…
Reference in a new issue