티스토리 뷰
https://play.google.com/store/apps/details?id=com.jw.quizshow_hanja
C# 실시간으로 숫자 카운트하기를 만들어 볼거에요
간단하게 Application.DoEvents()만 활용하면 됩니다.
먼저 버튼과 텍스트상자를 한개씩 만들고요.
for문을 활용하여 그 안에 Application.DoEvents()를 사용하면
실시간으로 카운팅 되는 숫자를 확인할 수 있습니다.
https://play.google.com/store/apps/details?id=com.jw.quizshow_hanja
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 WindowsFormsApp1
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
for(int i = 0; i<50000;i++)
{
Application.DoEvents();
this.textbox.Text = i.ToString();
}
}
}
}
'프로그래밍 > C#' 카테고리의 다른 글
C# 웹브라우져(webBrowser)를 이용해 파일익스플러어(File Explorer)만들어 보기 (0) | 2021.11.26 |
---|---|
c# 동적으로 버튼 생성하고 그 버튼으로 메시지 박스 띄우기 (0) | 2021.11.24 |
백그라운드워커 (BackgroundWorker) (0) | 2021.09.27 |
C#에서 콘솔 응용 프로그램을 숨기는 방법 (0) | 2021.09.24 |
C# 윈폼 숨기는 방법 코드 (0) | 2021.09.24 |
댓글