- Jul 8, 2015
- 5
- 0
- 0
Hi all, I am very new in windows phone application development.
I am developing contact sharing app in which once a user clicks on Contact Push radio button as mentioned in the below screen shot.

A popup box should be open in which I am able to add multiple number to whom I want to send the information.
For example :

Platform - WIndows phone 8.1
XAML and C#
Here is the XAML code that I have written :
<StackPanel Margin="0,100,0,0" >
<TextBlock Text="Mode of Sharing" FontSize="20" FontFamily="Segoe WP" HorizontalAlignment="Center"></TextBlock>
<RadioButton x:Name="SmsRadioBtn" GroupName="MOS" Style="{StaticResource mosRadiobutton}" Margin="0,30,0,0">SMS</RadioButton>
<RadioButton x:Name="BluetoothRadioBtn" GroupName="MOS" Style="{StaticResource mosRadiobutton}">Bluetooth</RadioButton>
<RadioButton x:Name="EmailRadioBtn" GroupName="MOS" Style="{StaticResource mosRadiobutton}">Email</RadioButton>
<RadioButton x:Name="PushRadioBtn" GroupName="MOS" IsChecked="True" Style="{StaticResource mosRadiobutton}">Contact Push</RadioButton>
<Button x:Name="sendContact_Btn" Margin="20" HorizontalAlignment="Center" Content="Send" Height="65" Width="160" VerticalAlignment="Top" Click="sendContact_Btn_Click" />
</StackPanel>
Can you please someone help me in this context.
I am developing contact sharing app in which once a user clicks on Contact Push radio button as mentioned in the below screen shot.

A popup box should be open in which I am able to add multiple number to whom I want to send the information.
For example :

Platform - WIndows phone 8.1
XAML and C#
Here is the XAML code that I have written :
<StackPanel Margin="0,100,0,0" >
<TextBlock Text="Mode of Sharing" FontSize="20" FontFamily="Segoe WP" HorizontalAlignment="Center"></TextBlock>
<RadioButton x:Name="SmsRadioBtn" GroupName="MOS" Style="{StaticResource mosRadiobutton}" Margin="0,30,0,0">SMS</RadioButton>
<RadioButton x:Name="BluetoothRadioBtn" GroupName="MOS" Style="{StaticResource mosRadiobutton}">Bluetooth</RadioButton>
<RadioButton x:Name="EmailRadioBtn" GroupName="MOS" Style="{StaticResource mosRadiobutton}">Email</RadioButton>
<RadioButton x:Name="PushRadioBtn" GroupName="MOS" IsChecked="True" Style="{StaticResource mosRadiobutton}">Contact Push</RadioButton>
<Button x:Name="sendContact_Btn" Margin="20" HorizontalAlignment="Center" Content="Send" Height="65" Width="160" VerticalAlignment="Top" Click="sendContact_Btn_Click" />
</StackPanel>
Can you please someone help me in this context.