⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 form1.cs

📁 c#精彩编程百例(源代码)
💻 CS
字号:
namespace WinApp_RwBin
{
    using System;
    using System.Drawing;
    using System.Collections;
    using System.ComponentModel;
    using System.WinForms;
    using System.Data;
	using System.IO;

    /// <summary>
    ///    Summary description for Form1.
    /// </summary>
    public class Form1 : System.WinForms.Form
    {
        /// <summary>
        ///    Required designer variable.
        /// </summary>
        private System.ComponentModel.Container components;
		private System.WinForms.ListBox listBox1;
		private System.WinForms.Button button2;
		private System.WinForms.Button button1;

        public Form1()
        {
            //
            // Required for Windows Form Designer support
            //
            InitializeComponent();

            //
            // TODO: Add any constructor code after InitializeComponent call
            //
        }

        /// <summary>
        ///    Clean up any resources being used.
        /// </summary>
        public override void Dispose()
        {
            base.Dispose();
            components.Dispose();
        }

        /// <summary>
        ///    Required method for Designer support - do not modify
        ///    the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
		{
			this.components = new System.ComponentModel.Container ();
			this.button1 = new System.WinForms.Button ();
			this.button2 = new System.WinForms.Button ();
			this.listBox1 = new System.WinForms.ListBox ();
			//@this.TrayHeight = 0;
			//@this.TrayLargeIcon = false;
			//@this.TrayAutoArrange = true;
			button1.Location = new System.Drawing.Point (64, 8);
			button1.Size = new System.Drawing.Size (120, 48);
			button1.TabIndex = 0;
			button1.Font = new System.Drawing.Font ("方正姚体", 10);
			button1.Text = "读取二进制文件";
			button1.Click += new System.EventHandler (this.button1_Click);
			button2.Location = new System.Drawing.Point (240, 8);
			button2.Size = new System.Drawing.Size (120, 48);
			button2.TabIndex = 1;
			button2.Font = new System.Drawing.Font ("方正舒体", 10);
			button2.Text = "写入二进制文件";
			button2.Click += new System.EventHandler (this.button2_Click);
			listBox1.Location = new System.Drawing.Point (48, 88);
			listBox1.Size = new System.Drawing.Size (336, 208);
			listBox1.TabIndex = 2;
			this.Text = "Form1";
			this.AutoScaleBaseSize = new System.Drawing.Size (6, 14);
			this.ClientSize = new System.Drawing.Size (432, 301);
			this.Controls.Add (this.listBox1);
			this.Controls.Add (this.button2);
			this.Controls.Add (this.button1);
		}

		protected void button2_Click (object sender, System.EventArgs e)
		{
            byte[] bytes=
			{
				182,193,208,180,182,254,189,248,214,198,206,188,254,196,218,200,221
			};
			FileStream strm=new FileStream("C:\\exam1.bin",FileMode.OpenOrCreate,FileAccess.Write);
			foreach(byte bNext in bytes)
			{
				strm.WriteByte(bNext);
			}
            strm.Close();
     	}

		protected void button1_Click (object sender, System.EventArgs e)
		{
            File fl=new File("C:\\exam.bin");
			Stream strm=fl.OpenRead();
			int iNext;
			do
			{
				iNext=strm.ReadByte();
				if (iNext!=-1)
				{
					AddItem(iNext.ToString());
				}
			} while (iNext!=-1); 
			strm.Close();
		}
        private int iItems=0;
        public void AddItem(string sItem)
        {
         listBox1.InsertItem(iItems,sItem);
         ++iItems;
         }
        /// <summary>
        /// The main entry point for the application.
        /// </summary>
        public static void Main(string[] args) 
        {
            Application.Run(new Form1());
        }
    }
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -