Mouse sağ tuş tıklanınca textbox’taki bilgelerin yan yana kopyala- C#
[code lang=”csharp”]
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;//www.gorselprogramlama.com
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace WindowsFormsApplication13
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void textBox1_MouseDown(object sender, MouseEventArgs e)
{
switch (e.Button)//www.gorselprogramlama.com
{
case MouseButtons.Right:
textBox1.Text =textBox1.Text+ textBox1.Text;
break;
default:
break;//www.gorselprogramlama.com
}
}
}
}
[/code]


