diff --git a/12-形状画刷和变换-4折线/MainWindow.xaml b/12-形状画刷和变换-4折线/MainWindow.xaml index 3617e4d..8f044d6 100644 --- a/12-形状画刷和变换-4折线/MainWindow.xaml +++ b/12-形状画刷和变换-4折线/MainWindow.xaml @@ -3,12 +3,11 @@ xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:d="http://schemas.microsoft.com/expression/blend/2008" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" - xmlns:local="clr-namespace:_12_形状画刷和变换_4折线" mc:Ignorable="d" - Icon="public/003540AH4M72.jpg" Title="12-形状画刷和变换-3直线" Height="450" Width="800"> + Icon="public/003540AH4M72.jpg" Title="12-形状画刷和变换-3直线" Height="450" Width="800"> - - - + + + - + \ No newline at end of file diff --git a/12-形状画刷和变换-5多边形/12-形状画刷和变换-5多边形.csproj b/12-形状画刷和变换-5多边形/12-形状画刷和变换-5多边形.csproj new file mode 100644 index 0000000..945406c --- /dev/null +++ b/12-形状画刷和变换-5多边形/12-形状画刷和变换-5多边形.csproj @@ -0,0 +1,18 @@ + + + + WinExe + net8.0-windows + _12_形状画刷和变换_5多边形 + enable + enable + true + + + + + Always + + + + diff --git a/12-形状画刷和变换-5多边形/App.xaml b/12-形状画刷和变换-5多边形/App.xaml new file mode 100644 index 0000000..ccb8fdf --- /dev/null +++ b/12-形状画刷和变换-5多边形/App.xaml @@ -0,0 +1,9 @@ + + + + + diff --git a/12-形状画刷和变换-5多边形/App.xaml.cs b/12-形状画刷和变换-5多边形/App.xaml.cs new file mode 100644 index 0000000..e22fceb --- /dev/null +++ b/12-形状画刷和变换-5多边形/App.xaml.cs @@ -0,0 +1,12 @@ +using System.Configuration; +using System.Data; +using System.Windows; + +namespace _12_形状画刷和变换_5多边形; + +/// +/// Interaction logic for App.xaml +/// +public partial class App : Application +{ +} \ No newline at end of file diff --git a/12-形状画刷和变换-5多边形/AssemblyInfo.cs b/12-形状画刷和变换-5多边形/AssemblyInfo.cs new file mode 100644 index 0000000..4a05c7d --- /dev/null +++ b/12-形状画刷和变换-5多边形/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/12-形状画刷和变换-5多边形/MainWindow.xaml b/12-形状画刷和变换-5多边形/MainWindow.xaml new file mode 100644 index 0000000..eef1e42 --- /dev/null +++ b/12-形状画刷和变换-5多边形/MainWindow.xaml @@ -0,0 +1,19 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/12-形状画刷和变换-5多边形/MainWindow.xaml.cs b/12-形状画刷和变换-5多边形/MainWindow.xaml.cs new file mode 100644 index 0000000..5ce9b79 --- /dev/null +++ b/12-形状画刷和变换-5多边形/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 _12_形状画刷和变换_5多边形; + +/// +/// Interaction logic for MainWindow.xaml +/// +public partial class MainWindow : Window +{ + public MainWindow() + { + InitializeComponent(); + } +} \ No newline at end of file diff --git a/12-形状画刷和变换-5多边形/public/003540AH4M72.jpg b/12-形状画刷和变换-5多边形/public/003540AH4M72.jpg new file mode 100644 index 0000000..4aa96ac Binary files /dev/null and b/12-形状画刷和变换-5多边形/public/003540AH4M72.jpg differ diff --git a/4-图形和动画.sln b/4-图形和动画.sln index d9c3a16..93da778 100644 --- a/4-图形和动画.sln +++ b/4-图形和动画.sln @@ -14,6 +14,8 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "12-形状画刷和变换-3 EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "12-形状画刷和变换-4折线", "12-形状画刷和变换-4折线\12-形状画刷和变换-4折线.csproj", "{47BBE84E-207A-428F-8FDD-B4D56A198555}" EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "12-形状画刷和变换-5多边形", "12-形状画刷和变换-5多边形\12-形状画刷和变换-5多边形.csproj", "{820BEAB0-62D0-4228-8526-3FFCB7DDD723}" +EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Any CPU = Debug|Any CPU @@ -48,5 +50,9 @@ Global {47BBE84E-207A-428F-8FDD-B4D56A198555}.Debug|Any CPU.Build.0 = Debug|Any CPU {47BBE84E-207A-428F-8FDD-B4D56A198555}.Release|Any CPU.ActiveCfg = Release|Any CPU {47BBE84E-207A-428F-8FDD-B4D56A198555}.Release|Any CPU.Build.0 = Release|Any CPU + {820BEAB0-62D0-4228-8526-3FFCB7DDD723}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {820BEAB0-62D0-4228-8526-3FFCB7DDD723}.Debug|Any CPU.Build.0 = Debug|Any CPU + {820BEAB0-62D0-4228-8526-3FFCB7DDD723}.Release|Any CPU.ActiveCfg = Release|Any CPU + {820BEAB0-62D0-4228-8526-3FFCB7DDD723}.Release|Any CPU.Build.0 = Release|Any CPU EndGlobalSection EndGlobal