登录
首页 » C# » winfrom分页实例

winfrom分页实例

于 2014-09-05 发布
0 148
下载积分: 1 下载次数: 0

代码说明:

winfrom分页实例

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • 串口运动控制上位机/C#串口助手源码
    C#串口运动控制上位机源码,主要用于运动控制调试,比如在"M "栏输入1000,串口输出M 1000,,在"M-"输入1000,串口输出M-1000;下位机可根据指令进行区别驱动电机方向运动 串口运动控制上位机 └── 马达串口运动控制上位机     ├── SerialCommunicate     │   ├── Form1.Designer.cs     │   ├── Form1.cs     │   ├── Form1.resx     │   ├── Program.cs     │   ├── Properties     │   │   ├── AssemblyInfo.cs     │   │   ├── Resources.Designer.cs     │   │   ├── Resources.resx     │   │   ├── Settings.Designer.cs     │   │   └── Settings.settings     │   ├── SerialCommunicate.csproj     │   ├── bin     │   │   ├── Debug     │   │   │   ├── SerialCommunicate.exe     │   │   │   ├── SerialCommunicate.pdb     │   │   │   ├── SerialCommunicate.vshost.exe     │   │   │   └── SerialCommunicate.vshost.exe.manifest     │   │   └── Release     │   │       ├── SerialCommunicate.exe     │   │       ├── SerialCommunicate.pdb     │   │       ├── SerialCommunicate.vshost.exe     │   │       └── SerialCommunicate.vshost.exe.manifest     │   └── obj     │       ├── Debug     │       │   ├── DesignTimeResolveAssemblyReferences.cache     │       │   ├── DesignTimeResolveAssemblyReferencesInput.cache     │       │   ├── SerialCommunicate.Form1.resources     │       │   ├── SerialCommunicate.Properties.Resources.resources     │       │   ├── SerialCommunicate.csproj.FileListAbsolute.txt     │       │   ├── SerialCommunicate.csproj.GenerateResource.Cache     │       │   ├── SerialCommunicate.csprojResolveAssemblyReference.cache     │       │   ├── SerialCommunicate.exe     │       │   ├── SerialCommunicate.pdb     │       │   └── TempPE     │       └── Release     │           ├── 3ed801191daeeafe4f32720599873cc71f6b.png     │           ├── DesignTimeResolveAssemblyReferences.cache     │           ├── DesignTimeResolveAssemblyReferencesInput.cache     │           ├── QIcon Changer.exe     │           ├── SerialCommunicate.Form1.resources     │           ├── SerialCommunicate.Properties.Resources.resources     │           ├── SerialCommunicate.csproj.FileListAbsolute.txt     │           ├── SerialCommunicate.csproj.GenerateResource.Cache     │           ├── SerialCommunicate.csprojResolveAssemblyReference.cache     │           ├── SerialCommunicate.exe     │           ├── SerialCommunicate.pdb     │           └── TempPE     ├── SerialCommunicate.sln     └── SerialCommunicate.v11.suo 11 directories, 40 files
    2021-08-15 00:31:13下载
    积分:1
  • 遊戲代碼
    遊戲代碼
    2013-10-11下载
    积分:1
  • Linux下的Socket通信
    Linux下的Socket通信,实现了文件列表的显示、文件传输等基本功能
    2013-08-10下载
    积分:1
  • log4net记录 wpf程序 全局错误日志 例子源码
    log4net 记录wpf 错误日志
    2014-10-22下载
    积分:1
  • C# 快递费用计算软件 源码
         switch (aa)            {                case "香港":                    float a;                    a = float.Parse(textBox1.Text);                    // textBox1.Text = a.ToString();                    if (a 1)                    {                        float b = a % 1;                        float c = a - b;                        if (b 0.5)                        {                            double res;                            res = c * 25 30;                            label3.Text = res.ToString();                        }                    }                     break;
    2014-09-10下载
    积分:1
  • C# 下载图片示例
    using System;using System.Web;public class DownImg : IHttpHandler { //图片下载功能 public void ProcessRequest(HttpContext context) { System.Net.WebResponse response = null; System.IO.Stream stream = null; string path = context.Request.Url.Query.Split(new string[] { "coverimg=" }, StringSplitOptions.RemoveEmptyEntries)[1]; System.Net.HttpWebRequest request = (System.Net.HttpWebRequest)System.Net.WebRequest.Create(path); response = request.GetResponse(); stream = response.GetResponseStream(); System.IO.MemoryStream memStream = Txooo.Mobile.HttpTools.CloneStream(stream); byte[] bytes = new byte[memStream.Length]; memStream.Read(bytes, 0, bytes.Length); // 设置当前流的位置为流的开始 memStream.Seek(0, System.IO.SeekOrigin.Begin); context.Response.ContentType = "application/octet-stream"; //通知浏览器下载文件而不是打开 string fileName = DateTime.Now.Ticks.ToString() ".jpg"; context.Response.AddHeader("Content-Disposition", "attachment; filename=" fileName); context.Response.BinaryWrite(bytes); context.Response.Flush(); } public bool IsReusable { get { return false; } }}
    2014-05-29下载
    积分:1
  • WPF中多窗体实例
    在WPF中,没有默认提供MDI子窗体控件,如果有用到多窗体的朋友,可以参考一下。
    2013-11-25下载
    积分:1
  • C# 仿window 记事本程序(入门级)
    C# 仿window 记事本程序(入门级)
    2020-06-17下载
    积分:1
  • wpf GameLibrary 实例源码下载
    wpf GameLibrary 实例源码下载
    2015-03-05下载
    积分:1
  • C# .net 400个经典例子下载
    word文档的形式,每个实例都有截图和核心源码,适合初学者学习
    2014-03-10下载
    积分:1
  • 696518资源总数
  • 105678会员总数
  • 22今日下载