gpt4 book ai didi

c# - WPF - 将 F 键分配给按钮

转载 作者:太空宇宙 更新时间:2023-11-03 17:28:24 24 4
gpt4 key购买 nike

我知道“_”而不是“&”,但如何将 F1、F2... 键分配给按钮?这是一个小应用程序,我没有使用命令,只是直接单击事件处理程序,但如果需要我可以使用命令

最佳答案

很容易...试穿....跟我来

在 Xaml 文件中:

    <Window.Resources>
<RoutedUICommand x:Key="cmd1"></RoutedUICommand>
</Window.Resources>
<Window.CommandBindings>
<CommandBinding Command="{StaticResource cmd1}" Executed="btn_font_Click"> </CommandBinding>
</Window.CommandBindings>
<Window.InputBindings>
<KeyBinding Key="F1" Command="{StaticResource cmd1}"></KeyBinding>
</Window.InputBindings>
<Button Command="{StaticResource cmd1}" Name="btn_font" Grid.Column="2" Grid.Row="1" Width="60" Height="25" Content="Enter" Click="btn_font_Click" Margin="10,2"/>

在Cs文件中:

private void btn_font_Click(object sender, RoutedEventArgs e)
{
Font_Chooser fc = new Font_Chooser();
fc.ShowDialog();
}

关于c# - WPF - 将 F 键分配给按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3386206/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com