feat: 14-效果和可视化对象-2效果338P
This commit is contained in:
parent
ca81b44353
commit
fc20947481
|
@ -0,0 +1,17 @@
|
||||||
|
<Project Sdk="Microsoft.NET.Sdk">
|
||||||
|
|
||||||
|
<PropertyGroup>
|
||||||
|
<OutputType>WinExe</OutputType>
|
||||||
|
<TargetFramework>net8.0-windows</TargetFramework>
|
||||||
|
<RootNamespace>_14_效果和可视化对象_2效果338P</RootNamespace>
|
||||||
|
<Nullable>enable</Nullable>
|
||||||
|
<ImplicitUsings>enable</ImplicitUsings>
|
||||||
|
<UseWPF>true</UseWPF>
|
||||||
|
</PropertyGroup>
|
||||||
|
|
||||||
|
<ItemGroup>
|
||||||
|
<Resource Include="public\003540AH4M72.jpg"/>
|
||||||
|
<Resource Include="public\bunny.png"/>
|
||||||
|
</ItemGroup>
|
||||||
|
|
||||||
|
</Project>
|
|
@ -0,0 +1,9 @@
|
||||||
|
<Application x:Class="_14_效果和可视化对象_2效果338P.App"
|
||||||
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
||||||
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
||||||
|
xmlns:local="clr-namespace:_14_效果和可视化对象_2效果338P"
|
||||||
|
StartupUri="MainWindow.xaml">
|
||||||
|
<Application.Resources>
|
||||||
|
|
||||||
|
</Application.Resources>
|
||||||
|
</Application>
|
|
@ -0,0 +1,12 @@
|
||||||
|
using System.Configuration;
|
||||||
|
using System.Data;
|
||||||
|
using System.Windows;
|
||||||
|
|
||||||
|
namespace _14_效果和可视化对象_2效果338P;
|
||||||
|
|
||||||
|
/// <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,15 @@
|
||||||
|
<Window x:Class="_14_效果和可视化对象_2效果338P.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="14-效果和可视化对象-2效果 P338" Height="450" Width="800">
|
||||||
|
<StackPanel>
|
||||||
|
<Button Content="圆角2" Padding="5" Margin="3">
|
||||||
|
<Button.Effect>
|
||||||
|
<BlurEffect Radius="2" />
|
||||||
|
</Button.Effect>
|
||||||
|
</Button>
|
||||||
|
</StackPanel>
|
||||||
|
</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 _14_效果和可视化对象_2效果338P;
|
||||||
|
|
||||||
|
/// <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 |
Binary file not shown.
After Width: | Height: | Size: 1.2 MiB |
|
@ -66,6 +66,8 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "13-几何图形和图画-8
|
||||||
EndProject
|
EndProject
|
||||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "14-效果和可视化对象-1绘制绘制可视化对象", "14-效果和可视化对象-1绘制绘制可视化对象\14-效果和可视化对象-1绘制绘制可视化对象.csproj", "{3B0794E6-1A52-484B-9621-03C29708F6F9}"
|
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "14-效果和可视化对象-1绘制绘制可视化对象", "14-效果和可视化对象-1绘制绘制可视化对象\14-效果和可视化对象-1绘制绘制可视化对象.csproj", "{3B0794E6-1A52-484B-9621-03C29708F6F9}"
|
||||||
EndProject
|
EndProject
|
||||||
|
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "14-效果和可视化对象-2效果338P", "14-效果和可视化对象-2效果338P\14-效果和可视化对象-2效果338P.csproj", "{54FB1DD5-2106-4272-B8FD-21851A4B1CAD}"
|
||||||
|
EndProject
|
||||||
Global
|
Global
|
||||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||||
Debug|Any CPU = Debug|Any CPU
|
Debug|Any CPU = Debug|Any CPU
|
||||||
|
@ -204,5 +206,9 @@ Global
|
||||||
{3B0794E6-1A52-484B-9621-03C29708F6F9}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
{3B0794E6-1A52-484B-9621-03C29708F6F9}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||||
{3B0794E6-1A52-484B-9621-03C29708F6F9}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
{3B0794E6-1A52-484B-9621-03C29708F6F9}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||||
{3B0794E6-1A52-484B-9621-03C29708F6F9}.Release|Any CPU.Build.0 = Release|Any CPU
|
{3B0794E6-1A52-484B-9621-03C29708F6F9}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||||
|
{54FB1DD5-2106-4272-B8FD-21851A4B1CAD}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||||
|
{54FB1DD5-2106-4272-B8FD-21851A4B1CAD}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||||
|
{54FB1DD5-2106-4272-B8FD-21851A4B1CAD}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||||
|
{54FB1DD5-2106-4272-B8FD-21851A4B1CAD}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||||
EndGlobalSection
|
EndGlobalSection
|
||||||
EndGlobal
|
EndGlobal
|
||||||
|
|
Loading…
Reference in New Issue