C# 이벤트를 만들다 보면
ctrl+마우스클릭 , Alt+드래그 등 보조키를 넣어야하는 이벤트가 필요한 경우가 있습니다.
이를 넣는 방법은 매우 간단합니다.
바로 아래와 같은 ModifierKeys를 사용하면됩니다.
System.Windows.Forms.Control.ModifierKeys
예제 코드를 보겠습니다.
//xaml
<Window x:Class="WpfApp2.Window2"
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"
xmlns:local="clr-namespace:WpfApp2"
mc:Ignorable="d"
Title="Window2" Height="450" Width="800"
Name="Main">
<Window.Resources>
<local:Converter x:Key="Converter"/>
</Window.Resources>
<Grid>
<Button Height="100"
Width="100"
Click="Button_Click"/>
</Grid>
</Window>
public partial class Window2 : Window
{
public Window2()
{
InitializeComponent();
}
private void Button_Click(object sender, RoutedEventArgs e)
{
// ModifierKeys를 통한 보조키 이벤트 활용
if (System.Windows.Forms.Control.ModifierKeys == System.Windows.Forms.Keys.Control)
{
System.Windows.Forms.MessageBox.Show("Test");
}
}
}
실행하면 컨트롤 키를 같이 누르면 아래와 같이 사용 가능합니다.
'c#' 카테고리의 다른 글
C# wpf Dispatcher DispatcherObjcet사용법 및 정의 (0) | 2023.03.08 |
---|---|
c# image to byte 이미지 바이트로 전환, 이미지 압축 하는 법 (0) | 2023.02.27 |
wpf MVVM Commandparameter 여러 개 파라미터 받기 (0) | 2023.01.30 |
wpf MVVM ICommand 버튼 비활성화 활성화 (0) | 2023.01.26 |
C# 오류 'System.Windows.ResourceDictionary' 형식의 개체를 만들 수 없습니다. 원인 분석 (0) | 2023.01.18 |