質問編集履歴
2
詳細追加
title
CHANGED
File without changes
|
body
CHANGED
@@ -20,4 +20,28 @@
|
|
20
20
|
> this.TextBox1.Border.Shadow = true;
|
21
21
|
|
22
22
|
以上、
|
23
|
-
宜しくお願い致します。
|
23
|
+
宜しくお願い致します。
|
24
|
+
|
25
|
+
------------------------------追加------------------------------
|
26
|
+
```xaml
|
27
|
+
<Page.Resources>
|
28
|
+
<Style x:Key="BorderStyle" TargetType="Border">
|
29
|
+
<Setter Property="Background" Value="White"/>
|
30
|
+
<Setter Property="Width" Value="580"/>
|
31
|
+
<Setter Property="Height" Value="169"/>
|
32
|
+
</Style>
|
33
|
+
</Page.Resources>
|
34
|
+
|
35
|
+
|
36
|
+
<Border Style="{StaticResource BorderStyle}">
|
37
|
+
<Grid>
|
38
|
+
<Grid.ColumnDefinitions>
|
39
|
+
<ColumnDefinition Width="Auto"/>
|
40
|
+
<ColumnDefinition Width="*"/>
|
41
|
+
<ColumnDefinition Width="Auto"/>
|
42
|
+
</Grid.ColumnDefinitions>
|
43
|
+
<TextBlock Text="ボタン" Style="{StaticResource TextBlockStyle}"/>
|
44
|
+
</Grid>
|
45
|
+
</Border>
|
46
|
+
```
|
47
|
+

|
1
タグ追加
title
CHANGED
File without changes
|
body
CHANGED
File without changes
|