12 2017 档案

摘要:http://blog.csdn.net/anya/article/details/6407280/ 2、删除表中多余的重复记录,重复记录是根据单个字段(peopleId)来判断,只留有rowid最小的记录 delete from people where peopleName in (select 阅读全文
posted @ 2017-12-26 20:21 LuoCore 阅读(192) 评论(0) 推荐(0) 编辑
摘要://try //{ // var httpReq = (HttpWebRequest)HttpWebRequest.Create(new Uri(replaceUrl)); // var httpRes = (HttpWebResponse)httpReq.GetResponse(); // if 阅读全文
posted @ 2017-12-26 20:20 LuoCore 阅读(689) 评论(0) 推荐(0) 编辑
摘要:https://www.cnblogs.com/zjoch/p/4458516.html 再来我们要怎么解析JSON格示呢?在.net 中,我们很孰悉的JSON.net,没错,我们依然可以在Xamarin中使用他 感谢社群伟大的贡献 下载网址: http://components.xamarin.c 阅读全文
posted @ 2017-12-26 10:22 LuoCore 阅读(233) 评论(0) 推荐(0) 编辑
摘要:https://www.cnblogs.com/lori/p/5088627.html 阅读全文
posted @ 2017-12-24 22:31 LuoCore 阅读(1002) 评论(0) 推荐(0) 编辑
摘要:AlertDialog.Builder builder = new AlertDialog.Builder(this); builder.SetTitle("请您输入管理员密码"); View v = LayoutInflater.From(this.ApplicationContext).Infl 阅读全文
posted @ 2017-12-24 22:17 LuoCore 阅读(750) 评论(0) 推荐(0) 编辑
摘要:this.dataGridView1.Columns["列名"].DisplayIndex=Convert.ToInt32("你要放置的位置") this.dataGridView1.Columns["列名"].DisplayIndex=Convert.ToInt32("你要放置的位置") 阅读全文
posted @ 2017-12-22 13:45 LuoCore 阅读(2153) 评论(0) 推荐(0) 编辑
摘要:https://www.cnblogs.com/lonelyxmas/p/5632694.html <Laco: 用来用引指定的控件 android:layout_width="0dp" android:layout_weight="1" android:layout_height="wrap_co 阅读全文
posted @ 2017-12-21 12:04 LuoCore 阅读(592) 评论(0) 推荐(0) 编辑
摘要:https://www.cnblogs.com/longdb/p/6978460.html 阅读全文
posted @ 2017-12-20 13:57 LuoCore 阅读(743) 评论(0) 推荐(0) 编辑
摘要:http://www.yesky.com/imagesnew/software/tsql/ts_ra-rz_5ooi.htm RAISERROR 返回用户定义的错误信息并设系统标志,记录发生错误。通过使用 RAISERROR 语句,客户端可以从 sysmessages 表中检索条目,或者使用用户指定 阅读全文
posted @ 2017-12-20 13:32 LuoCore 阅读(2155) 评论(0) 推荐(0) 编辑
摘要:https://zhidao.baidu.com/question/570934367.html页面之间的跳转有startActivity 和startActivityForResult两种,startActivity :只能跳到下一个页面startActivityForResult: 不仅能跳到下 阅读全文
posted @ 2017-12-19 14:55 LuoCore 阅读(2020) 评论(0) 推荐(0) 编辑
摘要:http://blog.csdn.net/esunshine1985/article/details/44302903 1.在Resources——values下新建styles.xml,添加内容如下: [html] view plain copy <resources xmlns:android= 阅读全文
posted @ 2017-12-18 15:51 LuoCore 阅读(1194) 评论(0) 推荐(0) 编辑
摘要:https://www.cnblogs.com/catcher1994/p/5423368.html 回忆到上篇 《Xamarin.Android再体验之简单的登录Demo》 做登录时,用的是GET的请求,还用的是同步, 于是现在将其简单的改写,做了个简单的封装,包含基于HttpClient和Htt 阅读全文
posted @ 2017-12-16 10:45 LuoCore 阅读(502) 评论(0) 推荐(0) 编辑
摘要:http://blog.csdn.net/qq1326702940/article/details/78665588 https://www.cnblogs.com/catcher1994/p/5554456.html 第一次安装的APP,一般都会浏览几张引导图片,才进入APP 1.界面布局 [ht 阅读全文
posted @ 2017-12-16 10:26 LuoCore 阅读(780) 评论(0) 推荐(0) 编辑
摘要:http://blog.csdn.net/zapzqc/article/details/38496117 Xamarin.Forms 在启动的时候相当慢,必须添加一个启动界面,步骤如下: 1.将启动画面的图片命名为:splash_screen.png,并拷贝到 Resources 文件夹下的相应 D 阅读全文
posted @ 2017-12-15 21:40 LuoCore 阅读(1854) 评论(0) 推荐(0) 编辑
摘要:http://doc.okbase.net/catcher1994/archive/220195.html Catcher8 2016/4/23 0:28:50 阅读(72) 评论(0) 一、前言 回忆到上篇 《Xamarin.Android再体验之简单的登录Demo》 做登录时,用的是GET的请求 阅读全文
posted @ 2017-12-10 17:20 LuoCore 阅读(277) 评论(0) 推荐(0) 编辑
摘要:http://blog.csdn.net/ozhangsan12345/article/details/72653070 第一步:创建timer对象 [html] view plain copy //创建timer对象 Timer _dispatcherTimer; //计数 int sec = 6 阅读全文
posted @ 2017-12-09 22:38 LuoCore 阅读(242) 评论(0) 推荐(0) 编辑
摘要:http://blog.csdn.net/candlewu/article/details/52953228 方法一: 使用Handler().PostDelayed 延迟启动 new Handler().PostDelayed( ()=> { Intent localIntent = new In 阅读全文
posted @ 2017-12-09 21:49 LuoCore 阅读(489) 评论(0) 推荐(0) 编辑
摘要:http://blog.csdn.net/u012234115/article/details/35814209 以下是用修改布局文件的方法,其实还有用C#代码的方法。 打开AndroidManifest.xml文件,找到application节点 [html] view plaincopyprin 阅读全文
posted @ 2017-12-09 11:58 LuoCore 阅读(866) 评论(0) 推荐(0) 编辑
摘要:https://www.cnblogs.com/zjoch/p/4458516.html 再来我们要怎么解析JSON格示呢?在.net 中,我们很孰悉的JSON.net,没错,我们依然可以在Xamarin中使用他 感谢社群伟大的贡献 下载网址: http://components.xamarin.c 阅读全文
posted @ 2017-12-07 18:36 LuoCore 阅读(572) 评论(0) 推荐(0) 编辑
摘要:num_length.Focus(); UpDownBase updbText = (UpDownBase)num_length; num_length.Select(0, updbText.Text.Length); 阅读全文
posted @ 2017-12-01 15:11 LuoCore 阅读(1021) 评论(0) 推荐(0) 编辑

点击右上角即可分享
微信分享提示