2016-03-04 4 views
0

У меня есть этот XAML код на одном из окон в моем приложении:(C#) Контекстные сетки появляются на кнопках нажмите

<phone:PanoramaItem x:Name="panoramaItemSend" Header="{Binding LocalizedResources.send, Source={StaticResource LocalizedStrings}}" > 
      <StackPanel Margin="12,0,0,0"> 
       <TextBlock Text="{Binding LocalizedResources.recipientEmail, Source={StaticResource LocalizedStrings}}" /> 
       <TextBox InputScope="EmailUserName" Text="{Binding SendModel.Email, Mode=TwoWay}" Margin="-12,0,0,0" TabIndex="100" GotFocus="TextBox_GotFocus" LostFocus="TextBox_LostFocus" MaxLength="256" Height="105" TextWrapping="Wrap"> 
        <i:Interaction.Behaviors> 
         <prismInteractivity:UpdateTextBindingOnPropertyChanged/> 
        </i:Interaction.Behaviors> 
       </TextBox> 

       <TextBlock Text="{Binding LocalizedResources.amount, Source={StaticResource LocalizedStrings}}" /> 
       <TextBox x:Name="txtSendAmount" InputScope="Number" Text="{Binding SendModel.Amount, Mode=TwoWay}" Margin="-12,0,0,0" GotFocus="TextBox_GotFocus" LostFocus="TextBox_LostFocus" TabIndex="101" MaxLength="20" TextChanged="TextBox_TextChanged" > 
        <i:Interaction.Behaviors> 
         <prismInteractivity:UpdateTextBindingOnPropertyChanged/> 
        </i:Interaction.Behaviors> 
       </TextBox> 
       <TextBlock Text="{Binding SendModel.AmountFiatStr}" Margin="0,-15,0,5" Foreground="Gainsboro"/> 


       <TextBlock Text="{Binding LocalizedResources.label, Source={StaticResource LocalizedStrings}}" /> 
       <TextBox Text="{Binding SendModel.Label, Mode=TwoWay}" Margin="-12,0,0,0" TabIndex="102" GotFocus="TextBox_GotFocus" LostFocus="TextBox_LostFocus" MaxLength="256"> 
        <i:Interaction.Behaviors> 
         <prismInteractivity:UpdateTextBindingOnPropertyChanged/> 
        </i:Interaction.Behaviors> 
       </TextBox> 

       <TextBlock Text="{Binding LocalizedResources.message, Source={StaticResource LocalizedStrings}}" /> 
       <TextBox Text="{Binding SendModel.Message, Mode=TwoWay}" Margin="-12,0,0,0" TabIndex="103" GotFocus="TextBox_GotFocus" LostFocus="TextBox_LostFocus" MaxLength="256"> 
        <i:Interaction.Behaviors> 
         <prismInteractivity:UpdateTextBindingOnPropertyChanged/> 
        </i:Interaction.Behaviors> 
       </TextBox> 
       <Button x:Name="btnSend" Content="{Binding LocalizedResources.send, Source={StaticResource LocalizedStrings}}" Style="{StaticResource OrangeButton}" Tap="btnSend_Tap" TabIndex="104"/> 
      </StackPanel> 

Я хочу создать всплывающее окно, когда я вызвать обработчик Tap btnSend в - btnSendTap Моего всплывающее окно должно иметь эту сетку полных счетов, которые я уже знаю, как добавить:

программно
<Grid Margin="15,0,0,21"> 
        <Grid.RowDefinitions> 
         <RowDefinition /> 
         <RowDefinition /> 
        </Grid.RowDefinitions> 
        <StackPanel x:Name="AccountsInfo" Grid.Row="0"> 
        </StackPanel> 
        <StackPanel Grid.Row="1"> 
         <local:RateChart x:Name="rateChart" Height="324" Margin="-12,25,0,0" Width="417" /> 
        </StackPanel> 
       </Grid> 

ответ

0

взглянуть на контроле PopUp.

Надеюсь, это то, что вы ищете. :)

+1

Спасибо :) Это то, что я ищу –

Смежные вопросы