I have a textBox1
in my windows form. I would like to use it to get date from the user. I want to show MonthCalender1
once the user put the cursor in the textbox1
and then set the date in the textbox1
automatically and then the calender will disappear. How can I use C# or C++/CLI to do that?
質問する
17513 次
2 に答える
5
これは最良のコードではありませんが、アイデアが得られることを願っています:
public Form1()
{
InitializeComponent();
monthCalendar1.MaxSelectionCount = 1;
}
private void textBox1_Enter(object sender, EventArgs e)
{
monthCalendar1.Visible = true;
}
private void textBox1_Leave(object sender, EventArgs e)
{
if (!monthCalendar1.Focused)
monthCalendar1.Visible = false;
}
private void monthCalendar1_DateSelected(object sender, DateRangeEventArgs e)
{
var monthCalendar = sender as MonthCalendar;
textBox1.Text = monthCalendar.SelectionStart.ToString();
}
private void monthCalendar1_Leave(object sender, EventArgs e)
{
var monthCalendar = sender as MonthCalendar;
monthCalendar.Visible = false;
}
まず、MaxSelectionCount
monthCalendar コントロールを設定します。次に、フォーカスを離れてフォーカスを取得するためのイベント リスナーを追加します。うまくいかない場合は、私がテストしたサンプル ソリューションを提供できます。
于 2012-10-14T06:57:23.443 に答える