首页 > 其他 > 详细

不清楚System.Diagnostics.Process.Start(e.LinkText); 的含义

时间:2015-11-11 16:21:37      阅读:400      评论:0      收藏:0      [点我收藏+]
 1 using System;
 2 using System.Data;
 3 using System.Drawing;
 4 using System.Text;
 5 using System.Windows.Forms;
 6 namespace Test11
 7 {
 8     public partial class Form1 : Form
 9     {
10         public Form1()
11         {
12             InitializeComponent();
13         }
14         private void Form1_Load(object sender, EventArgs e)
15         {
16             richTextBox1.Multiline = true;
17             richTextBox1.ScrollBars = RichTextBoxScrollBars.Vertical;
18             richTextBox1.Text = "欢迎登录 http://www.baidu.com编程体验网";
19         }
20         private void richTextBox1_LinkClicked(object sender, LinkClickedEventArgs e)
21         {
22             System.Diagnostics.Process.Start(e.LinkText);    
23         }
24 
25         private void richTextBox1_TextChanged(object sender, EventArgs e)
26         {
27 
28         }
29     }
30 }

 

不清楚System.Diagnostics.Process.Start(e.LinkText); 的含义

原文:http://www.cnblogs.com/liuyaozhi/p/4956264.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!