반응형

전체 글 129

Conda에서 설치 오류

Collecting package metadata (current_repodata.json): failed CondaHTTPError: HTTP 000 CONNECTION FAILED for url Elapsed: - An HTTP error occurred when trying to retrieve this URL. HTTP errors are often intermittent, and a simple retry will get you on your way. 회사에서 아나콘다를 설치 후, pytorch 를 설치하려고하니 위와 같은 에러가 뜨면서 설치가 안되었다. ssl 오류 같았는데 조사해보니 아래와 같이 ssl을 인증하지말라는 명령어로 해결하란다. conda config --set ssl_verify..

카테고리 없음 2021.07.26

[WPF] UserControl DependencyProperty 설정과 Binding 방법

자주 쓰이는 UserControl을 만들 때, 해당 컨트롤을 바딩인 속성 설정과 실제 바인딩 방법에 대해 알아본다. Usercontrol xaml cs namespace WintexMonitoring.View { /// /// MaterialCard.xaml에 대한 상호 작용 논리 /// public partial class MaterialCard : UserControl { public string Title { get { return (string)GetValue(TitleValueProperty); } set { SetValue(TitleValueProperty, value); } } public static readonly DependencyProperty TitleValueProperty = D..

프로그래밍/WPF 2021.07.21

[C#] Object 안에 Array 데이터 가져오기

가끔 object 타입으로 Array 값이 들어있는 경우가 있다. 일반적인 상황에서는 변수형으로 캐스팅하면되지만 Array는 IEnumerable으로 캐스팅하여 처리한다. 아래의 예는 arrayObject 내에 배열로 3개의 데이터가 arrayObject라는 object 안에 있을때 값을 얻는 방법이다. var sizeList = arrayObject as IEnumerable; double[] size = new double[3]; int count = 0; foreach (var item in sizeList) { size[count] = Convert.ToDouble(item); count++; }

프로그래밍/C# 2021.07.21

[C#] Path에서 각종 경로 추출

자주 쓰이는 것들을 아래와 같이 정리해보았다. string path = @"T:\test_path\path1\item.json"; // 파일명 추출 Path.GetFileName(path); // item.json // 확장자 추출 Path.GetExtension(path); // .json // 확장자 없이 파일명만 Path.GetFileNameWithoutExtension(path); // item // 경로만 추출 Path.GetDirectoryName(path); // T:\test_path\path1 // 현재 실행 경로 가져오기 System.IO.Directory.GetCurrentDirectory(); System.Environment.CurrentDirectory;

프로그래밍/C# 2021.06.15

[WPF] ItemControl에서 Item Index binding

ItemControl 등에서 각 itemsSource에 있는 파일을 삭제 처리나 수정 처리 할 때, 방법에 따라 다양하지만 해당 ItemTemplate에 추가나 삭제 버튼을 만들어 처리하는게 일반적이다. 이때 해당 ItemsSource의 Index값을 가져와서 처리하는 방법을 알아보자. ViewModel class ConfigViewModel : DialogViewModelBase { private string _address; public string Address { get { return _address; } set { SetProperty(ref _address, value); } } public ObservableCollection IP { get; set; } public DelegateCom..

프로그래밍/WPF 2021.05.11

[C#] 디자인패턴 - Singleton

간단하게 싱글톤을 클래스를 선언하는 방법을 알아본다. 나는 주로 싱글톤을 쓸 때, 다양한 화면에서 데이터가 공유 관리되어야 하거나 통신용 객체를 만들거나, DAO생성을 할 때 주로 쓴다. 싱글톤 객체 생성 public sealed class DataManager { private static readonly DataManager _instance = new DataManager(); public static DataManager GetInstance() { return _instance; } private DataManager() { } } 객체 불러오기 class MainWindowViewModel : BindableBase { private DataManager _dm; public MainWindo..

프로그래밍/C# 2021.05.11

[C#] 객체의 값 변경된 내용만 추출하기

Log 처리에 모든 값을 다 넣으면 좋긴하겠지만 객체의 내용이 너무나 많다면 보기에도 부담되고 데이터 쌓을때도 부담된다. 어떻게 할까 고민하다가 타겟과 소스를 기준으로 양 객체 데이터를 기반으로 변경된 값만 추출하는 함수를 만들었다. private Dictionary DictionaryFromType(object atype) { if (atype == null) return new Dictionary(); Type t = atype.GetType(); PropertyInfo[] props = t.GetProperties(); Dictionary dict = new Dictionary(); foreach (PropertyInfo prp in props) { object value = prp.GetValue..

프로그래밍/C# 2021.05.11
반응형