コード例 #1
0
        private void FindDateChooser(ref DateChooser dateChooser, string id)
        {
            Control control = base.ContentPanel;

            control     = control.FindControl("mainProperties");
            control     = control.FindControl("mainSection");
            dateChooser = (DateChooser)control.FindControl(id);
        }
コード例 #2
0
        private void abrirCalendario(object sender, MouseEventArgs e)
        {
            DateChooser dateChooser = new DateChooser(fechaTextBox);

            dateChooser.Show();
        }