일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 단축키
- 비주얼스튜디오
- 태그를 입력해 주세요.
- microsoft
- 자바스크립트
- MSSQL
- jQuery
- 윈폼
- 마이크로소프트
- 이클립스
- 리포팅서비스
- MS
- ASP
- 오라클
- aspnet
- c#
- DataGrid
- 프로시저
- IIS
- Excel
- Winform
- javascript
- windows
- 윈도우
- CONVERT()
- replace()
- oracle
- attr()
- 엑셀
- SSRS
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