オブジェクト送信者から選択した日付を取得し、その日付を他のメソッドに渡したいです。だから、送信者オブジェクトから日付を取得する方法。
私のC#コード;
public partial class MonthView : MetroWindow
{
AppController a=new AppController();
public MonthView()
{
InitializeComponent();
calMain.DisplayDate = DateTime.Today;
}
public void calItemSelectedDate(object sender, SelectionChangedEventArgs e)
{
//sender = calMain.SelectedDate;
//DateTime d = (DateTime)sender;
//a.fetchAndPopulateForDate(d); <------I want code here.
//DayView Activity = new DayView();
//Activity.Show();
//this.Close();
}
}