十年网站开发经验 + 多家企业客户 + 靠谱的建站团队
量身定制 + 运营维护+专业推广+无忧售后,网站问题一站解决
C# 进度条效果实现实例是如何的呢?下面让我们看看:

创新互联公司于2013年创立,先为循化等服务建站,循化等地企业,进行企业商务咨询服务。为循化企业网站制作PC+手机+微官网三网同步一站式服务解决您的所有建站问题。
C# 进度条效果实现实例源码:
- public class LargeFileCopier
 - {
 - private const int FO_COPY = 0x02;
 - private const int FOF_ALLOWUNDO = 0x40;
 - //C# 进度条效果实现实例
 - [StructLayout(LayoutKind.Sequential,
 - CharSet = CharSet.Auto,Pack=0)]
 - public struct SHFILEOPSTRUCT
 - {
 - public IntPtr hwnd;
 - [MarshalAs(UnmanagedType.U4)]
 - public int wFunc;
 - public string pFrom;
 - public string pTo;
 - public short fFlags;
 - [MarshalAs(UnmanagedType.Bool)]
 - public bool fAnyOperationsAborted;
 - public IntPtr hNameMappings;
 - public string lpszProgressTitle;
 - }
 - //C# 进度条效果实现实例
 - [DllImport("shell32.dll",
 - CharSet = CharSet.Auto)]
 - static extern int SHFileOperation(
 - ref SHFILEOPSTRUCT FileOp);
 - public static bool DoCopy(
 - string strSource, string strTarget)
 - {
 - SHFILEOPSTRUCT fileop = new SHFILEOPSTRUCT();
 - fileop.wFunc = FO_COPY;
 - fileop.pFrom = strSource;
 - fileop.pTo = strTarget;
 - fileop.fFlags = FOF_ALLOWUNDO;
 - SHFileOperation(ref fileop);
 - return !fileop.fAnyOperationsAborted;
 - }
 - } //C# 进度条效果实现实例
 
C# 进度条效果实现实例调用方法:
- LargeFileCopier.DoCopy(@"D:\2009-01.exe", "f:\2009-01.exe");
 
C# 进度条效果实现实例的基本内容就向你介绍到这里,希望对你了解和学习C# 进度条效果实现实例有所帮助。
【编辑推荐】