일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 윈도우폰7
- 윈도우모바일
- 옴니아2
- 윈도우폰
- 헤이맨
- 안드로이드
- 지승욱
- 거제도
- UX베이커리
- 쉐어포인트코리아
- 훈스닷넷
- 윈도우 모바일
- 실버라이트 코리아
- 데브피아
- 루나네스
- 윈모데브
- 김춘배
- 소년포비
- 서진호
- 신동혁
- 윈도데브
- 마이크로소프트
- 황광진
- 주신영
- MIX10
- 소년포비소프트
- windows mobile 6.5
- winmodev
- 스마트폰
- 신석현
- Today
- Total
소년포비의 세계정복!!
[C#] 전광판처럼 움직이는 라벨 본문
3개의 라벨을 만들고 폼 로드시 각 자리를 잡아주는데 그 자리는 첫번째 라벨은 폼의 끝에.
두번째 라벨은 폼의 너비 * 2 만큼의 자리에 세번째 라벨은 폼의 너비 * 3만큼의 자리에 위치 시키고
타이머를 이용 1픽셀?씩 계속 이동시킵니다.
그리고 라벨의 Left 값이 가장 긴 라벨의 - 값보다 작아지면 다시 폼의 너비 * 3의 위치로 이동시킵니다.
아래는 그 소스 입니다.
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
namespace movelbl
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void timer1_Tick(object sender, EventArgs e)
{
lbl1.Left = lbl1.Left - 1;
lbl2.Left = lbl2.Left - 1;
lbl3.Left = lbl3.Left - 1;
if (lbl1.Left < -lbl3.Width)
lbl1.Left = this.Width * 3 - lbl3.Width;
if (lbl2.Left < -lbl3.Width)
lbl2.Left = this.Width * 3 - lbl3.Width;
if (lbl3.Left < -lbl3.Width)
lbl3.Left = this.Width * 3 - lbl3.Width;
}
private void Form1_Load(object sender, EventArgs e)
{
lbl1.Top = this.Height / 3;
lbl1.Left = this.Width;
lbl2.Top = this.Height / 3;
lbl2.Left = this.Width * 2;
lbl3.Top = this.Height / 3;
lbl3.Left = this.Width * 3;
timer1.Enabled = true;
}
}
}
'프로그램 세상 > C#' 카테고리의 다른 글
[C#] 세가지 Timer 와 그 차이점 (0) | 2009.10.14 |
---|---|
[C#] WIN32 API를 이용 (0) | 2009.10.14 |
[C#] DB에 이미지저장하고 불러오기 (0) | 2009.10.12 |
[c#] 모든 드라이브 정보 얻기? (0) | 2009.10.11 |
[c#]Thread를 이용한 파일복사하기-프로그래스바 (0) | 2009.10.11 |