Development/WPF(11)
-
[Telerik] select and current itme Synchronized problem
Prior to R2 2010 version, the current item was synchronized with the selected item. As a result, the first row of the GridView was selected initially. To prevent this, you need to set the IsSynchronizedWithCurrentItem property of RadGridView to False. Since the R2 2010 version, the IsSynchronizedWithCurrentItem is null by default. In this case, SelectedItem is synchronized with the CurrentItem o..
2020.09.03 -
[Telerik] Crystal Report ->Telerik Report 변환
1. 설치된 크리스탈 버젼 확인, 2. C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\Common7\IDE devenv.exe.config 추가(참조. 아래 첨부 파일) 수정(crystal 추가: 버젼 동일하게 하는 것이 중요) 참조: Crystal Reports converter | Telerik Reporting This article explains how to convert a report created with SAP Crystal Reports to Telerik Reporting report definition. The Telerik Crystal Reports Converter is built against Crystal R..
2020.07.15 -
[Telerik] Textbox 입력 후 엔터 시에 버튼 이벤트 일으키기
private void TxtItmeNo_KeyDown(object sender, KeyEventArgs e) { if(e.Key == Key.Return) //Enter Check { btnSearch.RaiseEvent(new RoutedEventArgs(Button.ClickEvent, btnSearch)); } } //btnSearch event private void BtnSearch_Click(object sender, RoutedEventArgs e) { }
2020.07.08 -
[Telerik] SpreadSheet workSheet handling
- Add/Delete Add, Remove and Reorder Worksheets | Telerik Document Processing Available for: UI for ASP.NET Core | UI for ASP.NET MVC | UI for ASP.NET AJAX | UI for Blazor | UI for WPF | UI for WinForms | UI for Silverlight | UI for Xamarin docs.telerik.com -- Activate Sheet Tab workbook.ActiveWorksheet = workbook.Worksheets[1]; //-- Tag처러 string shtName = grdVIEW.Workbook.Worksheets[Count].Name..
2020.06.30 -
[Telerik] SpreadSheet Cell 서식
cell format : https://docs.telerik.com/devtools/document-processing/libraries/radspreadstreamprocessing/model/cells Cells | Telerik Document Processing This article will help you get familiar with the concept of a cell and its features. A cell is the basic data unit in a worksheet. Cells are organized in rows and columns and can also be referred as an intersection point of a column and a row. Ce..
2020.06.29 -
[Telerik] 그리드 셀s 복사/붙혀넣기
public class JofGridView : RadGridView { CopyingCellClipboardContent += JofGridView_CopyingCellClipboardContent; this.Pasting += JofGridView_Pasting; this.Pasted += JofGridView_Pasted; this.ClipboardCopyMode = GridViewClipboardCopyMode.Cells; this.ClipboardPasteMode = GridViewClipboardPasteMode.AllSelectedCells; this.SelectionMode = System.Windows.Controls.SelectionMode.Extended; this.SelectionU..
2020.06.26