Update MW_Settings.cs

This commit is contained in:
CJK_mkp
2025-07-12 10:49:24 +08:00
committed by GitHub
parent 5ed28b121e
commit cac0fca3bb
+4 -7
View File
@@ -1262,10 +1262,7 @@ namespace Ink_Canvas {
}
private void SetAutoSavedStrokesLocationToDiskDButton_Click(object sender, RoutedEventArgs e) {
// 修改默认路径为软件根目录下的 Saves 文件夹
string appDirectory = AppDomain.CurrentDomain.BaseDirectory;
string savesPath = System.IO.Path.Combine(appDirectory, "Saves");
AutoSavedStrokesLocation.Text = savesPath;
AutoSavedStrokesLocation.Text = @"D:\Ink Canvas";
}
private void SetAutoSavedStrokesLocationToDocumentFolderButton_Click(object sender, RoutedEventArgs e) {
@@ -1814,12 +1811,12 @@ namespace Ink_Canvas {
}
private void HyperlinkSourceToPresentRepository_Click(object sender, RoutedEventArgs e) {
Process.Start("https://github.com/ChangSakura/Ink-Canvas");
Process.Start("https://bgithub.xyz/ChangSakura/Ink-Canvas");
HideSubPanels();
}
private void HyperlinkSourceToOringinalRepository_Click(object sender, RoutedEventArgs e) {
Process.Start("https://github.com/WXRIW/Ink-Canvas");
Process.Start("https://bgithub.xyz/WXRIW/Ink-Canvas");
HideSubPanels();
}
@@ -1879,4 +1876,4 @@ namespace Ink_Canvas {
}
}
}
}
}