4-图形和动画

This commit is contained in:
Bunny 2025-01-13 22:56:41 +08:00
parent cc029c33a1
commit bf62bb283d
8 changed files with 90 additions and 6 deletions

View File

@ -0,0 +1,12 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net8.0-windows</TargetFramework>
<RootNamespace>_12_形状画刷和变换_1矩形和椭圆</RootNamespace>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<UseWPF>true</UseWPF>
</PropertyGroup>
</Project>

View File

@ -0,0 +1,9 @@
<Application x:Class="_12_形状画刷和变换_1矩形和椭圆.App"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="clr-namespace:_12_形状画刷和变换_1矩形和椭圆"
StartupUri="MainWindow.xaml">
<Application.Resources>
</Application.Resources>
</Application>

View File

@ -0,0 +1,12 @@
using System.Configuration;
using System.Data;
using System.Windows;
namespace _12_形状画刷和变换_1矩形和椭圆;
/// <summary>
/// Interaction logic for App.xaml
/// </summary>
public partial class App : Application
{
}

View File

@ -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)
)]

View File

@ -0,0 +1,12 @@
<Window x:Class="_12_形状画刷和变换_1矩形和椭圆.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
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"
mc:Ignorable="d"
Title="_12_形状画刷和变换_1矩形和椭圆" Height="450" Width="800">
<StackPanel>
<Ellipse Fill="Yellow " Stroke="Blue" Height="50" Width="100" HorizontalAlignment="Left" />
<Rectangle Fill="Yellow" Stroke="Blue" Height="50" Width="100" Margin="5" HorizontalAlignment="Left" />
</StackPanel>
</Window>

View File

@ -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_形状画刷和变换_1矩形和椭圆;
/// <summary>
/// Interaction logic for MainWindow.xaml
/// </summary>
public partial class MainWindow : Window
{
public MainWindow()
{
InitializeComponent();
}
}

View File

@ -2,6 +2,8 @@
Microsoft Visual Studio Solution File, Format Version 12.00 Microsoft Visual Studio Solution File, Format Version 12.00
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "4-图形和动画", "4-图形和动画\4-图形和动画.csproj", "{881815E5-B0A6-4B68-8E2B-2AA302EFCDE6}" Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "4-图形和动画", "4-图形和动画\4-图形和动画.csproj", "{881815E5-B0A6-4B68-8E2B-2AA302EFCDE6}"
EndProject EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "12-形状画刷和变换-1矩形和椭圆", "12-形状画刷和变换-1矩形和椭圆\12-形状画刷和变换-1矩形和椭圆.csproj", "{C7A170F4-0BB0-417A-9646-A191A9254543}"
EndProject
Global Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU Debug|Any CPU = Debug|Any CPU
@ -12,5 +14,9 @@ Global
{881815E5-B0A6-4B68-8E2B-2AA302EFCDE6}.Debug|Any CPU.Build.0 = Debug|Any CPU {881815E5-B0A6-4B68-8E2B-2AA302EFCDE6}.Debug|Any CPU.Build.0 = Debug|Any CPU
{881815E5-B0A6-4B68-8E2B-2AA302EFCDE6}.Release|Any CPU.ActiveCfg = Release|Any CPU {881815E5-B0A6-4B68-8E2B-2AA302EFCDE6}.Release|Any CPU.ActiveCfg = Release|Any CPU
{881815E5-B0A6-4B68-8E2B-2AA302EFCDE6}.Release|Any CPU.Build.0 = Release|Any CPU {881815E5-B0A6-4B68-8E2B-2AA302EFCDE6}.Release|Any CPU.Build.0 = Release|Any CPU
{C7A170F4-0BB0-417A-9646-A191A9254543}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{C7A170F4-0BB0-417A-9646-A191A9254543}.Debug|Any CPU.Build.0 = Debug|Any CPU
{C7A170F4-0BB0-417A-9646-A191A9254543}.Release|Any CPU.ActiveCfg = Release|Any CPU
{C7A170F4-0BB0-417A-9646-A191A9254543}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection EndGlobalSection
EndGlobal EndGlobal

View File

@ -3,10 +3,10 @@
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008" xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:local="clr-namespace:_4_图形和动画"
mc:Ignorable="d" mc:Ignorable="d"
Title="MainWindow" Height="450" Width="800"> Title="_4_图形和动画" Height="450" Width="800">
<Grid> <StackPanel>
<Ellipse Fill="Yellow " Stroke="Blue" StrokeThickness="6" Height="50" Width="100" HorizontalAlignment="Left" />
</Grid> <Rectangle Fill="Yellow" Stroke="Blue" Height="50" Width="100" Margin="5" HorizontalAlignment="Left" />
</StackPanel>
</Window> </Window>