Dreamine.UI.Wpf.Equipment 1.0.1
Dreamine.UI.Wpf.Equipment 사용자 인터페이스 기능과 구성 요소를 제공합니다.
로딩중...
검색중...
일치하는것 없음
DreamineEnterActionGroupProvider.cs
이 파일의 문서화 페이지로 가기
1using System.Windows;
2using System.Windows.Controls;
3using Dreamine.UI.Abstractions.VirtualKeyboard;
4
6
15public class DreamineEnterActionGroupProvider : ContentControl
16{
25 public string GroupId
26 {
27 get => (string)GetValue(GroupIdProperty);
28 set => SetValue(GroupIdProperty, value);
29 }
30
39 public static readonly DependencyProperty GroupIdProperty =
40 DependencyProperty.Register(nameof(GroupId), typeof(string), typeof(DreamineEnterActionGroupProvider), new PropertyMetadata(null));
41
50 public IEnterActionProvider? Commit
51 {
52 get => (IEnterActionProvider?)GetValue(CommitProperty);
53 set => SetValue(CommitProperty, value);
54 }
55
64 public static readonly DependencyProperty CommitProperty = DependencyProperty.Register(nameof(Commit), typeof(IEnterActionProvider), typeof(DreamineEnterActionGroupProvider), new PropertyMetadata(null));
65}