波多野结衣 蜜桃视频,国产在线精品露脸ponn,a v麻豆成人,AV在线免费小电影

公告:魔扣目錄網(wǎng)為廣大站長(zhǎng)提供免費(fèi)收錄網(wǎng)站服務(wù),提交前請(qǐng)做好本站友鏈:【 網(wǎng)站目錄:http://www.ylptlb.cn 】, 免友鏈快審服務(wù)(50元/站),

點(diǎn)擊這里在線咨詢客服
新站提交
  • 網(wǎng)站:51998
  • 待審:31
  • 小程序:12
  • 文章:1030137
  • 會(huì)員:747

本文為大家提供了Windows Phone 7中英文互翻譯的源碼下載,希望對(duì)正在學(xué)習(xí)或者剛剛接觸Windows Phone開(kāi)發(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 是包含所有頁(yè)面內(nèi)容的根網(wǎng)格--> 

    <Grid x:Name="LayoutRoot" Background="Transparent"> 

        <Grid.RowDefinitions> 

            <RowDefinition Height="Auto"/> 

            <RowDefinition Height="*"/> 

        </Grid.RowDefinitions> 

        <!--TitlePanel 包含應(yīng)用程序的名稱和頁(yè)標(biāo)題--> 

        <StackPanel x:Name="TitlePanel" Grid.Row="0" Margin="12,17,0,28"> 

            <TextBlock x:Name="ApplicationTitle" Text="WP7開(kāi)發(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="請(qǐng)輸入你需要查詢的英文或中文" 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="菜單項(xiàng) 1"/> 

                <shell:ApplicationBarMenuItem Text="菜單項(xiàng) 2"/> 

            </shell:ApplicationBar.MenuItems> 

        </shell:ApplicationBar> 

    </phone:PhoneApplicationPage.ApplicationBar>--> 

</phone:PhoneApplicationPage>  

C#:


private void search_Click(object sender, RoutedEventArgs e) 

       { 

           //實(shí)例化一個(gè)web service代理的對(duì)象 

           EnglishChineseReference.EnglishChineseSoapClient proxy = new EnglishChineseReference.EnglishChineseSoapClient(); 

           //getMobileCodeInfo方法調(diào)用結(jié)束之后 觸發(fā)的事件 

           proxy.TranslatorStringCompleted += new EventHandler<EnglishChineseReference.TranslatorStringCompletedEventArgs>(proxy_GetIcpInfoByDomainCompleted); 

           //將調(diào)用信息包括方法名和參數(shù)加入到soap消息中通過(guò)http傳送給web service服務(wù)端    

           //這里對(duì)應(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)問(wèn)題,或者是手機(jī)號(hào)碼錯(cuò)誤"); 

               } 

           } 

           else 

           { 

               MessageBox.Show("網(wǎng)絡(luò)出現(xiàn)問(wèn)題,或者是手機(jī)號(hào)碼錯(cuò)誤"); 

           } 

       }  

Windows Phone 7中英文互翻譯源碼下載:http://pan.baidu.com/share/link?shareid=1182989426&uk=85241834

分享到:
標(biāo)簽:中英文 源碼下載 翻譯 Windows Phone
用戶無(wú)頭像

網(wǎng)友整理

注冊(cè)時(shí)間:

網(wǎng)站:5 個(gè)   小程序:0 個(gè)  文章:12 篇

  • 51998

    網(wǎng)站

  • 12

    小程序

  • 1030137

    文章

  • 747

    會(huì)員

趕快注冊(cè)賬號(hào),推廣您的網(wǎng)站吧!
最新入駐小程序

數(shù)獨(dú)大挑戰(zhàn)2018-06-03

數(shù)獨(dú)一種數(shù)學(xué)游戲,玩家需要根據(jù)9

答題星2018-06-03

您可以通過(guò)答題星輕松地創(chuàng)建試卷

全階人生考試2018-06-03

各種考試題,題庫(kù),初中,高中,大學(xué)四六

運(yùn)動(dòng)步數(shù)有氧達(dá)人2018-06-03

記錄運(yùn)動(dòng)步數(shù),積累氧氣值。還可偷

每日養(yǎng)生app2018-06-03

每日養(yǎng)生,天天健康

體育訓(xùn)練成績(jī)?cè)u(píng)定2018-06-03

通用課目體育訓(xùn)練成績(jī)?cè)u(píng)定