mirror of
https://github.com/chylex/TweetDuck.git
synced 2024-11-14 17:42:47 +01:00
23 lines
612 B
C#
23 lines
612 B
C#
using System;
|
|
using System.Drawing;
|
|
using System.Windows.Forms;
|
|
|
|
namespace TweetDuck.Controls {
|
|
sealed class LabelVertical : Label {
|
|
public int LineHeight { get; set; }
|
|
|
|
protected override void OnPaint(PaintEventArgs e) {
|
|
int y = (int) Math.Floor((ClientRectangle.Height - Text.Length * LineHeight) / 2F) - 1;
|
|
using Brush brush = new SolidBrush(ForeColor);
|
|
|
|
foreach (char chr in Text) {
|
|
string str = chr.ToString();
|
|
float x = (ClientRectangle.Width - e.Graphics.MeasureString(str, Font).Width) / 2F;
|
|
|
|
e.Graphics.DrawString(str, Font, brush, x, y);
|
|
y += LineHeight;
|
|
}
|
|
}
|
|
}
|
|
}
|