可以下载附件,vs2005解决方案
文件一:Form1.cs
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
namespace Test {
/// <summary>
/// 实现(1)按住右键然后点击左键,(2)按住左键然后点击右键
/// 注意: 请在窗体中添加一个TextBox(变量名称为textBox1)
/// 和Button(变量名为:botton1)
/// </summary>
public partial class MouseClickEnhanceForm : Form {
public MouseClickEnhanceForm() {
InitializeComponent();
}
/// <summary>
/// 鼠标状态
/// </summary>
public enum MouseButtonsState {
LeftDown = 1,
LeftUp,
RightDown,
RightUp
} ;
//当前按键状态
private int btnState = -1;
//为了在TextBox中换行,使用此家伙,用TextBox.Text="/n"方式换行不好使,
//不是鼠标功能的一部分只是为了换行显示信息
private List<string> list = new List<string>();
private void OutText(String text) {
list.Add(text);
this.textBox1.Lines = list.ToArray();
}
private void Form1_MouseDown(object sender, MouseEventArgs e) {
switch (e.Button) {
case MouseButtons.Left:
if (btnState==(int)MouseButtonsState.RightDown) {
this.OutText("1. 按住右键,点击左键");
}
btnState = (int) MouseButtonsState.LeftDown;
this.OutText("2. 左键,MouseDown事件");
break;
case MouseButtons.Right:
if (btnState==(int)MouseButtonsState.LeftDown) {
this.OutText("3. 按住左键,点击右键");
}
btnState = (int) MouseButtonsState.RightDown;
this.OutText("4. 右键,MouseDown事件");
break;
}
}
private void Form1_MouseUp(object sender, MouseEventArgs e) {
this.btnState = -1;
this.OutText("5. 初始btnSate值为: -1");
}
private void button1_Click(object sender, EventArgs e) {
this.textBox1.Text = "";
btnState = -1;
}
}
}
文件二: Form1.Designer.cs
namespace Test {
partial class MouseClickEnhanceForm {
/// <summary>
/// 必需的设计器变量。
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// 清理所有正在使用的资源。
/// </summary>
/// <param name="disposing">如果应释放托管资源,为 true;否则为 false。</param>
protected override void Dispose(bool disposing) {
if (disposing && (components != null)) {
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows 窗体设计器生成的代码
/// <summary>
/// 设计器支持所需的方法 - 不要
/// 使用代码编辑器修改此方法的内容。
/// </summary>
private void InitializeComponent() {
this.Init = new System.Windows.Forms.Button();
this.textBox1 = new System.Windows.Forms.TextBox();
this.SuspendLayout();
//
// Init
//
this.Init.Location = new System.Drawing.Point(107, 12);
this.Init.Name = "Init";
this.Init.Size = new System.Drawing.Size(75, 23);
this.Init.TabIndex = 0;
this.Init.Text = "初始化";
this.Init.UseVisualStyleBackColor = true;
this.Init.Click += new System.EventHandler(this.button1_Click);
//
// textBox1
//
this.textBox1.AcceptsReturn = true;
this.textBox1.AcceptsTab = true;
this.textBox1.Location = new System.Drawing.Point(12, 41);
this.textBox1.Multiline = true;
this.textBox1.Name = "textBox1";
this.textBox1.ScrollBars = System.Windows.Forms.ScrollBars.Both;
this.textBox1.Size = new System.Drawing.Size(287, 356);
this.textBox1.TabIndex = 1;
this.textBox1.Text = "点击窗口进行测试";
//
// MouseClickEnhanceForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(369, 457);
this.Controls.Add(this.textBox1);
this.Controls.Add(this.Init);
this.Name = "MouseClickEnhanceForm";
this.Text = "仿遨游双键鼠标功能";
this.MouseUp += new System.Windows.Forms.MouseEventHandler(this.Form1_MouseUp);
this.MouseDown += new System.Windows.Forms.MouseEventHandler(this.Form1_MouseDown);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Button Init;
private System.Windows.Forms.TextBox textBox1;
}
}
分享到:
相关推荐
标题“按住左键点击右键,和按住右键点击左键,c#”涉及到的是在C#编程环境中实现鼠标操作的交互逻辑。这通常与Windows应用程序开发有关,特别是使用Windows Forms或WPF(Windows Presentation Foundation)框架时,...
标题中的“简单演示画直线源码(按住鼠标左键开始)”指的是一个编程示例,它展示了如何在计算机屏幕上通过用户交互(按住鼠标左键)来绘制直线。这通常涉及到图形用户界面(GUI)编程,特别是与事件处理相关的部分...
Smart3D引擎V1.0(C#源码) 功能介绍: 这是一个完全用C#写的引擎,全部是自己实现的,大约有1万行代码。 目标是构造一个健壮、高效、动态的3D引擎(不仅限于游戏)。渲染框 架借鉴了OGRE/Axiom,去掉了跨平台和跨...
2. **模拟鼠标点击**:模拟鼠标点击分为左键点击、右键点击和中间滚轮点击。可以使用`SendKeys`类的`Send`方法配合特定的按键组合来实现。例如,模拟左键单击可以使用`SendKeys.Send("{LEFTDOWN}")`和`SendKeys.Send...
通过上述分析,我们可以看到,在C#中使用`pictureBox1`实现实时绘制矩形框的功能主要依赖于对鼠标事件的监听和处理。通过合理地利用`Graphics`和`Pen`类,可以实现动态绘制的效果。这种方式不仅适用于矩形的绘制,也...
本项目"c#屏幕截取程序及源码"是利用C#实现的一个类似于QQ截图工具的功能,它允许用户方便地捕获和保存屏幕上的任何部分。下面我们将详细探讨这个项目的相关知识点。 1. C#基础: - 类与对象:C#是面向对象的语言...
SmartC#3D引擎V0.1源码 功能介绍: 这是一个完全用C#写的引擎,全部是自己实现的,大约有1万行代码。 目标是构造一个健壮、高效、动态的3D引擎(不仅限于游戏)。渲染框 架借鉴了OGRE/Axiom,去掉了跨平台和跨图形...
通过以上步骤,我们可以实现一个简单的画图应用,允许用户按住鼠标左键在窗体上拖动以绘制线条,并在松开鼠标时完成当前线条。这只是一个基础实现,实际应用中可能还需要考虑撤销/重做、保存/加载绘图等高级功能。...
摘要:C#源码,系统相关,模拟鼠标,API C#API模拟鼠标键盘操作(QQ巧遇卡广告机)实例源码,打开QQ巧遇卡,运行程序,选中 巧遇卡坐标后面的单选按钮,再按住 Z 键,此时就是选坐标,其他一样,之后关掉对话框点开始就...
摘要:C#源码,菜单窗体,缩略图,拖动组件 让C#在程序运行窗口中拖动组件(图片缩略图),这是个有意思的源码哦,那些看似图片缩略图的东西在窗口中可以随意被拖动,鼠标放上去后按住鼠标左键就可以拖动它们,在窗口内...
在描述中提到,按住鼠标左键在窗体中移动时,线条由一定规则的点组成。这意味着我们在MouseMove事件处理函数中,不是直接绘制一条连续的线,而是每次移动时绘制一个点,然后连接这些点形成线。为了实现这一点,我们...
1. **右键拖动法**:找到目标文件或程序,按住鼠标左键不放,拖动到你想要放置快捷方式的位置,然后松开鼠标左键,选择“在此处创建快捷方式”。 2. **菜单创建法**:在目标文件或程序上点击鼠标右键,在弹出的菜单...
摘要:C#源码,菜单窗体,窗口拖动 无标题栏,无边框的窗体拖动 C#代码实例,为方便测试,弄成了黑色背景,没了关闭按钮,关闭时请按Alt+F4,另外你可以在黑色区域按住鼠标左键拖动本窗口到任意地方,拖动无边框窗体的...
文字和尺寸标注;元素属性设置;长度、角度、面积的查询; DXF输出;提供交换文件和二次开发接口。适用于 CAD/CAM/GIS/GPS等相关图形软件开发。软件价格:试用版本免费相关文档:--发布日期:2003.07.29===========...
当需要复制规则的矩形区域时,可以按住Alt键,然后用鼠标左键来选取。 #### 十一、将字体快速改为上标或下标 选定需要设置为下标的文字,在英文状态下按住Ctrl键,同时按+BASKSPACE旁的+/=键即可。设置上标时,在按...