Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
重複の可能性: MonthCalenderを使用してテキストボックスに日付を挿入するにはどうすればよいですか?
textBox1カレンダーで選択した日付を文字列としてマッピングするにはMonthCalender1どうすればよいtextBox1ですか?
textBox1
MonthCalender1
カレンダーの選択された変更イベントでこれを試してください:
protected void MonthCalender1 _SelectionChanged(object sender, EventArgs e) { System.DateTime myDate = MonthCalender1 .SelectedDate; textBox1.Text = myDate.ToString ("dd/MM/yyyy"); }