25 lines
631 B
C#
25 lines
631 B
C#
namespace TBF.UI.Calendar
|
|
{
|
|
internal class NavigateRightButtonCtrl : Common.UIControls.CoolButtonCtrl
|
|
{
|
|
public NavigateRightButtonCtrl()
|
|
{
|
|
Size = new System.Drawing.Size(42, 29);
|
|
ButtonText = ">";
|
|
}
|
|
|
|
private void InitializeComponent()
|
|
{
|
|
this.SuspendLayout();
|
|
//
|
|
// NavigateRightButton
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|
this.DoubleBuffered = true;
|
|
this.Name = "NavigateRightButton";
|
|
this.ResumeLayout(false);
|
|
|
|
}
|
|
}
|
|
}
|