반응형

전체 글 415

Lesson 02 - 반드시 알아야 할 To부정사의 쓰임

Lesson 02 - 반드시 알아야 할 To부정사의 쓰임 ◎ 복습해 봅시다 1. 「to부정사」의 to는 우리말의 무엇으로 번역해야 영어를 하기에 유리할까요? ▶ 『~ 는 것』 2. 「to부정사」를 왜 만들었을까요? ▶ 동사를 명사로 만드는 가장 빠른 방법이므로 ◎ 문장 속에서 to 부정사의 활용 ① ② ③ ④ ⑤ [명사] [동사] [명사] [전치사] [명사] [형용사] To like him is difficult. (그를 좋아하는 것) (~이다) (어려운 (형)) To forgive him is difficult. (그를 용서하는 것은 어렵다.) To study English is easy. (영어 공부하는 것은 쉽다.) ① ② ③ ④ ⑤ [명사] [동사] [명사] [전치사] [명사] [형용사] (1)T..

어학/영어 2018.02.14

[이미지] C# Picture 박스에서 다른 Picture 박스로 이미지 끌어다 놓기

private void pictureBox1_MouseDown(object sender, MouseEventArgs e) { var img = pictureBox1.Image; if (img == null) return; if (DoDragDrop(img, DragDropEffects.Move) == DragDropEffects.Move) { pictureBox1.Image = null; } } public Form1() { InitializeComponent(); pictureBox1.MouseDown += pictureBox1_MouseDown; pictureBox2.AllowDrop = true; pictureBox2.DragEnter += pictureBox2_DragEnter; pictureBo..

개발/C# 2018.02.13

Lesson 01 - 이름속의 비밀 To 부정사

◎『기초영문법』인 이유? → 낮은 level의 문법을 배우는 것이 아니라, 고급/현지문법을 아주 쉽게 배운다는 의미~! ◎ 문법(말에 법이 있음)을 알면 글이 써지고, 말이 들린다. ◎ 문법을 배우는 이유? → 말에 법이 있고, 그 법에 익숙해 지면 영어가 쉬워지기 때문이다. ◎ 한국어에서 많이 쓰는 것은 영어에서도 많이 쓰인다. → 영어를 잘하기 위해서는 한국어에서 많이 쓰이는 말을 알면 된다. ◎ 『~ 는 것』을 영어로 → [ to ] Ex) 1. 공부하다 + ~ 는 것 → 공부하는 것 ▶to study (영어는 to를 앞에 쓴다.) ▶영어는 문법을 먼저 알려준다. Ex) 2. 듣다 + ~ 는 것 → 듣는 것 → [~는 것]앞에 붙는 한국말은 몇 개나 있을까요? ▶알 수 없다. (새로운 단어의 생성으..

어학/영어 2018.02.12

[이미지] C# Picturebox 내에서 이미지 움직이기

picture 박스보다 큰 이미지를 Picture 박스에 이미지를 불러온뒤 움직이기 using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;using System.Threading.Tasks;using System.Windows.Forms; namespace MoveImageOnPictrueBox{ public partial class Form1 : Form { private bool IsClicked = false; private Bitmap bm; private Point recLoc; pri..

개발/C# 2018.02.07

[이미지] C# 이미지위에 다른이미지 올려 마우스로 이동하기

Let the user drag an image with transparent pixels over a background image in C#Posted on September 25, 2014 by Rod StephensThis example shows how you can let the user drag an image on a PictureBox. The PictureBox‘s Image property is set to a background image. The user can press the mouse down on any of the image’s non-transparent pixels to drag the image.When it starts, the program uses the fol..

개발/C# 2018.02.07

[이미지] C# PictureBox 움직이기

PictureBOX를 마우스를 이용해서 이리저리 폼 위에서 옮기기 using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.IO;using System.Linq;using System.Text;using System.Threading.Tasks;using System.Windows.Forms; namespace MoveinPictureBox{ public partial class Form1 : Form { Boolean isPositionCurseurImageSet = false; Point positionCurseurImage = new..

개발/C# 2018.02.07
반응형