11 2012 档案
摘要:<?xml version="1.0"?><configuration> <configSections> <section name="SubSonicService" type="SubSonic.SubSonicSection, SubSonic" requirePermission="false"/> <section name="log4net" type="log4net.Config.Log4NetConfigurat
阅读全文
摘要:// form designerthis.Load += Form1_Load;// Form1.csprivate void Form1_Load(object sender, EventArgs e){ MessageBox.Show("a");}--------------------------------------------------------if override OnLoad abstract method which is defined in Form class, call base.OnLoad(e) is required, otherwis
阅读全文
摘要:progressBar1.Style = System.Windows.Forms.ProgressBarStyle.Marquee;BackgroundWorker bgwbgw.WorkerSupportsCancellation = true;bgw.DoWork += new DoWorkEventHandler(bgw_DoWork);protected void bgw_DoWork(object sender, DoWorkEventArgs e){ BackgroundWorker worker = sender as BackgroundWorker; while (...
阅读全文