C# のこの関数に問題があります。VB.NETに変換したい
このコードは C#
public Frm_Sched()
{
dayView1.NewAppointment += new Calendar.NewAppointmentEventHandler(dayView1_NewAppointment);
}
void dayView1_NewAppointment(object sender, Calendar.NewAppointmentEventArgs args)
{
Calendar.Appointment m_Appointment = new Calendar.Appointment();
m_Appointment.StartDate = args.StartDate;
m_Appointment.EndDate = args.EndDate;
m_Appointment.Title = args.Title;
oApp.Add(m_Appointment);
}
どうすればVB.NETに変換できますか? Form Load でこのイベントを呼び出したい
Private Sub Frm_Sched_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
End Sub
助けてください。