Code
文章平均质量分 68
dong0037
这个作者很懒,什么都没留下…
展开
-
AesEncode
using System;using System.Text;using System.Security.Cryptography; private static readonly byte[] aesKey = { 0x03, 0x00, 0x52, 0xc3, 0x03, 0x00, 0x52, 0xc3, 0x03, 0x00, 0x52, 0xc3, 0x原创 2013-05-09 23:55:53 · 1365 阅读 · 0 评论 -
Java中如何调用WebService
简单的说就是通过Axis的WSDL2Java生成代理类,然后调用就行了。我写了一个带out参数的方法原创 2014-11-04 13:49:33 · 328 阅读 · 0 评论 -
Convert datatab to csv
////// This method is used to Convert DataTable to CSV ( comma seperated ) file.////////////publicstaticvoid DataTable2CSV(DataTable table, string filename,string sep原创 2013-12-05 12:58:13 · 511 阅读 · 0 评论 -
ColorHelper DevExpress
public class ColorHelper : INotifyPropertyChanged { static SolidColorBrush DefaultThemeBackgroundColor = new SolidColorBrush(Color.FromRgb(0xA3, 0xC3, 0xEC)); static SolidColo转载 2013-09-16 08:32:18 · 596 阅读 · 0 评论 -
如何发布无线外网
netsh wlan set hostednetwork mode=allow ssid=HER key=123netsh wlan start hostednetwork .bat原创 2013-08-26 17:07:16 · 396 阅读 · 0 评论 -
Xmlserialization
public class XmlSerializer { private static Dictionary _dict = new Dictionary(); private static XmlSerializerNamespaces _namespaces; private static XmlSerializerNamespa原创 2013-08-14 11:05:44 · 489 阅读 · 0 评论 -
Event Binder
public class EventBinder { public static void BindControls(DependencyObject obj) { UIElement element = obj as UIElement; if (element != null)原创 2013-08-12 14:07:04 · 909 阅读 · 0 评论 -
WPF 中如何实例化只实例化一个
在很多系统中,我们只需要实例化一个实例,如:一个对话框打开后,再次点击运行程序该对话框Active ,不需要重新实例化 namespace RTFTest{ /// /// Interaction logic for App.xaml /// public partial class App : Application {原创 2013-08-20 15:13:01 · 1091 阅读 · 0 评论 -
如何用DataTable生成RTF table
using System;using System.Collections.Generic;using System.Data;using System.Linq;using System.Text;using System.Threading.Tasks;namespace Turf.Utils{ public class RTFConvertUtil原创 2013-08-05 20:26:52 · 926 阅读 · 0 评论 -
如何读取CSV数据到DataTable中
public class DataTableUtil { public static DataTable GetDataTableFromCSV(string path, bool isFirstRowHeader) { string header = isFirstRowHeader ? "Yes" : "No";原创 2013-05-15 05:40:52 · 1125 阅读 · 0 评论 -
观察者模式
using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;using System.Windows.Controls;namespace TestListener{ // 观察者Interf原创 2013-05-15 00:26:00 · 419 阅读 · 0 评论 -
验证数字的正则表达式集
验证数字:^[0-9]*$验证n位的数字:^\d{n}$验证至少n位数字:^\d{n,}$验证m-n位的数字:^\d{m,n}$验证零和非零开头的数字:^(0|[1-9][0-9]*)$验证有两位小数的正实数:^[0-9]+(.[0-9]{2})?$验证有1-3位小数的正实数:^[0-9]+(.[0-9]{1,3})?$验证非零的正整数:^\+?[1-9][0-9]*$转载 2013-05-11 00:51:43 · 481 阅读 · 0 评论 -
泛型得到界面元素
/// /// Gets parent in visual tree. /// /// /// /// public static T GetVisualParent(DependencyObject obj) where T : DependencyObject原创 2013-05-09 23:57:06 · 409 阅读 · 0 评论 -
Register HotKey
using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;using System.Windows;using System.Windows.Controls;using System.Windows.Dat原创 2013-05-10 00:41:31 · 735 阅读 · 0 评论 -
oracle11g ORA-28002: 5天之后口令将过期
使用sqlplus登陆oracle数据库时提示“ORA-28002: 5天之后口令将过期”。 原因: 确定是由于oracle11g中默认在default概要文件中设置了“PASSWORD_LIFE_TIME=180天”所导致。 影响:密码过期后,业务进程连接数据库异常,影响业务使用。 问题发生频率:数据库密码过期后,业务进程一旦重启会提示连接失败。 解决方案转载 2015-02-27 09:38:09 · 3655 阅读 · 0 评论