回答編集履歴

1

見直しキャンペーン中

2023/07/26 15:58

投稿

TN8001
TN8001

スコア9326

test CHANGED
@@ -1,123 +1,62 @@
1
1
  どうなればいいのかちょっとわかりませんが、基本的にサイズは入れません(`Auto`状態)
2
-
3
2
  `Alignment`も`Stretch`以外は、中のコンテンツに合わそうとするので広がりません。
4
3
 
5
-
6
-
7
- ```xaml
4
+ ```xml
8
-
9
5
  <Window
10
-
11
6
  x:Class="Questions333670.MainWindow"
12
-
13
7
  xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
14
-
15
8
  xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
16
-
17
9
  Width="1000"
18
-
19
10
  Height="800">
20
11
 
21
-
22
-
23
12
  <Grid>
24
-
25
13
  <Grid.RowDefinitions>
26
-
27
14
  <RowDefinition />
28
-
29
15
  <RowDefinition />
30
-
31
16
  </Grid.RowDefinitions>
32
-
33
17
  <Grid.ColumnDefinitions>
34
-
35
18
  <ColumnDefinition />
36
-
37
19
  <ColumnDefinition />
38
-
39
20
  </Grid.ColumnDefinitions>
40
21
 
41
-
42
-
43
22
  <GroupBox Margin="10">
44
-
45
23
  <Grid Margin="10" ShowGridLines="True">
46
-
47
24
  <Grid.ColumnDefinitions>
48
-
49
25
  <ColumnDefinition />
50
-
51
26
  <ColumnDefinition />
52
-
53
27
  <ColumnDefinition />
54
-
55
28
  <ColumnDefinition />
56
-
57
29
  <ColumnDefinition />
58
-
59
30
  <ColumnDefinition />
60
-
61
31
  <ColumnDefinition />
62
-
63
32
  </Grid.ColumnDefinitions>
64
-
65
33
  <Grid.RowDefinitions>
66
-
67
34
  <RowDefinition Height="20" />
68
-
69
35
  <RowDefinition />
70
-
71
36
  <RowDefinition />
72
-
73
37
  <RowDefinition />
74
-
75
38
  <RowDefinition />
76
-
77
39
  <RowDefinition />
78
-
79
40
  </Grid.RowDefinitions>
80
-
81
41
  </Grid>
82
-
83
42
  </GroupBox>
84
43
 
85
-
86
-
87
44
  <GroupBox Grid.Column="1" Margin="10">
88
-
89
45
  <DockPanel Margin="10">
90
-
91
46
  <UniformGrid Columns="7" DockPanel.Dock="Top">
92
-
93
47
  <TextBlock HorizontalAlignment="Center" Text="日" />
94
-
95
48
  <TextBlock HorizontalAlignment="Center" Text="月" />
96
-
97
49
  <TextBlock HorizontalAlignment="Center" Text="火" />
98
-
99
50
  <TextBlock HorizontalAlignment="Center" Text="水" />
100
-
101
51
  <TextBlock HorizontalAlignment="Center" Text="木" />
102
-
103
52
  <TextBlock HorizontalAlignment="Center" Text="金" />
104
-
105
53
  <TextBlock HorizontalAlignment="Center" Text="土" />
106
-
107
54
  </UniformGrid>
108
-
109
55
  <UniformGrid Columns="7" Rows="5">
110
-
111
56
  <Rectangle Fill="Pink" />
112
-
113
57
  </UniformGrid>
114
-
115
58
  </DockPanel>
116
-
117
59
  </GroupBox>
118
-
119
60
  </Grid>
120
-
121
61
  </Window>
122
-
123
62
  ```