[C#/WINFORM] UserControl 클래스 : 환형 진행바 만들기

■ UserControl 클래스를 사용해 환형 진행바를 만드는 방법을 보여준다.

CircularProgressBar.cs

using System;
using System.Drawing;
using System.Windows.Forms;

namespace TestProject
{
/// <summary>
/// 메인 폼
/// </summary>
public partial class MainForm : Form
{
//////////////////////////////////////////////////////////////////////////////////////////////////// Constructor
////////////////////////////////////////////////////////////////////////////////////////// Public

#region 생성자 – MainForm()

/// <summary>
/// 생성자
/// </summary>
public MainForm()
{
InitializeComponent();

this.leftCircularProgressBar.ForegroundPenColor = Color.BlueViolet;

this.timer.Tick += timer_Tick;

this.timer.Start();
}

#endregion

//////////////////////////////////////////////////////////////////////////////////////////////////// Method
////////////////////////////////////////////////////////////////////////////////////////// Private

#region 타이머 틱 처리하기 – timer_Tick(sender, e)

/// <summary>
/// 타이머 틱 처리하기
/// </summary>
/// <param name="sender">이벤트 발생자</param>
/// <param name="e">이벤트 인자</param>
private void timer_Tick(object sender, EventArgs e)
{
if(this.leftCircularProgressBar.Value >= 100)
{
this.leftCircularProgressBar.Value = 0;
}

if(this.rightCircularProgressBar.Value >= 100)
{
this.rightCircularProgressBar.Value = 0;
}

this.leftCircularProgressBar.Value += 1;
this.rightCircularProgressBar.Value += 3;
}

#endregion
}
}
—————————————————————————————————-

TestProject.zip

Advertisements