hytos / ID2.Manager / ID2.Manager.Compare / Controls / DetailGridViewTemplate.cs @ 67cfe4dc
이력 | 보기 | 이력해설 | 다운로드 (440 Bytes)
1 | 13a36357 | humkyung | using System; |
---|---|---|---|
2 | using System.Collections.Generic; |
||
3 | using System.Linq; |
||
4 | using System.Text; |
||
5 | using System.Threading.Tasks; |
||
6 | using Telerik.WinControls.UI; |
||
7 | |||
8 | namespace ID2.Manager.Controls |
||
9 | { |
||
10 | public class DetailGridViewTemplate : GridViewTemplate |
||
11 | { |
||
12 | public DetailGridViewTemplate() |
||
13 | { |
||
14 | this.AllowAddNewRow = false; |
||
15 | this.AllowEditRow = false; |
||
16 | this.ShowColumnHeaders = false; |
||
17 | } |
||
18 | } |
||
19 | } |