码迷,mamicode.com
首页 >  
搜索关键字:show all    ( 41857个结果
GDI+ 操作TIFF ccitt t.6 压缩
Bitmap Bi=new Bitmap("C:\img.tif");SaveFileDialog sfdlg = new SaveFileDialog();sfdlg.Filter = "bmp文件(*.BMP)|*.BMP|All File(*.*)|*.*";sfdlg.ShowDialog(...
分类:其他好文   时间:2014-07-09 23:30:06    阅读次数:621
iOS图片模糊效果
增加 CoreImage.framework CoreGraphic.framework 等库在使用时引入:#import ,支持iOS 5.0 及以上。-(void)show{ UIImage* img = [selfgetBlurImage:[UIImageimageNamed:@"Defau....
分类:移动开发   时间:2014-07-09 22:49:37    阅读次数:287
C#中MessageBox使用方法大全(附效果图)
我们在程序中常常会用到MessageBox。 MessageBox.Show()共同拥有21中重载方法。现将其常见使用方法总结例如以下:1.MessageBox.Show("Hello~~~~");最简单的,仅仅显示提示信息。2.MessageBox.Show("There are somethi....
分类:其他好文   时间:2014-07-09 22:30:26    阅读次数:313
果盟广告SDK
//// GuomobWallView.h// GuoMobWallSample//// Created by keyrun on 14-1-21.// Copyright (c) 2014年 AK. All rights reserved.//#import #import "GuoMob...
分类:其他好文   时间:2014-07-09 00:23:06    阅读次数:375
动画隐藏UITabBarController与UINavigationController
动画隐藏UITabBarController与UINavigationController效果图:源码:AppDelegate.m//// AppDelegate.m// HideTabbar//// Copyright (c) 2014年 Y.X. All rights reserved./...
分类:其他好文   时间:2014-07-08 23:32:29    阅读次数:205
UVa1368.DNA Consensus String
原题链接:http://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&page=show_problem&problem=4114138453571368DNA Consensus StringAcceptedC++0.0...
分类:其他好文   时间:2014-07-08 23:25:19    阅读次数:353
得到目录下的所有文件
//得到目录下的所有文件夹public static void Get_All_Filepath_In_Directory(string dirpath, List listpaths) { List filePaths = listpaths; //存放文件的路径 try { if (Is_Dir...
分类:其他好文   时间:2014-07-08 23:24:07    阅读次数:183
Android中控制Dialog呈现的时间
用线程控制dialog的呈现时间,思路很简单,直接show代码了,我也是为了方便自己记录 private void showProgressDialog() { pDialog = new ProgressDialog(mContext); pDialog.setProgressStyle(ProgressDialog.STYLE_SPINNER); pDialog.setPro...
分类:移动开发   时间:2014-07-06 11:19:56    阅读次数:204
POJ-2528-Mayor's posters(线段树)
Description The citizens of Bytetown, AB, could not stand that the candidates in the mayoral election campaign have been placing their electoral posters at all places at their whim. The city counci...
分类:其他好文   时间:2014-07-06 10:53:28    阅读次数:185
uva:10340 - All in All(字符串匹配)
题目:10340 - All in All 题目大意:给出字符串s和t,问s是否是t的子串。s若去掉某些字符能和t一样,那么t是s的子串。 解题思路:匹配字符。t的每个字符和s中的字符匹配。注意这里的字符数组大小要开大点。 代码: #include #include const int N = 1000005; char s[N], t[N]; bool m...
分类:其他好文   时间:2014-07-06 00:20:23    阅读次数:363
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!