搜索资源列表
mp3toexe
- 如何在运行过程中编译 C#代码 如何使用C#播放mp3文件 如何把一个文件作为一个嵌入的资源放在你的应用程序中,如何在运行时,动态地提取出已嵌入的资源。 如何实现从资源管理器中拖拽文件到你的应用程序中。 如何通过设计器把一个文件作为嵌入资源插入你的应用程序中。 首先,用户选择一个希望转换成应用程序的mp3文件,于是,一个CompilerParameters的实例会被创建,通过CompilerParameters类中的EmbeddedResources属性将选中的mp3文件添加
MultiThreading
- 多线程的教学,包括BackgroundWorker的两种使用方法.-Tutorial of MultiThreading, include two BackgroundWorker Method.
OperaControsInThreads
- 利用BackgroundWorker类解决多线程中的控件操作问题。-Using BackgroundWorker class to solve multi-threaded operation of the control problem.
BackgroundWorkerSample
- c# 利用控件,backgroundworker 进行异步编程,就是实现程序后台运行-c#异步编程
BackgroundWorkerExample
- BackgroundWorkerExample,演示C#如何使用BackgroundWorker组件,开发环境为DotNet2.0。-BackgroundWorkerExample, demonstrates how to use the BackgroundWorker C# component development environment for DotNet2.0.
Thread
- 利用 BackgroundWorker 组件进行多线程处理 按 F5 运行该应用程序。 显示窗体时,在 sourceFile 框中输入要测试的文件的路径。 例如,假定测试文件名为 Test.txt,则输入 C:\Test.txt。 在第二个文本框中,输入要让该应用程序在文本文件中搜索的字词或短语。 单击 Start 按钮。 LinesCounted 按钮应当立即开始递增。 在任务完成后,应用程序将显示“计数完成”(Finished Counting) 消息。-U
frmBackgroundWorker
- BackgroundWorker 多线程组件,非常好用-BackgroundWorker multi-threaded components, very easy to use
ranSelect
- C#四种方式实现对用户操作响应灵敏及可动态更新的窗体控件及其对比 随机抽奖应用为例 开发环境vs2010 timer,backGroundWorker,多线程,委托四种方式的对比: 1.4种方式都可以实现要求 可谓条条大路通罗马 2.多线程和委托需要强行禁用CheckForIllegalCrossThreadCalls,有可能存在运行安全问题,但目前还没遇到 3.timer的源代码最少最简单 其次是多线程 4.委托本质上还是要用到多线程 区别在于委托是
BackgroudWorkerTest
- 主要介绍c#中的一个控件backgroundwork的工作模式,里面有两个窗体,每个窗体可以单独运行,其中包括一个teechart控件要自己注册一下,这样才能看到图形化的显示,注释掉这个teechart画图控件,也可以查看backgroundworker的工作模式。-A control backgroundwork c# introduced the working mode, which has two forms, each form can be run separately, inclu
ProgressDemo
- backgroundWorker 实例程序 给入门提供简单清晰明了过程。 让多线程不再困扰-backgroundWorker example program Getting Started provides a simple process to clear. Let no longer plagued by multiple threads
threaddown
- C#+多线程下载工具源码文件,使用了C#中的backgroundworker和thread实现,支持在后台下载,智能排队下载,并可控制下载暂停、中断、重新开始等功能,界面方面,用一些小图片来美化控制按钮,也是挺不错的,另外程序还可更换壁纸。做网络下载软件的,可使用到本源码中的部分模块。-C#+ multi-threaded downloading tool source files, using C# in backgroundworker and thread implementation s
BackgroundWorker
- 跨线程BackgroundWorker进度条显示-BackgroundWorker progress bar shows across threads
Process
- 详细地解释和说明了BackgroundWorker控件实现进度条的过程-Detailed explanation and descr iption of the process control to achieve the progress bar BackgroundWorker
ThreadUIDemo
- C#跨线程调用控件的常用几种方法(程序Demo) (1)禁止编译器对跨线程访问做检查 (2)使用delegate 和invoke 来从其他线程中调用控件 (3)使用delegate 和BeginInvoke 来从其他线程中控制控件 (4)使用BackgroundWorker 组件-Several commonly used methods (procedures Demo) C# cross-thread call control (1) prohibits the com
BackgroundWorkerDemo
- 通过Backgroundworker 模拟后台线程,并通过主界面更新进度条和显示进度信息(Use Backgroundworker class to simulate a back thread, and send the progress information to the main form.)