示例#1
0
        void labelMaand_MouseClick(object sender, MouseEventArgs e)
        {
            buttonFocus.Focus();
            int maand = (int)(sender as Control).Tag + 1; // DateTime.Month is niet zero-based

            if (e.Button == MouseButtons.Left)
            {
                Weergave.VooruitSpringen(maand);
            }
            else
            {
                Weergave.TerugSpringen(maand);
            }
            this.Text = Weergave.KopTekst;
        }