私はWindows Phone 7アプリを開発しています.2つのxamlページがあります。最初のものから、ギャラリーから画像を選択するか、カメラを使って画像を取り込むための2つのアプリケーションバーリンクを埋め込んでいます。最初のページで選択した画像を2番目のページに表示し、アプリケーションバーのボタンに「はい」または「いいえ」の確認を表示します。現時点では、最初のページ(barcodeImage)にイメージコントロールがあり、そのイメージコントロールは選択肢で更新されます。page.xaml.csの外部クラスのメンバー変数にアクセスできますか?
MainPage.xamlを
<controls:PanoramaItem Header="welcome">
<ScrollViewer Name="sv1" VerticalScrollBarVisibility="Auto">
<StackPanel Height="1100">
<TextBlock TextWrapping="Wrap">Random text here.
</TextBlock>
<Grid x:Name="Grid2" Grid.Row="1" Margin="12,0,12,0">
<Image Height="150" Margin="28,30,168,0" Name="barcodeImage" Stretch="Fill" VerticalAlignment="Top" d:LayoutOverrides="VerticalAlignment" />
</Grid>
</StackPanel>
</ScrollViewer>
</controls:PanoramaItem>
MainPage.xaml.cs
void cameraCaptureTask_Completed(object sender, PhotoResult e)
{
if (e.TaskResult == TaskResult.OK)
{
BitmapImage bmp = new BitmapImage();
bmp.SetSource(e.ChosenPhoto);
barcodeImage.Source = bmp;
}
}
Confirm.xaml
<!--ContentPanel - place additional content here-->
<Grid x:Name="ContentPanel" Grid.Row="1" Margin="12,0,12,0">
<Image Margin="64,36,57,100" x:Name="barcodeImageFinal" Stretch="Fill" />
</Grid>
私はbarcodeImageFinalは、最終的なビットマップを表示したいと思います。どうすればこの作品を作れますか?おかげでありがとう:)
私はタイトルがあなたが何をwrttenに関連しているか理解していません。あなたが求めている質問は何ですか? –
私は問題が上記の本文に概説された私の問題の可能な解決策であると信じています。もちろん、私は選択肢にはオープンしています。 – Freakishly