码迷,mamicode.com
首页 >  
搜索关键字:routedeventargs    ( 89个结果
WPF应用
代码 private void button1_Click(object sender, RoutedEventArgs e) { calculate sa = new calculate(int.Parse(textBox1.Text),int.Parse(...
分类:Windows程序   时间:2015-12-13 23:36:14    阅读次数:255
非链接方式访问数据库--查询的数据集用Dataset来存储。
private void Button_Click_1(object sender, RoutedEventArgs e) { //非链接方式访问数据库, //1创建连接对象(连接字符串) using (SqlConn...
分类:数据库   时间:2015-11-22 20:23:22    阅读次数:196
Silverlight 调用 web api
private void Button_Click(object sender, RoutedEventArgs e) { string url = "http://localhost:30058/api/Products"; ...
分类:Windows程序   时间:2015-10-28 18:53:27    阅读次数:155
silverlight弹出新标签页的方式
private void AdminEntry_Click(object sender, RoutedEventArgs e) { HyperlinkButton button = sender as HyperlinkButton; ...
分类:Web程序   时间:2015-10-15 20:41:15    阅读次数:170
Wpf 中使用gif格式的动态图
第一种方法:使用winform插件 第二种方法:使用wpf自身的动态图xaml 标签必须追加事件private void MediaElement_MediaEnded(object sender, RoutedEventArgs e){ ((MediaElement)sender).Positio...
分类:Windows程序   时间:2015-10-14 17:24:13    阅读次数:192
WPF PlacementTarget用户
private void btn1_Click(object sender, RoutedEventArgs e) { popusBottom2...
分类:Windows程序   时间:2015-10-13 10:38:43    阅读次数:285
silverlight使用webclient下载uri,并转化为stream
private void Button_Click_1(object sender, RoutedEventArgs e) {// of the ASP.NET website.) string uri = Application.Current.Host.Sourc...
分类:Web程序   时间:2015-10-01 16:29:21    阅读次数:156
批量下载图片
效果图2. 主要代码:private async void button_Click(object sender, RoutedEventArgs e) { var htmlContent = await FileDownLoader.Instance.GetAs...
分类:其他好文   时间:2015-09-20 16:02:20    阅读次数:198
多按钮事件处理
private void ButtonClick(object sender, RoutedEventArgs e) { Button cmd = (Button)e.OriginalSource; Type type = this.GetType(); Assembly assem...
分类:其他好文   时间:2015-08-20 17:01:50    阅读次数:122
Silverlight 2 (beta1)数据操作(2)——使用ASP.NET Web Service进行数据CRUD操作(下)
前台界面 后台代码 //按钮事件 void saveButton_Click(object sender, RoutedEventArgs e) { if (userName.Text.Trim() == string.Empty) { errMessage.Foreground = new SolidColorBrush(Colors.Red); ...
分类:Web程序   时间:2015-08-05 10:38:29    阅读次数:154
89条   上一页 1 2 3 4 5 6 ... 9 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!