diff --git a/WPF控件-5-RadioButton/App.xaml b/WPF控件-5-RadioButton/App.xaml
new file mode 100644
index 0000000..caaafd2
--- /dev/null
+++ b/WPF控件-5-RadioButton/App.xaml
@@ -0,0 +1,9 @@
+
+
+
+
+
diff --git a/WPF控件-5-RadioButton/App.xaml.cs b/WPF控件-5-RadioButton/App.xaml.cs
new file mode 100644
index 0000000..6a9cf38
--- /dev/null
+++ b/WPF控件-5-RadioButton/App.xaml.cs
@@ -0,0 +1,12 @@
+using System.Configuration;
+using System.Data;
+using System.Windows;
+
+namespace WPF控件_5_RadioButton;
+
+///
+/// Interaction logic for App.xaml
+///
+public partial class App : Application
+{
+}
\ No newline at end of file
diff --git a/WPF控件-5-RadioButton/AssemblyInfo.cs b/WPF控件-5-RadioButton/AssemblyInfo.cs
new file mode 100644
index 0000000..4a05c7d
--- /dev/null
+++ b/WPF控件-5-RadioButton/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/WPF控件-5-RadioButton/MainWindow.xaml b/WPF控件-5-RadioButton/MainWindow.xaml
new file mode 100644
index 0000000..bf8ac7e
--- /dev/null
+++ b/WPF控件-5-RadioButton/MainWindow.xaml
@@ -0,0 +1,29 @@
+
+
+
+
+ Group 1
+ Group 2
+ Group 3
+
+ Group 3
+
+
+
+
+
+ Group4
+ Group4
+ Group4
+ Group4
+
+
+
+
diff --git a/WPF控件-5-RadioButton/MainWindow.xaml.cs b/WPF控件-5-RadioButton/MainWindow.xaml.cs
new file mode 100644
index 0000000..e841235
--- /dev/null
+++ b/WPF控件-5-RadioButton/MainWindow.xaml.cs
@@ -0,0 +1,23 @@
+using System.Text;
+using System.Windows;
+using System.Windows.Controls;
+using System.Windows.Data;
+using System.Windows.Documents;
+using System.Windows.Input;
+using System.Windows.Media;
+using System.Windows.Media.Imaging;
+using System.Windows.Navigation;
+using System.Windows.Shapes;
+
+namespace WPF控件_5_RadioButton;
+
+///
+/// Interaction logic for MainWindow.xaml
+///
+public partial class MainWindow : Window
+{
+ public MainWindow()
+ {
+ InitializeComponent();
+ }
+}
\ No newline at end of file
diff --git a/WPF控件-5-RadioButton/WPF控件-5-RadioButton.csproj b/WPF控件-5-RadioButton/WPF控件-5-RadioButton.csproj
new file mode 100644
index 0000000..9b5e18b
--- /dev/null
+++ b/WPF控件-5-RadioButton/WPF控件-5-RadioButton.csproj
@@ -0,0 +1,12 @@
+
+
+
+ WinExe
+ net8.0-windows
+ WPF控件_5_RadioButton
+ enable
+ enable
+ true
+
+
+
diff --git a/WPF控件.sln b/WPF控件.sln
index 8cd9b67..8ce4eca 100644
--- a/WPF控件.sln
+++ b/WPF控件.sln
@@ -8,6 +8,8 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WPF控件-3-内容原则",
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WPF控件-4-标签", "WPF控件-4-标签\WPF控件-4-标签.csproj", "{0CCEE398-E31A-4384-B16B-6D137F758716}"
EndProject
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WPF控件-5-RadioButton", "WPF控件-5-RadioButton\WPF控件-5-RadioButton.csproj", "{C3961D75-D2BF-4979-B985-1FD652CDFC0C}"
+EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
@@ -30,5 +32,9 @@ Global
{0CCEE398-E31A-4384-B16B-6D137F758716}.Debug|Any CPU.Build.0 = Debug|Any CPU
{0CCEE398-E31A-4384-B16B-6D137F758716}.Release|Any CPU.ActiveCfg = Release|Any CPU
{0CCEE398-E31A-4384-B16B-6D137F758716}.Release|Any CPU.Build.0 = Release|Any CPU
+ {C3961D75-D2BF-4979-B985-1FD652CDFC0C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+ {C3961D75-D2BF-4979-B985-1FD652CDFC0C}.Debug|Any CPU.Build.0 = Debug|Any CPU
+ {C3961D75-D2BF-4979-B985-1FD652CDFC0C}.Release|Any CPU.ActiveCfg = Release|Any CPU
+ {C3961D75-D2BF-4979-B985-1FD652CDFC0C}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
EndGlobal