feat: 12-形状画刷和变换-13ImageBrush
This commit is contained in:
parent
9899876384
commit
6c5e04c509
|
@ -0,0 +1,18 @@
|
||||||
|
<Project Sdk="Microsoft.NET.Sdk">
|
||||||
|
|
||||||
|
<PropertyGroup>
|
||||||
|
<OutputType>WinExe</OutputType>
|
||||||
|
<TargetFramework>net8.0-windows</TargetFramework>
|
||||||
|
<RootNamespace>_12_形状画刷和变换_13ImageBrush</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_形状画刷和变换_13ImageBrush.App"
|
||||||
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
||||||
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
||||||
|
xmlns:local="clr-namespace:_12_形状画刷和变换_13ImageBrush"
|
||||||
|
StartupUri="MainWindow.xaml">
|
||||||
|
<Application.Resources>
|
||||||
|
|
||||||
|
</Application.Resources>
|
||||||
|
</Application>
|
|
@ -0,0 +1,12 @@
|
||||||
|
using System.Configuration;
|
||||||
|
using System.Data;
|
||||||
|
using System.Windows;
|
||||||
|
|
||||||
|
namespace _12_形状画刷和变换_13ImageBrush;
|
||||||
|
|
||||||
|
/// <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,45 @@
|
||||||
|
<Window x:Class="_12_形状画刷和变换_13ImageBrush.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-形状画刷和变换-13ImageBrush" Height="800" Width="800">
|
||||||
|
<ScrollViewer>
|
||||||
|
<StackPanel Margin="10">
|
||||||
|
|
||||||
|
<StackPanel Height="200" Orientation="Horizontal">
|
||||||
|
<StackPanel.Background>
|
||||||
|
<ImageBrush ImageSource="public/003540AH4M72.jpg" ViewportUnits="Absolute" TileMode="Tile"
|
||||||
|
Viewport="0,0 32,32" />
|
||||||
|
</StackPanel.Background>
|
||||||
|
<Label>固定尺寸 TileMode="FlipX"</Label>
|
||||||
|
</StackPanel>
|
||||||
|
|
||||||
|
<StackPanel Height="200" Orientation="Horizontal">
|
||||||
|
<StackPanel.Background>
|
||||||
|
<ImageBrush ImageSource="public/003540AH4M72.jpg" Viewport="0,0 32,32" TileMode="FlipY"
|
||||||
|
ViewportUnits="Absolute" />
|
||||||
|
</StackPanel.Background>
|
||||||
|
<Label>固定尺寸 TileMode="FlipY"</Label>
|
||||||
|
</StackPanel>
|
||||||
|
|
||||||
|
<StackPanel Height="200" Orientation="Horizontal">
|
||||||
|
<StackPanel.Background>
|
||||||
|
<ImageBrush ImageSource="public/003540AH4M72.jpg" Viewport="0,0 32,32" TileMode="FlipY"
|
||||||
|
ViewportUnits="Absolute" />
|
||||||
|
</StackPanel.Background>
|
||||||
|
<Label>固定尺寸 TileMode="FlipY"</Label>
|
||||||
|
</StackPanel>
|
||||||
|
|
||||||
|
<StackPanel Height="200" Orientation="Horizontal">
|
||||||
|
<StackPanel.Background>
|
||||||
|
<ImageBrush ImageSource="public/003540AH4M72.jpg" Viewport="0,0 32,32" ViewportUnits="Absolute"
|
||||||
|
TileMode="FlipXY" />
|
||||||
|
</StackPanel.Background>
|
||||||
|
<Label>固定尺寸 TileMode="FlipXY"</Label>
|
||||||
|
</StackPanel>
|
||||||
|
|
||||||
|
</StackPanel>
|
||||||
|
</ScrollViewer>
|
||||||
|
</Window>
|
|
@ -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_形状画刷和变换_13ImageBrush;
|
||||||
|
|
||||||
|
/// <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 |
|
@ -30,6 +30,8 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "12-形状画刷和变换-11
|
||||||
EndProject
|
EndProject
|
||||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "12-形状画刷和变换-12ImageBrush", "12-形状画刷和变换-12ImageBrush\12-形状画刷和变换-12ImageBrush.csproj", "{59A18710-4564-4818-BB21-75077C76CA94}"
|
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "12-形状画刷和变换-12ImageBrush", "12-形状画刷和变换-12ImageBrush\12-形状画刷和变换-12ImageBrush.csproj", "{59A18710-4564-4818-BB21-75077C76CA94}"
|
||||||
EndProject
|
EndProject
|
||||||
|
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "12-形状画刷和变换-13ImageBrush", "12-形状画刷和变换-13ImageBrush\12-形状画刷和变换-13ImageBrush.csproj", "{41401F84-45A1-4BCB-929E-C8732BDEF850}"
|
||||||
|
EndProject
|
||||||
Global
|
Global
|
||||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||||
Debug|Any CPU = Debug|Any CPU
|
Debug|Any CPU = Debug|Any CPU
|
||||||
|
@ -96,5 +98,9 @@ Global
|
||||||
{59A18710-4564-4818-BB21-75077C76CA94}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
{59A18710-4564-4818-BB21-75077C76CA94}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||||
{59A18710-4564-4818-BB21-75077C76CA94}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
{59A18710-4564-4818-BB21-75077C76CA94}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||||
{59A18710-4564-4818-BB21-75077C76CA94}.Release|Any CPU.Build.0 = Release|Any CPU
|
{59A18710-4564-4818-BB21-75077C76CA94}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||||
|
{41401F84-45A1-4BCB-929E-C8732BDEF850}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||||
|
{41401F84-45A1-4BCB-929E-C8732BDEF850}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||||
|
{41401F84-45A1-4BCB-929E-C8732BDEF850}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||||
|
{41401F84-45A1-4BCB-929E-C8732BDEF850}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||||
EndGlobalSection
|
EndGlobalSection
|
||||||
EndGlobal
|
EndGlobal
|
||||||
|
|
Loading…
Reference in New Issue