3-WPF命令4-微调命令文本

This commit is contained in:
Bunny 2025-01-09 17:36:51 +08:00
parent bddf2da569
commit 670777daa8
9 changed files with 95 additions and 1 deletions

View File

@ -6,6 +6,8 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "3-WPF命令2", "3-WPF命令
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "3-WPF命令3-使用命令源", "3-WPF命令3-使用命令源\3-WPF命令3-使用命令源.csproj", "{525781C0-0DB9-41F4-87C5-CECF7261ED25}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "3-WPF命令4-微调命令文本", "3-WPF命令4-微调命令文本\3-WPF命令4-微调命令文本.csproj", "{67B693EA-7189-47B7-B3AE-D2F9A433A676}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
@ -24,5 +26,9 @@ Global
{525781C0-0DB9-41F4-87C5-CECF7261ED25}.Debug|Any CPU.Build.0 = Debug|Any CPU
{525781C0-0DB9-41F4-87C5-CECF7261ED25}.Release|Any CPU.ActiveCfg = Release|Any CPU
{525781C0-0DB9-41F4-87C5-CECF7261ED25}.Release|Any CPU.Build.0 = Release|Any CPU
{67B693EA-7189-47B7-B3AE-D2F9A433A676}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{67B693EA-7189-47B7-B3AE-D2F9A433A676}.Debug|Any CPU.Build.0 = Debug|Any CPU
{67B693EA-7189-47B7-B3AE-D2F9A433A676}.Release|Any CPU.ActiveCfg = Release|Any CPU
{67B693EA-7189-47B7-B3AE-D2F9A433A676}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
EndGlobal

View File

@ -16,6 +16,5 @@
</MenuItem>
</Menu>
<Button Command="New" Content="{x:Static ApplicationCommands.New}" />
</StackPanel>
</Window>

View File

@ -0,0 +1,18 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net8.0-windows</TargetFramework>
<RootNamespace>_3_WPF命令4_微调命令文本</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="_3_WPF命令4_微调命令文本.App"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="clr-namespace:_3_WPF命令4_微调命令文本"
StartupUri="MainWindow.xaml">
<Application.Resources>
</Application.Resources>
</Application>

View File

@ -0,0 +1,12 @@
using System.Configuration;
using System.Data;
using System.Windows;
namespace _3_WPF命令4_微调命令文本;
/// <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,20 @@
<Window x:Class="_3_WPF命令4_微调命令文本.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="_3_WPF命令4_微调命令文本" Height="450" Width="800">
<Window.CommandBindings>
<CommandBinding Command="New" Executed="CommandBinding_OnExecuted" />
</Window.CommandBindings>
<StackPanel>
<Button Command="New" Content="{x:Static ApplicationCommands.New}" />
<Button Command="New" Content="{Binding RelativeSource={RelativeSource Self},Path=Command.Text}" />
<Button Command="New" ToolTip="{Binding RelativeSource={RelativeSource Self},Path=Command.Text}">
<Image Source="public/003540AH4M72.jpg" Width="50" />
</Button>
</StackPanel>
</Window>

View File

@ -0,0 +1,20 @@
using System.Windows;
using System.Windows.Input;
namespace _3_WPF命令4_微调命令文本;
/// <summary>
/// Interaction logic for MainWindow.xaml
/// </summary>
public partial class MainWindow : Window
{
public MainWindow()
{
InitializeComponent();
}
private void CommandBinding_OnExecuted(object sender, ExecutedRoutedEventArgs e)
{
Console.WriteLine("CommandBinding...");
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 97 KiB