일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- 태그를 입력해 주세요.
- MSSQL
- windows
- microsoft
- 단축키
- 엑셀
- DataGrid
- 자바스크립트
- SSRS
- attr()
- CONVERT()
- jQuery
- ASP
- 오라클
- IIS
- Excel
- 프로시저
- MS
- javascript
- oracle
- 윈도우
- replace()
- 마이크로소프트
- 리포팅서비스
- 비주얼스튜디오
- aspnet
- 이클립스
- c#
- Winform
- 윈폼
Archives
- Today
- Total
목록Infragstics (2)
DJ메탈짱™의 Free Style
Infragstics, UltraGrid, WinGrid, Scrollbar, 울트라그리드, 스크롤바,스크롤바영역, 숨기기
Infragstics, UltraGrid, WinGrid, Scrollbar, 울트라그리드, 스크롤바,스크롤바영역, 숨기기 // Scrollbar 영역을 숨기기 위해 ViewStyle 속성 설정. this.keGrid2.DisplayLayout.ViewStyle= ViewStyle.SingleBand;
일(job)/MS(Microsoft)
2016. 1. 7. 13:25
Infragstics, Wingrid, Cell, RightClick, ContextMenu, MenuItems, 울트라그리드, 셀, 우클릭, 메뉴아이템
Infragstics, Wingrid, Cell, RightClick, ContextMenu, MenuItems, 울트라그리드, 셀, 우클릭, 메뉴아이템 /// /// 셀에 대한 마우스 우클릭(ContextMenu)시 MenuItem 설정 /// /// private void ShowContextMenu(Point mousePoint) { ContextMenu cMenu = new ContextMenu(); for (int i = 0; i < 3; i++) { cMenu.MenuItems.Add(i.ToString(), MenuItemClick); } foreach (MenuItem c in cMenu.MenuItems) { if (c.Index == 1) { c.Enabled = false; } } c..
일(job)/MS(Microsoft)
2016. 1. 7. 13:23