5-WPF样式和行为-6通过类型自动应用样式

This commit is contained in:
Bunny 2025-01-13 18:57:33 +08:00
parent 101fd8d943
commit 56069fc0a0
8 changed files with 110 additions and 0 deletions

View File

@ -28,6 +28,8 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "5-WPF样式和行为-4关
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "5-WPF样式和行为-5多层样式", "5-WPF样式和行为-5多层样式\5-WPF样式和行为-5多层样式.csproj", "{343C9079-551B-4457-91E1-E927D758B423}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "5-WPF样式和行为-6通过类型自动应用样式", "5-WPF样式和行为-6通过类型自动应用样式\5-WPF样式和行为-6通过类型自动应用样式.csproj", "{5C42CCDB-5FF0-48FB-AF36-B6280850C74C}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
@ -90,5 +92,9 @@ Global
{343C9079-551B-4457-91E1-E927D758B423}.Debug|Any CPU.Build.0 = Debug|Any CPU
{343C9079-551B-4457-91E1-E927D758B423}.Release|Any CPU.ActiveCfg = Release|Any CPU
{343C9079-551B-4457-91E1-E927D758B423}.Release|Any CPU.Build.0 = Release|Any CPU
{5C42CCDB-5FF0-48FB-AF36-B6280850C74C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{5C42CCDB-5FF0-48FB-AF36-B6280850C74C}.Debug|Any CPU.Build.0 = Debug|Any CPU
{5C42CCDB-5FF0-48FB-AF36-B6280850C74C}.Release|Any CPU.ActiveCfg = Release|Any CPU
{5C42CCDB-5FF0-48FB-AF36-B6280850C74C}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
EndGlobal

View File

@ -0,0 +1,18 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net8.0-windows</TargetFramework>
<RootNamespace>_5_WPF样式和行为_6通过类型自动应用样式</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样式和行为_6通过类型自动应用样式.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样式和行为_6通过类型自动应用样式"
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样式和行为_6通过类型自动应用样式;
/// <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,32 @@
<Window x:Class="_5_WPF样式和行为_6通过类型自动应用样式.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样式和行为_6通过类型自动应用样式" Height="450" Width="800">
<Window.Resources>
<Style TargetType="Button">
<Setter Property="FontFamily" Value="Times New Roman" />
<Setter Property="FontSize" Value="18" />
<Setter Property="FontWeight" Value="Bold" />
</Style>
<Style TargetType="TextBlock">
<Setter Property="Background" Value="Pink"></Setter>
<Setter Property="FontSize" Value="16"></Setter>
<Setter Property="FontWeight" Value="Bold"></Setter>
<Setter Property="Foreground" Value="Green"></Setter>
</Style>
</Window.Resources>
<StackPanel>
<Button Padding="5" Margin="5">用户自定义按钮</Button>
<TextBlock Margin="5">自定义内容</TextBlock>
<Button Padding="5" Margin="5" Style="{x:Null}">一个默认的设置</Button>
<TextBlock Padding="5" Margin="5">更多默认的内容</TextBlock>
<Button Padding="5" Margin="5">其他的按钮</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样式和行为_6通过类型自动应用样式;
/// <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