feat: 12-形状画刷和变换-11RadialGradientBrush

This commit is contained in:
Bunny 2025-01-16 15:46:45 +08:00
parent 2dfb2fcc1e
commit 706833d094
8 changed files with 105 additions and 0 deletions

View File

@ -0,0 +1,18 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net8.0-windows</TargetFramework>
<RootNamespace>_12_形状画刷和变换_11RadialGradientBrush</RootNamespace>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<UseWPF>true</UseWPF>
</PropertyGroup>
<ItemGroup>
<Resource Include="public\003540AH4M72.jpg">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Resource>
</ItemGroup>
</Project>

View File

@ -0,0 +1,9 @@
<Application x:Class="_12_形状画刷和变换_11RadialGradientBrush.App"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="clr-namespace:_12_形状画刷和变换_11RadialGradientBrush"
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_形状画刷和变换_11RadialGradientBrush;
/// <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,27 @@
<Window x:Class="_12_形状画刷和变换_11RadialGradientBrush.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"
Icon="public/003540AH4M72.jpg" Title="12-形状画刷和变换-11RadialGradientBrush" Height="450" Width="800">
<StackPanel>
<Ellipse Margin="5" Stroke="Black" StrokeThickness="4" Width="200" Height="200">
<Ellipse.Fill>
<RadialGradientBrush RadiusX="1" RadiusY="1" GradientOrigin="0.7,0.3">
<GradientStop Color="Wheat" Offset="0" />
<GradientStop Color="Blue" Offset="1" />
</RadialGradientBrush>
</Ellipse.Fill>
</Ellipse>
<Ellipse Margin="5" Stroke="Black" StrokeThickness="4" Width="200" Height="200">
<Ellipse.Fill>
<RadialGradientBrush RadiusX="1" RadiusY="1" GradientOrigin="0.5,0.5">
<GradientStop Color="Wheat" Offset="0" />
<GradientStop Color="Red" Offset="0.5" />
</RadialGradientBrush>
</Ellipse.Fill>
</Ellipse>
</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_形状画刷和变换_11RadialGradientBrush;
/// <summary>
/// Interaction logic for MainWindow.xaml
/// </summary>
public partial class MainWindow : Window
{
public MainWindow()
{
InitializeComponent();
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 97 KiB

View File

@ -26,6 +26,8 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "12-形状画刷和变换-9L
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "12-形状画刷和变换-10彩虹文字内容", "12-形状画刷和变换-10彩虹文字内容\12-形状画刷和变换-10彩虹文字内容.csproj", "{AF7EF04E-E056-4FE1-837A-5591CE514ABA}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "12-形状画刷和变换-11RadialGradientBrush", "12-形状画刷和变换-11RadialGradientBrush\12-形状画刷和变换-11RadialGradientBrush.csproj", "{F8D6DF55-5ACC-40AD-A75F-C986E97CD412}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
@ -84,5 +86,9 @@ Global
{AF7EF04E-E056-4FE1-837A-5591CE514ABA}.Debug|Any CPU.Build.0 = Debug|Any CPU
{AF7EF04E-E056-4FE1-837A-5591CE514ABA}.Release|Any CPU.ActiveCfg = Release|Any CPU
{AF7EF04E-E056-4FE1-837A-5591CE514ABA}.Release|Any CPU.Build.0 = Release|Any CPU
{F8D6DF55-5ACC-40AD-A75F-C986E97CD412}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{F8D6DF55-5ACC-40AD-A75F-C986E97CD412}.Debug|Any CPU.Build.0 = Debug|Any CPU
{F8D6DF55-5ACC-40AD-A75F-C986E97CD412}.Release|Any CPU.ActiveCfg = Release|Any CPU
{F8D6DF55-5ACC-40AD-A75F-C986E97CD412}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
EndGlobal