feat: 12-形状画刷和变换-10彩虹文字内容
This commit is contained in:
parent
dc96e2a248
commit
2dfb2fcc1e
|
@ -0,0 +1,18 @@
|
|||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<PropertyGroup>
|
||||
<OutputType>WinExe</OutputType>
|
||||
<TargetFramework>net8.0-windows</TargetFramework>
|
||||
<RootNamespace>_12_形状画刷和变换_10彩虹文字内容</RootNamespace>
|
||||
<Nullable>enable</Nullable>
|
||||
<ImplicitUsings>enable</ImplicitUsings>
|
||||
<UseWPF>true</UseWPF>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<Resource Include="public\003540AH4M72.jpg">
|
||||
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
||||
</Resource>
|
||||
</ItemGroup>
|
||||
|
||||
</Project>
|
|
@ -0,0 +1,9 @@
|
|||
<Application x:Class="_12_形状画刷和变换_10彩虹文字内容.App"
|
||||
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
||||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
||||
xmlns:local="clr-namespace:_12_形状画刷和变换_10彩虹文字内容"
|
||||
StartupUri="MainWindow.xaml">
|
||||
<Application.Resources>
|
||||
|
||||
</Application.Resources>
|
||||
</Application>
|
|
@ -0,0 +1,12 @@
|
|||
using System.Configuration;
|
||||
using System.Data;
|
||||
using System.Windows;
|
||||
|
||||
namespace _12_形状画刷和变换_10彩虹文字内容;
|
||||
|
||||
/// <summary>
|
||||
/// Interaction logic for App.xaml
|
||||
/// </summary>
|
||||
public partial class App : Application
|
||||
{
|
||||
}
|
|
@ -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)
|
||||
)]
|
|
@ -0,0 +1,22 @@
|
|||
<Window x:Class="_12_形状画刷和变换_10彩虹文字内容.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-形状画刷和变换-10彩虹文字内容" Height="450" Width="800">
|
||||
<Grid>
|
||||
<TextBlock Name="TextBlockCmd" TextWrapping="Wrap" FontWeight="Bold" HorizontalAlignment="Center"
|
||||
VerticalAlignment="Center" FontSize="94">
|
||||
<TextBlock.Foreground>
|
||||
<LinearGradientBrush StartPoint="0,0" EndPoint="1,1">
|
||||
<GradientStop Color="Yellow" Offset="0" />
|
||||
<GradientStop Color="Red" Offset="0.25" />
|
||||
<GradientStop Color="Blue" Offset="0.75" />
|
||||
<GradientStop Color="LimeGreen" Offset="1" />
|
||||
</LinearGradientBrush>
|
||||
</TextBlock.Foreground>
|
||||
12-形状画刷和变换-10彩虹文字内容
|
||||
</TextBlock>
|
||||
</Grid>
|
||||
</Window>
|
|
@ -0,0 +1,18 @@
|
|||
using System.Windows;
|
||||
using System.Windows.Media;
|
||||
|
||||
namespace _12_形状画刷和变换_10彩虹文字内容;
|
||||
|
||||
/// <summary>
|
||||
/// Interaction logic for MainWindow.xaml
|
||||
/// </summary>
|
||||
public partial class MainWindow : Window
|
||||
{
|
||||
public MainWindow()
|
||||
{
|
||||
InitializeComponent();
|
||||
|
||||
// 使用代码控制
|
||||
TextBlockCmd.Foreground = new LinearGradientBrush(Color.FromRgb(200, 255, 12), Color.FromRgb(0, 255, 12), 90);
|
||||
}
|
||||
}
|
Binary file not shown.
After Width: | Height: | Size: 97 KiB |
|
@ -24,6 +24,8 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "12-形状画刷和变换-8S
|
|||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "12-形状画刷和变换-9LinearGradientBrush", "12-形状画刷和变换-9LinearGradientBrush\12-形状画刷和变换-9LinearGradientBrush.csproj", "{1E49BA0D-B480-45DB-A5A0-CBEA0F419222}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "12-形状画刷和变换-10彩虹文字内容", "12-形状画刷和变换-10彩虹文字内容\12-形状画刷和变换-10彩虹文字内容.csproj", "{AF7EF04E-E056-4FE1-837A-5591CE514ABA}"
|
||||
EndProject
|
||||
Global
|
||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||
Debug|Any CPU = Debug|Any CPU
|
||||
|
@ -78,5 +80,9 @@ Global
|
|||
{1E49BA0D-B480-45DB-A5A0-CBEA0F419222}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{1E49BA0D-B480-45DB-A5A0-CBEA0F419222}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{1E49BA0D-B480-45DB-A5A0-CBEA0F419222}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
{AF7EF04E-E056-4FE1-837A-5591CE514ABA}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{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
|
||||
EndGlobalSection
|
||||
EndGlobal
|
||||
|
|
Loading…
Reference in New Issue