diff --git a/5-17.2理解模板/MainWindow.xaml b/5-17.2理解模板/MainWindow.xaml index 63ce781..c46f663 100644 --- a/5-17.2理解模板/MainWindow.xaml +++ b/5-17.2理解模板/MainWindow.xaml @@ -5,7 +5,7 @@ xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" mc:Ignorable="d" Title="MainWindow" Height="450" Width="800"> - + diff --git a/5-17.3创建控件模板/5-17.3创建控件模板.csproj b/5-17.3创建控件模板/5-17.3创建控件模板.csproj new file mode 100644 index 0000000..3b818b8 --- /dev/null +++ b/5-17.3创建控件模板/5-17.3创建控件模板.csproj @@ -0,0 +1,12 @@ + + + + WinExe + net8.0-windows + _5_17._3创建控件模板 + enable + enable + true + + + diff --git a/5-17.3创建控件模板/App.xaml b/5-17.3创建控件模板/App.xaml new file mode 100644 index 0000000..25707d5 --- /dev/null +++ b/5-17.3创建控件模板/App.xaml @@ -0,0 +1,9 @@ + + + + + diff --git a/5-17.3创建控件模板/App.xaml.cs b/5-17.3创建控件模板/App.xaml.cs new file mode 100644 index 0000000..91ec0e3 --- /dev/null +++ b/5-17.3创建控件模板/App.xaml.cs @@ -0,0 +1,12 @@ +using System.Configuration; +using System.Data; +using System.Windows; + +namespace _5_17._3创建控件模板; + +/// +/// Interaction logic for App.xaml +/// +public partial class App : Application +{ +} \ No newline at end of file diff --git a/5-17.3创建控件模板/AssemblyInfo.cs b/5-17.3创建控件模板/AssemblyInfo.cs new file mode 100644 index 0000000..4a05c7d --- /dev/null +++ b/5-17.3创建控件模板/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/5-17.3创建控件模板/MainWindow.xaml b/5-17.3创建控件模板/MainWindow.xaml new file mode 100644 index 0000000..3d169e8 --- /dev/null +++ b/5-17.3创建控件模板/MainWindow.xaml @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/5-17.3创建控件模板/MainWindow.xaml.cs b/5-17.3创建控件模板/MainWindow.xaml.cs new file mode 100644 index 0000000..c7b4b0d --- /dev/null +++ b/5-17.3创建控件模板/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 _5_17._3创建控件模板; + +/// +/// Interaction logic for MainWindow.xaml +/// +public partial class MainWindow : Window +{ + public MainWindow() + { + InitializeComponent(); + } +} \ No newline at end of file diff --git a/5-WPF模板和自定义元素.sln b/5-WPF模板和自定义元素.sln index 6b9ee07..42bbdd7 100644 --- a/5-WPF模板和自定义元素.sln +++ b/5-WPF模板和自定义元素.sln @@ -4,6 +4,8 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "5-17.2理解模板", "5-17. EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "5-17.1理解逻辑树和可视化树", "5-17.1理解逻辑树和可视化树\5-17.1理解逻辑树和可视化树.csproj", "{9A8CFF92-191D-4188-8869-64E526351AA4}" EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "5-17.3创建控件模板", "5-17.3创建控件模板\5-17.3创建控件模板.csproj", "{126C42EA-CC67-4FDA-8839-374F57C667DB}" +EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Any CPU = Debug|Any CPU @@ -18,5 +20,9 @@ Global {9A8CFF92-191D-4188-8869-64E526351AA4}.Debug|Any CPU.Build.0 = Debug|Any CPU {9A8CFF92-191D-4188-8869-64E526351AA4}.Release|Any CPU.ActiveCfg = Release|Any CPU {9A8CFF92-191D-4188-8869-64E526351AA4}.Release|Any CPU.Build.0 = Release|Any CPU + {126C42EA-CC67-4FDA-8839-374F57C667DB}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {126C42EA-CC67-4FDA-8839-374F57C667DB}.Debug|Any CPU.Build.0 = Debug|Any CPU + {126C42EA-CC67-4FDA-8839-374F57C667DB}.Release|Any CPU.ActiveCfg = Release|Any CPU + {126C42EA-CC67-4FDA-8839-374F57C667DB}.Release|Any CPU.Build.0 = Release|Any CPU EndGlobalSection EndGlobal