27 lines
631 B
C#
27 lines
631 B
C#
|
|
using TBF.Resources;
|
|||
|
|
|
|||
|
|
namespace TBF.UI.Calendar
|
|||
|
|
{
|
|||
|
|
internal class TodayButtonCtrl : Common.UIControls.CoolButtonCtrl
|
|||
|
|
{
|
|||
|
|
public TodayButtonCtrl()
|
|||
|
|
{
|
|||
|
|
Size = new System.Drawing.Size(72, 29);
|
|||
|
|
ButtonText = Strings.Today;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
private void InitializeComponent()
|
|||
|
|
{
|
|||
|
|
this.SuspendLayout();
|
|||
|
|
//
|
|||
|
|
// TodayButton
|
|||
|
|
//
|
|||
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|||
|
|
this.DoubleBuffered = true;
|
|||
|
|
this.Name = "TodayButton";
|
|||
|
|
this.ResumeLayout(false);
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|