일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- preprocessing
- Read
- java
- memory
- Barcode
- Encapusulation
- APP
- file access
- SERIAL
- compare
- mfc
- stream
- length
- Overloading
- flutter
- UNO
- parameter
- Contour
- Binary
- aduino
- inheritance
- digitalRead
- Android
- Class
- Unity
- Pointer
- public
- wpf
- atmega328
- sensor
Archives
- Today
- Total
목록bitmap.Fromfile (1)
폴크(FOLC)
C# 테크닉 - 이미지 뷰어 만들기
# PictureBox 를 추가한다. > Name 을 pictureBox로 설정한다. # pictureBox 의 위치를 Form1 에 원하는 위치로 옮겨 놓는다. > 이미지 파일 LOAD 를 위해서 버튼 을 추가한다. # Open 버튼에 이미지 파일을 연동 시킨다. private void buttonOpenImage_Click(object sender, EventArgs e) { OpenFileDialog ofd = new OpenFileDialog(); if(ofd.ShowDialog() == DialogResult.OK) { pictureBox.Image = Bitmap.FromFile(ofd.FileName); } } # 이미지 파일을 선택하고 화면에 표시됨을 확인한다. > 이미지 파일 상태 그대로..
C#, WF, WPF(.NET)/C#, WF, WPF(.NET) 테크닉
2021. 10. 26. 19:22