X-Aim – Blame information for rev 3

Subversion Repositories:
Rev:
Rev Author Line No. Line
3 office 1 using System;
2 using System.Reflection;
1 office 3 using System.Windows.Forms;
4  
5 namespace X_Aim
6 {
7 public partial class About : Form
8 {
9 public About()
10 {
11 InitializeComponent();
12 }
13  
3 office 14 #region Event Handlers
15  
16 private void OnLoad(object sender, EventArgs e)
1 office 17 {
18 label1.Text = $"v{Assembly.GetEntryAssembly().GetName().Version}";
19  
20  
21 using (var manifestResourceStream =
22 Assembly.GetExecutingAssembly().GetManifestResourceStream("X_Aim.txt.aboutText.rtf"))
23 {
24 richTextBox1.LoadFile(manifestResourceStream, RichTextBoxStreamType.RichText);
25 }
26 }
3 office 27  
28 #endregion
1 office 29 }
30 }