tbf/TBF/UI/Calendar/NavigateLeftButtonCtrl.cs

25 lines
627 B
C#

namespace TBF.UI.Calendar
{
internal class NavigateLeftButtonCtrl : Common.UIControls.CoolButtonCtrl
{
public NavigateLeftButtonCtrl()
{
Size = new System.Drawing.Size(42, 29);
ButtonText = "<";
}
private void InitializeComponent()
{
this.SuspendLayout();
//
// NavigateLeftButton
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.DoubleBuffered = true;
this.Name = "NavigateLeftButton";
this.ResumeLayout(false);
}
}
}