質問編集履歴
2
詳細追加
test
CHANGED
File without changes
|
test
CHANGED
@@ -43,3 +43,51 @@
|
|
43
43
|
以上、
|
44
44
|
|
45
45
|
宜しくお願い致します。
|
46
|
+
|
47
|
+
|
48
|
+
|
49
|
+
------------------------------追加------------------------------
|
50
|
+
|
51
|
+
```xaml
|
52
|
+
|
53
|
+
<Page.Resources>
|
54
|
+
|
55
|
+
<Style x:Key="BorderStyle" TargetType="Border">
|
56
|
+
|
57
|
+
<Setter Property="Background" Value="White"/>
|
58
|
+
|
59
|
+
<Setter Property="Width" Value="580"/>
|
60
|
+
|
61
|
+
<Setter Property="Height" Value="169"/>
|
62
|
+
|
63
|
+
</Style>
|
64
|
+
|
65
|
+
</Page.Resources>
|
66
|
+
|
67
|
+
|
68
|
+
|
69
|
+
|
70
|
+
|
71
|
+
<Border Style="{StaticResource BorderStyle}">
|
72
|
+
|
73
|
+
<Grid>
|
74
|
+
|
75
|
+
<Grid.ColumnDefinitions>
|
76
|
+
|
77
|
+
<ColumnDefinition Width="Auto"/>
|
78
|
+
|
79
|
+
<ColumnDefinition Width="*"/>
|
80
|
+
|
81
|
+
<ColumnDefinition Width="Auto"/>
|
82
|
+
|
83
|
+
</Grid.ColumnDefinitions>
|
84
|
+
|
85
|
+
<TextBlock Text="ボタン" Style="{StaticResource TextBlockStyle}"/>
|
86
|
+
|
87
|
+
</Grid>
|
88
|
+
|
89
|
+
</Border>
|
90
|
+
|
91
|
+
```
|
92
|
+
|
93
|
+

|
1
タグ追加
test
CHANGED
File without changes
|
test
CHANGED
File without changes
|