Windows Phone 7中英文互翻譯源碼下載
作者:佚名
本文為大家提供了Windows Phone 7中英文互翻譯的源碼下載,希望對正在學(xué)習(xí)或者剛剛接觸Windows Phone開發(fā)的網(wǎng)友們有所啟發(fā)和幫助。
XAML:
- <phone:PhoneApplicationPage
- x:Class="WebCPServic.MainPage"
- xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- xmlns:phone="clr-namespace:Microsoft.Phone.Controls;assembly=Microsoft.Phone"
- xmlns:shell="clr-namespace:Microsoft.Phone.Shell;assembly=Microsoft.Phone"
- xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
- xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
- mc:Ignorable="d" d:DesignWidth="480" d:DesignHeight="768"
- FontFamily="{StaticResource PhoneFontFamilyNormal}"
- FontSize="{StaticResource PhoneFontSizeNormal}"
- Foreground="{StaticResource PhoneForegroundBrush}"
- SupportedOrientations="Portrait" Orientation="Portrait"
- shell:SystemTray.IsVisible="True">
- <!--LayoutRoot 是包含所有頁面內(nèi)容的根網(wǎng)格-->
- <Grid x:Name="LayoutRoot" Background="Transparent">
- <Grid.RowDefinitions>
- <RowDefinition Height="Auto"/>
- <RowDefinition Height="*"/>
- </Grid.RowDefinitions>
- <!--TitlePanel 包含應(yīng)用程序的名稱和頁標(biāo)題-->
- <StackPanel x:Name="TitlePanel" Grid.Row="0" Margin="12,17,0,28">
- <TextBlock x:Name="ApplicationTitle" Text="WP7開發(fā)者:dev.ruanman.net" Style="{StaticResource PhoneTextNormalStyle}"/>
- <TextBlock x:Name="PageTitle" Text="中英文翻譯" Margin="9,-7,0,0" Style="{StaticResource PhoneTextTitle1Style}"/>
- </StackPanel>
- <!--ContentPanel - 在此處放置其他內(nèi)容-->
- <Grid x:Name="ContentPanel" Grid.Row="1" Margin="12,0,12,0">
- <TextBlock Height="49" HorizontalAlignment="Left" Margin="12,66,0,0" Name="des" Text="請輸入你需要查詢的英文或中文" VerticalAlignment="Top" Width="284" />
- <TextBox Height="72" HorizontalAlignment="Left" Margin="6,106,0,0" Name="No" Text="dev.ruanman.net" VerticalAlignment="Top" Width="415" />
- <Button Content="查詢" Height="72" HorizontalAlignment="Left" Margin="12,184,0,0" Name="search" VerticalAlignment="Top" Width="247" Click="search_Click" />
- <TextBlock Height="auto" TextAlignment="Center" HorizontalAlignment="Center" Margin="6,510,0,0" Name="hugwp" Text="www.ruanman.net" VerticalAlignment="Top" Width="444" />
- <ListBox Height="242" HorizontalAlignment="Left" Margin="9,262,0,0" Name="listBox1" VerticalAlignment="Top" Width="441" />
- </Grid>
- </Grid>
- <!--演示 ApplicationBar 用法的示例代碼-->
- <!--<phone:PhoneApplicationPage.ApplicationBar>
- <shell:ApplicationBar IsVisible="True" IsMenuEnabled="True">
- <shell:ApplicationBarIconButton IconUri="/Images/appbar_button1.png" Text="按鈕 1"/>
- <shell:ApplicationBarIconButton IconUri="/Images/appbar_button2.png" Text="按鈕 2"/>
- <shell:ApplicationBar.MenuItems>
- <shell:ApplicationBarMenuItem Text="菜單項 1"/>
- <shell:ApplicationBarMenuItem Text="菜單項 2"/>
- </shell:ApplicationBar.MenuItems>
- </shell:ApplicationBar>
- </phone:PhoneApplicationPage.ApplicationBar>-->
- </phone:PhoneApplicationPage>
C#:
- private void search_Click(object sender, RoutedEventArgs e)
- {
- //實例化一個web service代理的對象
- EnglishChineseReference.EnglishChineseSoapClient proxy = new EnglishChineseReference.EnglishChineseSoapClient();
- //getMobileCodeInfo方法調(diào)用結(jié)束之后 觸發(fā)的事件
- proxy.TranslatorStringCompleted += new EventHandler<EnglishChineseReference.TranslatorStringCompletedEventArgs>(proxy_GetIcpInfoByDomainCompleted);
- //將調(diào)用信息包括方法名和參數(shù)加入到soap消息中通過http傳送給web service服務(wù)端
- //這里對應(yīng)的是調(diào)用了web service的getMobileCodeInfo方法
- proxy.TranslatorStringAsync(No.Text, "");
- }
- void proxy_GetIcpInfoByDomainCompleted(object sender, EnglishChineseReference.TranslatorStringCompletedEventArgs e)
- {
- if (e.Error == null)
- {
- try
- {
- this.listBox1.ItemsSource = e.Result;
- }
- catch (Exception)
- {
- MessageBox.Show("網(wǎng)絡(luò)出現(xiàn)問題,或者是手機(jī)號碼錯誤");
- }
- }
- else
- {
- MessageBox.Show("網(wǎng)絡(luò)出現(xiàn)問題,或者是手機(jī)號碼錯誤");
- }
- }
源碼下載:
責(zé)任編輯:閆佳明
來源:
wpcome