5-WPF样式和行为-3设置属性

This commit is contained in:
Bunny 2025-01-12 21:09:50 +08:00
parent ef404d3bdd
commit d092d14b23
8 changed files with 117 additions and 0 deletions

View File

@ -22,6 +22,8 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "5-WPF样式和行为-1样
EndProject EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "5-WPF样式和行为-2创建样式对象", "5-WPF样式和行为-2创建样式对象\5-WPF样式和行为-2创建样式对象.csproj", "{97B916D8-9AE5-4B39-A7D9-CDB7902AFA31}" Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "5-WPF样式和行为-2创建样式对象", "5-WPF样式和行为-2创建样式对象\5-WPF样式和行为-2创建样式对象.csproj", "{97B916D8-9AE5-4B39-A7D9-CDB7902AFA31}"
EndProject EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "5-WPF样式和行为-3设置属性", "5-WPF样式和行为-3设置属性\5-WPF样式和行为-3设置属性.csproj", "{D8E267CE-6F9F-4455-A3F4-849CA9FB3CDC}"
EndProject
Global Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU Debug|Any CPU = Debug|Any CPU
@ -72,5 +74,9 @@ Global
{97B916D8-9AE5-4B39-A7D9-CDB7902AFA31}.Debug|Any CPU.Build.0 = Debug|Any CPU {97B916D8-9AE5-4B39-A7D9-CDB7902AFA31}.Debug|Any CPU.Build.0 = Debug|Any CPU
{97B916D8-9AE5-4B39-A7D9-CDB7902AFA31}.Release|Any CPU.ActiveCfg = Release|Any CPU {97B916D8-9AE5-4B39-A7D9-CDB7902AFA31}.Release|Any CPU.ActiveCfg = Release|Any CPU
{97B916D8-9AE5-4B39-A7D9-CDB7902AFA31}.Release|Any CPU.Build.0 = Release|Any CPU {97B916D8-9AE5-4B39-A7D9-CDB7902AFA31}.Release|Any CPU.Build.0 = Release|Any CPU
{D8E267CE-6F9F-4455-A3F4-849CA9FB3CDC}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{D8E267CE-6F9F-4455-A3F4-849CA9FB3CDC}.Debug|Any CPU.Build.0 = Debug|Any CPU
{D8E267CE-6F9F-4455-A3F4-849CA9FB3CDC}.Release|Any CPU.ActiveCfg = Release|Any CPU
{D8E267CE-6F9F-4455-A3F4-849CA9FB3CDC}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection EndGlobalSection
EndGlobal EndGlobal

View File

@ -0,0 +1,18 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net8.0-windows</TargetFramework>
<RootNamespace>_5_WPF样式和行为_3设置属性</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="_5_WPF样式和行为_3设置属性.App"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="clr-namespace:_5_WPF样式和行为_3设置属性"
StartupUri="MainWindow.xaml">
<Application.Resources>
</Application.Resources>
</Application>

View File

@ -0,0 +1,12 @@
using System.Configuration;
using System.Data;
using System.Windows;
namespace _5_WPF样式和行为_3设置属性;
/// <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,39 @@
<Window x:Class="_5_WPF样式和行为_3设置属性.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="_5_WPF样式和行为_3设置属性" Height="450" Width="800">
<Window.Resources>
<!-- 使用背景设置 -->
<Style x:Key="GirlTileElementStyle">
<Setter Property="Control.Background">
<Setter.Value>
<ImageBrush TileMode="Tile" ViewportUnits="Absolute" Viewport="0 0 32 32"
ImageSource="public/003540AH4M72.jpg" />
</Setter.Value>
</Setter>
</Style>
<!-- 使用文字设置 -->
<Style x:Key="BigFontButtonStyle">
<Setter Property="Button.FontFamily" Value="楷体" />
<Setter Property="Button.FontSize" Value="18" />
<Setter Property="Button.FontWeight" Value="Bold" />
</Style>
<!-- 不用在前面再写 Property="Button.FontFamily" -->
<Style x:Key="BigFontButtonStyle2" TargetType="Button">
<Setter Property="FontFamily" Value="楷体" />
<Setter Property="FontSize" Value="18" />
<Setter Property="FontWeight" Value="Bold" />
</Style>
</Window.Resources>
<StackPanel>
<Button Margin="0 10" Padding="15 5" Style="{StaticResource GirlTileElementStyle}">第一个</Button>
<Button Margin="0 10" Padding="15 5" Style="{StaticResource BigFontButtonStyle}">第二个</Button>
<Button Margin="0 10" Padding="15 5 " Style="{StaticResource BigFontButtonStyle2}">第三个</Button>
</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 _5_WPF样式和行为_3设置属性;
/// <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