CodeTV.AboutForm.AboutForm C# (CSharp) Méthode

AboutForm() public méthode

public AboutForm ( ) : System
Résultat System
        public AboutForm()
        {
            InitializeComponent();

            using (StreamReader streamReader = new StreamReader(Assembly.GetExecutingAssembly().GetManifestResourceStream(MainForm.AssemblyName + ".ReadMe.txt")))
                this.richTextBox.Text = streamReader.ReadToEnd();

            this.richTextBox.LinkClicked += new LinkClickedEventHandler(richTextBox_LinkClicked);
        }