public DateViewInfo(DateControl owner)
 {
     _Owner      = owner;
     _HorIndent  = 2;
     _VertIndent = 2;
     _Font       = new Font("Calibry", 12);
 }
示例#2
0
        protected virtual DateControl CreateDateControl()
        {
            DateControl dateControl = new DateControl();

            dateControl.Parent = this;
            dateControl.Dock   = DockStyle.Top;
            return(dateControl);
        }