일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 리포팅서비스
- jQuery
- c#
- 자바스크립트
- 비주얼스튜디오
- 이클립스
- replace()
- aspnet
- CONVERT()
- MS
- 태그를 입력해 주세요.
- Excel
- windows
- IIS
- javascript
- 단축키
- 오라클
- 윈도우
- DataGrid
- 프로시저
- attr()
- 엑셀
- ASP
- 윈폼
- MSSQL
- oracle
- Winform
- 마이크로소프트
- SSRS
- microsoft
Archives
- Today
- Total
DJ메탈짱™의 Free Style
[C#, Winform, 윈폼] Infragistics, WinGrid, UltraGrid, Border, None, CellAppearance ,RowAppearance, 라인, 색상 본문
일(job)/MS(Microsoft)
[C#, Winform, 윈폼] Infragistics, WinGrid, UltraGrid, Border, None, CellAppearance ,RowAppearance, 라인, 색상
뽀&쏭 2016. 1. 7. 13:20Cell, Row에 Border 가 나오지 않도록 설정.
속성창 > DisplayLayout > Override > CellAppearance > BorderColor = "Transparent"
속성창 > DisplayLayout > Override > RowAppearance > BorderColor = "Transparent"
-------------------------------------------------------------------------------------------
아래는 Online 도움말....
using
Infragistics.Win;
private void
ultraGrid1_InitializeLayout(object
sender,
Infragistics.Win.UltraWinGrid.InitializeLayoutEventArgs e)
{
// Remove grid lines
e.Layout.Reset();
e.Layout.Override.CellAppearance.BorderAlpha = Alpha.Transparent;
e.Layout.Override.RowAppearance.BorderColor = Color.White;
}
http://help.infragistics.com/Help/NetAdvantage/WinForms/2011.1/CLR2.0/HTML/WinGrid_Removing_Grid_Lines.html