일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 프로그래머스 코딩테스트 연습
- Python
- terraform
- Word Cloud
- 프로그래머스 코딩테스트 연습문제
- FastAPI
- 프로그래머스 월간 코드 챌린지 시즌1
- github
- git
- 바이오데이터 엔지니어
- 스프링 부트와 AWS로 혼자 구현하는 웹 서비스
- 디자인 패턴
- github actions
- heroku
- PostgreSQL 설치 시 에러
- 스코페2021
- Spring Boot
- Firefox
- WPF
- PostgreSQL
- c#
- 애드센스
- 프로그래머스 월간 코드 챌린지
- 클린 코드
- pycharm
- Codeforces
- 브랜디
- 프로그래머스 코딩 테스트 연습
- 파이썬
- selenium
- Today
- Total
목록C# (7)
프로그래밍 연습하기
파일 이름으로 들어가면 안되는 문자들이 있습니다. 그래서 파일을 저장할때 그런 문자들에 대한 처리를 해줘야하는데요. 처음에는 Contains로 문자들을 검사하려고 했는데, 생각해보니까 금지되야하는 문자가 한두개가 아니고 그 종류도 정확하게 몰라서 다른 방법을 찾아보기로 하였습니다. https://stackoverflow.com/questions/620605/how-to-make-a-valid-windows-filename-from-an-arbitrary-string
https://stackoverflow.com/questions/1217268/how-to-get-notified-when-a-window-get-focus-in-wpf How to get notified when a window get focus in WPF? I want to get notified when I click a window in WPF (I use the GotFocus event), but it only triggers when I click on a Combobox in the window. What I want is to get notified when the the window or ... stackoverflow.com 스택오버플로를 참고하였습니다. 원래는 GotFocus를 사..
https://stackoverflow.com/questions/30063550/how-should-i-pass-data-between-wpf-windows-involving-mainwindow-c How should I pass data between WPF Windows involving `MainWindow` (C#)? I am currently starting a C# project in which I am modelling a simple ATM machine, and will therefore need several screens. I have run into the problem of passing data between screens before when I... stackoverflow...
new System.IO.DirectoryInfo(AppDomain.CurrentDomain.BaseDirectory) 이것을 사용하여 현재 디렉토리를 알 수 있고, 뒤에 원하는 경로를 더 넣을 수 있습니다. WPF에서 사용할 수 있는 방법입니다. 또한 이 경로가 존재하지 않는다면 디렉토리를 만들어 줄 수 있습니다. System.IO.DirectoryInfo di = new System.IO.DirectoryInfo(AppDomain.CurrentDomain.BaseDirectory + @"경로_추가"); if (!di.Exists) { di.Create(); }
새로운 창을 만드는 방법입니다. 솔루션 탐색기에서 프로젝트 이름을 우클릭 하면 추가 -> 새 항목 에서 창을 하나 추가해줍니다. 그 후 그 창을 만들어주고, 기존 창에서는 Window newWindow = new newWindow(); newWindow.Show(); 이런식으로 새롭게 만든 창을 띄워줄 수 있습니다.
C# WPF로 간단한 일기장을 만들어 보려고 합니다. 웹에 올리는 것이 아닌 로컬에 저장되는 방식으로 하려고합니다. 원래는 HTML로 그냥 해볼려고 했는데 자바스크립트는 파일 로컬 저장이 번거로워서 GUI를 사용해보기 쉬운 C#으로 진행하기로 하였습니다. 프로젝트를 진행하며 알게 된 것을 정리해보려고 합니다.
업비트에서는 다양한 API를 제공해서 내 계좌 조회, 코인의 현재 시세 등 다양한 정보를 활용할 수 있습니다. 그런데 C# 예제는 없어서 한번 간단하게 작성해봤습니다. using System; using System.Collections.Generic; using System.Text; using System.Net; using System.IO; using JWT; using JWT.Algorithms; using JWT.Serializers; namespace upbit_console { class Program { static string ticker_url = "https://api.upbit.com/v1/ticker"; static string account_url = "https://api.u..