From 3390e3958e10aa7f3a6a59dbea5b1c28a5149cbd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=BC=98=E9=9F=AC=20=E5=BC=A0?= Date: Sun, 15 Nov 2020 11:05:46 +0800 Subject: [PATCH] Add quicklink to customized theme folder --- Flow.Launcher/SettingWindow.xaml | 8 ++++---- Flow.Launcher/SettingWindow.xaml.cs | 5 +++++ 2 files changed, 9 insertions(+), 4 deletions(-) diff --git a/Flow.Launcher/SettingWindow.xaml b/Flow.Launcher/SettingWindow.xaml index f8903e891..fd657cd22 100644 --- a/Flow.Launcher/SettingWindow.xaml +++ b/Flow.Launcher/SettingWindow.xaml @@ -172,7 +172,7 @@ - + @@ -211,10 +211,10 @@ + + - diff --git a/Flow.Launcher/SettingWindow.xaml.cs b/Flow.Launcher/SettingWindow.xaml.cs index eb5fd7de0..60183f545 100644 --- a/Flow.Launcher/SettingWindow.xaml.cs +++ b/Flow.Launcher/SettingWindow.xaml.cs @@ -275,5 +275,10 @@ namespace Flow.Launcher { Close(); } + + private void Button_Click(object sender, RoutedEventArgs e) + { + System.Diagnostics.Process.Start("explorer",$"{DataLocation.DataDirectory()}\\Themes"); + } } }