diff --git a/3-WPF命令.sln b/3-WPF命令.sln
index a6ec439..df885e2 100644
--- a/3-WPF命令.sln
+++ b/3-WPF命令.sln
@@ -6,6 +6,8 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "3-WPF命令2", "3-WPF命令
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "3-WPF命令3-使用命令源", "3-WPF命令3-使用命令源\3-WPF命令3-使用命令源.csproj", "{525781C0-0DB9-41F4-87C5-CECF7261ED25}"
EndProject
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "3-WPF命令4-微调命令文本", "3-WPF命令4-微调命令文本\3-WPF命令4-微调命令文本.csproj", "{67B693EA-7189-47B7-B3AE-D2F9A433A676}"
+EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
@@ -24,5 +26,9 @@ Global
{525781C0-0DB9-41F4-87C5-CECF7261ED25}.Debug|Any CPU.Build.0 = Debug|Any CPU
{525781C0-0DB9-41F4-87C5-CECF7261ED25}.Release|Any CPU.ActiveCfg = Release|Any CPU
{525781C0-0DB9-41F4-87C5-CECF7261ED25}.Release|Any CPU.Build.0 = Release|Any CPU
+ {67B693EA-7189-47B7-B3AE-D2F9A433A676}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+ {67B693EA-7189-47B7-B3AE-D2F9A433A676}.Debug|Any CPU.Build.0 = Debug|Any CPU
+ {67B693EA-7189-47B7-B3AE-D2F9A433A676}.Release|Any CPU.ActiveCfg = Release|Any CPU
+ {67B693EA-7189-47B7-B3AE-D2F9A433A676}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
EndGlobal
diff --git a/3-WPF命令3-使用命令源/MainWindow.xaml b/3-WPF命令3-使用命令源/MainWindow.xaml
index 18c6f5d..0fce5bd 100644
--- a/3-WPF命令3-使用命令源/MainWindow.xaml
+++ b/3-WPF命令3-使用命令源/MainWindow.xaml
@@ -16,6 +16,5 @@
-
\ No newline at end of file
diff --git a/3-WPF命令4-微调命令文本/3-WPF命令4-微调命令文本.csproj b/3-WPF命令4-微调命令文本/3-WPF命令4-微调命令文本.csproj
new file mode 100644
index 0000000..fa1a6c2
--- /dev/null
+++ b/3-WPF命令4-微调命令文本/3-WPF命令4-微调命令文本.csproj
@@ -0,0 +1,18 @@
+
+
+
+ WinExe
+ net8.0-windows
+ _3_WPF命令4_微调命令文本
+ enable
+ enable
+ true
+
+
+
+
+ Always
+
+
+
+
diff --git a/3-WPF命令4-微调命令文本/App.xaml b/3-WPF命令4-微调命令文本/App.xaml
new file mode 100644
index 0000000..b33572f
--- /dev/null
+++ b/3-WPF命令4-微调命令文本/App.xaml
@@ -0,0 +1,9 @@
+
+
+
+
+
diff --git a/3-WPF命令4-微调命令文本/App.xaml.cs b/3-WPF命令4-微调命令文本/App.xaml.cs
new file mode 100644
index 0000000..b8e5b5b
--- /dev/null
+++ b/3-WPF命令4-微调命令文本/App.xaml.cs
@@ -0,0 +1,12 @@
+using System.Configuration;
+using System.Data;
+using System.Windows;
+
+namespace _3_WPF命令4_微调命令文本;
+
+///
+/// Interaction logic for App.xaml
+///
+public partial class App : Application
+{
+}
\ No newline at end of file
diff --git a/3-WPF命令4-微调命令文本/AssemblyInfo.cs b/3-WPF命令4-微调命令文本/AssemblyInfo.cs
new file mode 100644
index 0000000..4a05c7d
--- /dev/null
+++ b/3-WPF命令4-微调命令文本/AssemblyInfo.cs
@@ -0,0 +1,10 @@
+using System.Windows;
+
+[assembly: ThemeInfo(
+ ResourceDictionaryLocation.None, //where theme specific resource dictionaries are located
+ //(used if a resource is not found in the page,
+ // or application resource dictionaries)
+ ResourceDictionaryLocation.SourceAssembly //where the generic resource dictionary is located
+ //(used if a resource is not found in the page,
+ // app, or any theme specific resource dictionaries)
+)]
\ No newline at end of file
diff --git a/3-WPF命令4-微调命令文本/MainWindow.xaml b/3-WPF命令4-微调命令文本/MainWindow.xaml
new file mode 100644
index 0000000..30a4b28
--- /dev/null
+++ b/3-WPF命令4-微调命令文本/MainWindow.xaml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/3-WPF命令4-微调命令文本/MainWindow.xaml.cs b/3-WPF命令4-微调命令文本/MainWindow.xaml.cs
new file mode 100644
index 0000000..3ed7996
--- /dev/null
+++ b/3-WPF命令4-微调命令文本/MainWindow.xaml.cs
@@ -0,0 +1,20 @@
+using System.Windows;
+using System.Windows.Input;
+
+namespace _3_WPF命令4_微调命令文本;
+
+///
+/// Interaction logic for MainWindow.xaml
+///
+public partial class MainWindow : Window
+{
+ public MainWindow()
+ {
+ InitializeComponent();
+ }
+
+ private void CommandBinding_OnExecuted(object sender, ExecutedRoutedEventArgs e)
+ {
+ Console.WriteLine("CommandBinding...");
+ }
+}
\ No newline at end of file
diff --git a/3-WPF命令4-微调命令文本/public/003540AH4M72.jpg b/3-WPF命令4-微调命令文本/public/003540AH4M72.jpg
new file mode 100644
index 0000000..4aa96ac
Binary files /dev/null and b/3-WPF命令4-微调命令文本/public/003540AH4M72.jpg differ