- 
                        AuxParticleFilter
                        
                          Auxiliary Particle Filter implemented in C# (also known as condensation algorithm, Sequential Monte Carlo, etc..)
See  Auxiliary Particle Filter  by Pitt/Shephard 1998 for details on this algorithm.  Will need to be modified for your use but should give a good start!                         
                            - 2009-07-24 08:03:03下载
- 积分:1
 
- 
                        MQDemo(VS2010)
                        
                          MQ生产者,消费者模型创建,连接,发送、接受数据等。(MQ producer, consumer model creation, connection, sending, receiving data, etc..)                         
                            - 2017-11-02 11:46:34下载
- 积分:1
 
- 
                        C# 使用互斥量禁止程序运行两个实例
                        
                          C# 使用互斥量禁止程序运行两个实例,这个主要是根据开发的程序使用环境决定,有时候一个程序运行多个副本,会浪费系统资源造成不稳定,但有人说这样会让软件使用更方便,以下代码是不让程序运行多个实例副本,关键代码如下所示:
  private void Form1_Load(object sender, EventArgs e)
  {//使用互斥量禁止程序运行两个实例
      bool bExist;
      var MyMutex =new System.Threading.Mutex(true, "OnlyOneTime", out bExist);
      if (bExist)
          MyMutex.ReleaseMutex();
      else
      {
          MessageBox.Show("程序已经运行!", "信息提示", MessageBoxButtons.OK, MessageBoxIcon.Error);
          this.Close();
      }
  }                         
                            - 2022-03-24 02:20:34下载
- 积分:1
 
- 
                        C# 模糊文字 点击按钮文字模糊
                        
                          C# 制作的模糊文字 点击按钮文字模糊效果,这是基于WPF的一个图像特效,将文字模糊显示,如图所示,运行本程序后,点击窗口中的按钮,即可将按钮中的文字模糊处理。下面来看具体的模糊按钮文字的实现代码:
  if (((Button)sender).BitmapEffect != null)
  {
      ((Button)sender).BitmapEffect = null;
  }
  else
  {
      Button MyButton = (Button)sender;
      var MyBlurEffect = new System.Windows.Media.Effects.BlurBitmapEffect();
      MyBlurEffect.Radius = 4;
      MyBlurEffect.KernelType = System.Windows.Media.Effects.KernelType.Box;
      MyButton.BitmapEffect = MyBlurEffect;
  }                         
                            - 2022-01-21 04:39:19下载
- 积分:1
 
- 
                        Monte-Carlo-Simulation-and-Finance
                        
                          Monte Carlo Simulation and Finance,详细介绍了Monte Carlo Simulation在金融领域的应用(Monte Carlo Simulation and Finance, details the Monte Carlo Simulation in the financial sector)                         
                            - 2012-08-30 11:11:16下载
- 积分:1
 
- 
                        LAB3_LCD1602-ok
                        
                          说明:  包含了PIC单片机的经典模块的例程,与LCD显示屏配合工作。可供单片机新手进行使用学习。(It contains the routines of each classic module of pic32mx220, which can be used and studied by novice.)                         
                            - 2020-05-21 08:52:37下载
- 积分:1
 
- 
                        无需用户名和密码 直接发送邮件至对方邮箱 测试通过版,附完整源码下载
                        
                          直邮项目源码,无需 用户名密码         直达目标邮箱         ,仅供参考学习交流使用,请勿非法用途                                                                                              
                            - 2020-10-24 20:20:01下载
- 积分:1
 
- 
                        Kriging_WENG
                        
                          克里金插值程序,VS2012编译通过。OpenGL结果渲染与显示,价值十分大。目前经过修复BUG,可以直接运行。花费大量时间整理。希望对你有所帮助!(Kriging Geological terrain interpolation program which cost the developers so much time. Hope it can help you!)                         
                            - 2016-01-11 09:49:28下载
- 积分:1
 
- 
                        zorros-software
                        
                          C++初级设计常用举例,方便初学者学习查对。如有疑问可回帖索求。(C++ primary design used for example for beginners to learn checker.)                         
                            - 2013-11-04 11:11:54下载
- 积分:1
 
- 
                        client
                        
                          数据库监视备份软件客户端通信软件广播状态参数
当前的主库(DWORD)+当前的状态(DWORD) (Database to monitor the backup software client software radio communication parameters the current state of the main library (DWORD)+ Current status (DWORD))                         
                            - 2007-08-16 21:40:57下载
- 积分:1