본문 바로가기

Tools14

[Git] Git 명령어 (기본) Git 명령어 (git command) * 업무에서 자주 쓰는 것들만 모아뒀을 뿐 더 많은 명령어가 존재합니다. Git 명령어 모음 (https://git-scm.com/book/ko/v2) Git Config Git 명령어 (git command) 설명 실행화면 git config -help git command 목록 git config --global --list git 전역 설정정보 조회 git config --list git 설정 정보 조회 Git 1회성 정보 설정 Git 명령어 (git command) 설명 실행화면 git config --global user.name "[name]" git을 관리 할 사용자 정보 (이름) git config --global user.email "[email]".. 2020. 10. 22.
[Dev Express] EnableAppearanceHotTrackedRow Namespace : DevExpress.XtraGrid.Views.Grid Assembly : DevExpress.XtraGrid.v20.1.dll v20.1부터 지원되는 기능으로 hover된 row의 배경 색을 변경한다 EnableAppearanceHotTrackedRow Default. False : 기존 동일, 변경 없음 True : hover된 row의 배경 색 변경 / focus된 배경 색과 다른 색으로 변경 됨 If EnableAppearanceHotTrackedRow option is ture, hot-tracked row is painted according to the HotTrackedRow appearance settings. Sample : https://docs.devexpres.. 2020. 5. 11.
[Dev Express] XtraReport 합치기 DevExpress.XtraReports.UI.XtraReport xr = new DevExpress.XtraReports.UI.XtraReport(); //rpt 내용넣고 insert rpt document //rpt만들기 rpt.CreateDocument(); // rpt누적 foreach (DevExpress.XtraPrinting.Page page in rpt.Pages) { xr.Pages.Add(page); } //미리보기 xr.ShowPreview(); DevExpress.XtraReports.UI.XtraReport xr = new DevExpress.XtraReports.UI.XtraReport(); //rpt 내용넣고 insert rpt document //rpt만들기 rpt.Creat.. 2020. 2. 18.
[Dev Express] ButtonEdit 버튼 숨기기 Dev Express ButtonEdit 버튼 숨기기 How to disable or read only or hide ButtonEdit button in Dev Express form 디자인 작업시...으로 보이는 ButtonEdit버튼을 지워야 하는 경우가 있음. When you design form, Sometimes you need disable or hiding ... button in column. buttonEdit1.Properties.Button[0].Visible = false; 2018. 9. 11.
[C#] DateEdit Control 특정 날짜만 선택가능 [C#] DateEdit Control 특정 날짜만 선택가능 DateEdit control 생성 -- 특정 날짜 이외에 disabledprivate void dateEdit1_DrawItem(object sender, DevExpress.XtraEditors.Calendar.CustomDrawDayNumberCellEventArgs e) { //매주 월요일만 가능 || 오늘 이전 회색if(e.Date.DayOfWeek != DayOfWeek.Monday) || (e.Date < Date.Now.Date)) { e.Style.ForeColor = Color.Gray;}}private void dateEdit1_EditValueChanging(object sender,DevExpress.XtraEditors.. 2018. 9. 6.