基本信息
源码名称:PHONE 手机端 蛋糕房系统源码下载
源码大小:9.91M
文件格式:.rar
开发语言:C#
更新时间:2014-07-25
友情提示:(无需注册或充值,赞助后即可获取资源下载链接)
嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300
本次赞助数额为: 2 元×
微信扫码支付:2 元
×
请留下您的邮箱,我们将在2小时内将文件发到您的邮箱
源码介绍
API
API
using System; using System.Collections.Generic; using System.Linq; using System.Net; using System.Windows; using System.Windows.Controls; using System.Windows.Documents; using System.Windows.Input; using System.Windows.Media; using System.Windows.Media.Animation; using System.Windows.Shapes; using Microsoft.Phone.Controls; using System.Windows.Media.Imaging; namespace prjCustomerSystemMobile { public partial class 訂單系統 : PhoneApplicationPage { private CCustomerFactory iv_factory = null; public CCustomerFactory getFactory() { if (iv_factory == null) iv_factory = new CCustomerFactory(); return iv_factory; } public 訂單系統() { InitializeComponent(); } private void displayData() { displayData(getFactory().getCuurent()); } private void displayData(CCustomer p_customer) { App x = Application.Current as App; x.價錢 = p_customer.phone; x.名稱 = p_customer.name; txtAddress.Source = new BitmapImage(new Uri(p_customer.address, UriKind.Relative)); txtPhone.Text = p_customer.phone; txtName.Text = p_customer.name; } protected override void OnNavigatedTo(System.Windows.Navigation.NavigationEventArgs e) { base.OnNavigatedTo(e); CCustomer l_customer = (Application.Current as App).selectedCustomer; if (l_customer != null) { displayData(l_customer); } } private void button1_Click(object sender, RoutedEventArgs e) { App x = Application.Current as App; x.地址 = textBox1.Text; x.數量 = txtId.Text; x.聯絡人 = txtEmail.Text; NavigationService.Navigate(new Uri("/感謝你的消費.xaml", UriKind.Relative)); } } }