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

📄 wizard.cs

📁 语音视频功能 里面实现了基本的QQ与语音对话
💻 CS
字号:
using System;
using System.Drawing;
using System.Collections;
using System.ComponentModel;
using System.Windows.Forms;

namespace gowk.controls
{
	/// <summary>
	/// Wizard 的摘要说明。
	/// </summary>
	public class Wizard : System.Windows.Forms.Form
	{
		private System.Windows.Forms.PictureBox pictureBox1;
		private gowk.controls.GPanel gPanel1;
		private gowk.controls.GButton gButton1;
		private gowk.controls.GButton gButton2;
		private gowk.controls.GButton gButton3;
		/// <summary>
		/// 必需的设计器变量。
		/// </summary>
		private System.ComponentModel.Container components = null;

		public Wizard()
		{
			//
			// Windows 窗体设计器支持所必需的
			//
			InitializeComponent();
			//
			// TODO: 在 InitializeComponent 调用后添加任何构造函数代码
			//
		}

		/// <summary>
		/// 清理所有正在使用的资源。
		/// </summary>
		protected override void Dispose( bool disposing )
		{
			if( disposing )
			{
				if(components != null)
				{
					components.Dispose();
				}
			}
			base.Dispose( disposing );
		}

		#region Windows 窗体设计器生成的代码
		/// <summary>
		/// 设计器支持所需的方法 - 不要使用代码编辑器修改
		/// 此方法的内容。
		/// </summary>
		private void InitializeComponent()
		{
			this.pictureBox1 = new System.Windows.Forms.PictureBox();
			this.gPanel1 = new gowk.controls.GPanel();
			this.gButton1 = new gowk.controls.GButton();
			this.gButton2 = new gowk.controls.GButton();
			this.gButton3 = new gowk.controls.GButton();
			this.SuspendLayout();
			// 
			// pictureBox1
			// 
			this.pictureBox1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
				| System.Windows.Forms.AnchorStyles.Left)));
			this.pictureBox1.Location = new System.Drawing.Point(8, 24);
			this.pictureBox1.Name = "pictureBox1";
			this.pictureBox1.Size = new System.Drawing.Size(112, 224);
			this.pictureBox1.TabIndex = 0;
			this.pictureBox1.TabStop = false;
			// 
			// gPanel1
			// 
			this.gPanel1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
				| System.Windows.Forms.AnchorStyles.Left) 
				| System.Windows.Forms.AnchorStyles.Right)));
			this.gPanel1.GBorderStyle = gowk.controls.GBorderStyle.Solid;
			this.gPanel1.IsRound = true;
			this.gPanel1.Location = new System.Drawing.Point(128, 16);
			this.gPanel1.Name = "gPanel1";
			this.gPanel1.Size = new System.Drawing.Size(288, 216);
			this.gPanel1.TabIndex = 1;
			// 
			// gButton1
			// 
			this.gButton1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
			this.gButton1.GBorderStyle = gowk.controls.GBorderStyle.Solid;
			this.gButton1.IsRound = true;
			this.gButton1.Location = new System.Drawing.Point(224, 243);
			this.gButton1.Name = "gButton1";
			this.gButton1.Size = new System.Drawing.Size(60, 20);
			this.gButton1.TabIndex = 2;
			// 
			// gButton2
			// 
			this.gButton2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
			this.gButton2.GBorderStyle = gowk.controls.GBorderStyle.Solid;
			this.gButton2.IsRound = true;
			this.gButton2.Location = new System.Drawing.Point(288, 243);
			this.gButton2.Name = "gButton2";
			this.gButton2.Size = new System.Drawing.Size(60, 20);
			this.gButton2.TabIndex = 3;
			// 
			// gButton3
			// 
			this.gButton3.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
			this.gButton3.GBorderStyle = gowk.controls.GBorderStyle.Solid;
			this.gButton3.IsRound = true;
			this.gButton3.Location = new System.Drawing.Point(352, 243);
			this.gButton3.Name = "gButton3";
			this.gButton3.Size = new System.Drawing.Size(60, 20);
			this.gButton3.TabIndex = 4;
			// 
			// Wizard
			// 
			this.AutoScaleBaseSize = new System.Drawing.Size(6, 14);
			this.ClientSize = new System.Drawing.Size(424, 269);
			this.Controls.Add(this.gButton3);
			this.Controls.Add(this.gButton2);
			this.Controls.Add(this.gButton1);
			this.Controls.Add(this.gPanel1);
			this.Controls.Add(this.pictureBox1);
			this.Name = "Wizard";
			this.Text = "Wizard";
			this.ResumeLayout(false);

		}
		#endregion
	}
}

⌨️ 快捷键说明

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