C#帮助控件HelpProvider的使用
                                                            生活随笔
收集整理的這篇文章主要介紹了
                                C#帮助控件HelpProvider的使用
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.                        
                                
                            
                            
                            using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;namespace 幫助控件的使用
{public partial class Form1 : Form{public Form1(){InitializeComponent();}HelpProvider HP;private void Form1_Load(object sender, EventArgs e){MessageBox.Show("要想獲得幫助,請按F1");HP = new HelpProvider();string Source = "Help.txt";HP.HelpNamespace = Source;HP.SetShowHelp(this, true);}}
}
                            
                        
                        
                        總結
以上是生活随笔為你收集整理的C#帮助控件HelpProvider的使用的全部內容,希望文章能夠幫你解決所遇到的問題。
 
                            
                        - 上一篇: ArcGIS Engine开发模板及C#
- 下一篇: C#使用ServiceControlle
