Inertia – Blame information for rev 1

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 office 1 using System;
2 using System.Collections.Generic;
3 using System.ComponentModel;
4 using System.Data;
5 using System.Drawing;
6 using System.Linq;
7 using System.Text;
8 using System.Threading.Tasks;
9 using System.Windows.Forms;
10  
11 namespace Inertia
12 {
13 public partial class AboutForm : Form
14 {
15 public AboutForm()
16 {
17 InitializeComponent();
18 }
19  
20 private void AboutForm_Shown(object sender, EventArgs e)
21 {
22 InertiaNameVersion.Text = $"{Constants.AssemblyName} v.{Constants.AssemblyVersion}";
23 }
24 }
25 }