質問編集履歴

2

追記

2018/12/25 06:49

投稿

firstlast
firstlast

スコア138

test CHANGED
File without changes
test CHANGED
@@ -177,3 +177,11 @@
177
177
  Microsoft Visual Studio Community 2017 (Version 15.9.2)
178
178
 
179
179
  Microsoft.NET Framework (Version 4.7.03056)
180
+
181
+
182
+
183
+ ###追記
184
+
185
+ GetCustomAttributeのありか
186
+
187
+ ![イメージ説明](7bb6c67168f16a08279dfbcb3fc1f988.jpeg)

1

漏れていたソースコードを追加

2018/12/25 06:49

投稿

firstlast
firstlast

スコア138

test CHANGED
File without changes
test CHANGED
@@ -134,7 +134,41 @@
134
134
 
135
135
  ```
136
136
 
137
+ MainPage.xaml
137
138
 
139
+ ```C#
140
+
141
+ <Page
142
+
143
+ x:Class="App1.MainPage"
144
+
145
+ xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
146
+
147
+ xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
148
+
149
+ xmlns:local="using:App1"
150
+
151
+ xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
152
+
153
+ xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
154
+
155
+ mc:Ignorable="d"
156
+
157
+ Background="{ThemeResource ApplicationPageBackgroundThemeBrush}">
158
+
159
+
160
+
161
+ <Grid>
162
+
163
+ <Button Content="Button" HorizontalAlignment="Left" Height="109" Margin="299,284,0,0" VerticalAlignment="Top" Width="220" Click="Button_Click"/>
164
+
165
+
166
+
167
+ </Grid>
168
+
169
+ </Page>
170
+
171
+ ```
138
172
 
139
173
  ### 開発環境
140
174