マシンを書き直そうとすると、初めての WP7 HelloWorld がより洗練されたものに生成されました。
オブジェクトへの参照を取得する方法がわかりませんか? たとえば、私のレイアウトにはいくつかのオブジェクトがあります。
<!--TitlePanel contains the name of the application and page title-->
<StackPanel x:Name="TitlePanel" Grid.Row="0" Margin="12,17,0,28">
<TextBlock x:Name="ApplicationTitle" Text="MY APPLICATION" Style="{StaticResource PhoneTextNormalStyle}"/>
<TextBlock x:Name="PageTitle" Text="page name" Margin="9,-7,0,0" Style="{StaticResource PhoneTextTitle1Style}" Loaded="onLoaded"/>
</StackPanel>
<!--ContentPanel - place additional content here-->
<Grid x:Name="ContentPanel" Grid.Row="1" Margin="12,0,12,0"></Grid>
</Grid>
単純に へTextBlock
のプログラム参照が必要です。確かにそれは非常に単純で明白なものでなければなりませんが、私はその方法を見つけることができません.
ヒントをください!