일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
- 디자인 패턴
- github
- FastAPI
- WPF
- c#
- pycharm
- Codeforces
- PostgreSQL
- Firefox
- 애드센스
- PostgreSQL 설치 시 에러
- Spring Boot
- heroku
- 바이오데이터 엔지니어
- 브랜디
- 프로그래머스 코딩 테스트 연습
- Word Cloud
- 스프링 부트와 AWS로 혼자 구현하는 웹 서비스
- 스코페2021
- 파이썬
- github actions
- Python
- git
- 프로그래머스 코딩테스트 연습
- terraform
- 클린 코드
- 프로그래머스 월간 코드 챌린지
- 프로그래머스 월간 코드 챌린지 시즌1
- selenium
- 프로그래머스 코딩테스트 연습문제
- Today
- Total
목록전체 글 (103)
프로그래밍 연습하기
S : 단일 책임 원칙 (Single Responsibility Principle) O : 개방/폐쇄 원칙 (Open/Closed Principle) 확장에는 열려있어야 하지만 코드 변경에 대해서는 닫혀있어야 한다. L : 리스코프 치환 원칙 (Liskov Subsitution Principle) I : 인터페이스 분리 원칙 (Interface Segregation Principle) D : 의존관계 역전 원칙 (Dependency Inversion Principle) 고수준 구성 요소가 저수준 구성요소에 의존하면 안된다. 추상적인 것에 의존해야한다. 을 의미합니다. 앞으로 계속 정리해나갈 예정입니다.
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...