markus / KCOM / Events / ControlSelectChangeArgs.cs @ d04e8ee9
이력 | 보기 | 이력해설 | 다운로드 (371 Bytes)
1 | d04e8ee9 | taeseongkim | using System; |
---|---|---|---|
2 | using System.Collections.Generic; |
||
3 | using System.Linq; |
||
4 | using System.Text; |
||
5 | using System.Threading.Tasks; |
||
6 | |||
7 | namespace KCOM.Events |
||
8 | { |
||
9 | public class ControlSelectChangeArgs |
||
10 | { |
||
11 | public ControlSelectChangeArgs(string controlName) |
||
12 | { |
||
13 | this.ControlName = controlName; |
||
14 | } |
||
15 | |||
16 | public string ControlName { get; set; } |
||
17 | } |
||
18 | } |