public ControlBottomBar(IParentControl aParent) { this.m_Parent = aParent; this.m_Font = new System.Drawing.Font(FontFamily.GenericSerif, 10f, FontStyle.Bold); BottomBarButton button = new BottomBarButton("Today"); button.Type = Resco.Controls.OutlookControls.ButtonType.Today; this.m_Buttons.Add(button); BottomBarButton button2 = new BottomBarButton("None"); button2.Type = Resco.Controls.OutlookControls.ButtonType.None; this.m_Buttons.Add(button2); }