내용 보기

작성자

관리자 (IP : 172.17.0.1)

날짜

2020-07-10 02:16

제목

[WPF] xaml상에서 키 이벤트 처리 (MVVM)


<Window x:Class="Eingabe_Bindungen.MainWindow"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:y="clr-namespace:Eingabe_Bindungen"
    Height="150" Width="300">
    <Window.InputBindings>
        <KeyBinding 
            Command="y:DemoCommand.Instance" 
            Key="F2"
            Modifiers="Shift+Control"/>
    </Window.InputBindings>
    <Grid>
        
    </Grid>
</Window>
cs


출처1

출처2