回答編集履歴
2
XAML中の記述を修正
answer
CHANGED
@@ -24,9 +24,6 @@
|
|
24
24
|
Title="MainWindow" Height="200" Width="300">
|
25
25
|
<Grid>
|
26
26
|
<DatePicker x:Name="DatePicker1" HorizontalAlignment="Left" Margin="10,30,0,0" VerticalAlignment="Top" Height="24" Width="170"
|
27
|
-
SelectedDateChanged="DatePicker1_SelectedDateChanged"
|
28
|
-
CalendarOpened="DatePicker1_CalenderOpened"
|
29
|
-
LostFocus="DatePicker1_LostFocus"
|
30
27
|
DateValidationError="DatePicker1_DateValidationError"
|
31
28
|
/>
|
32
29
|
<TextBox x:Name="TextBox1" HorizontalAlignment="Left" Height="24" Margin="20,70,0,0" Text="" VerticalAlignment="Top" Width="120"/>
|
1
不要な部分を削除
answer
CHANGED
@@ -43,12 +43,6 @@
|
|
43
43
|
|
44
44
|
namespace WpfApp1
|
45
45
|
{
|
46
|
-
// https://teratail.com/questions/46510
|
47
|
-
// https://teratail.com/questions/94880
|
48
|
-
|
49
|
-
/// <summary>
|
50
|
-
/// MainWindow.xaml の相互作用ロジック
|
51
|
-
/// </summary>
|
52
46
|
public partial class MainWindow : Window
|
53
47
|
{
|
54
48
|
public MainWindow()
|