Beispiel #1
0
        private void Form1_Load(object sender, EventArgs e)
        {
            InfoLib AppListLibInf = new InfoLib();

            this.Text += " - JSON:" + Parameter["Versione"] + " - SW:" + GetVer(Assembly.GetExecutingAssembly().GetName()) + " - ";
            if (FileDaAprire != "")
            {
                ReadFile(FileDaAprire);
                tabControl1.SelectedTab = tabPage2;
                FileDaAprire            = "";
            }
        }
Beispiel #2
0
        public AboutBox()
        {
            InitializeComponent();
            InfoLib AppListLibInf = new InfoLib();

            this.Text = String.Format("About {0}", AssemblyTitle);
            this.labelProductName.Text   = AssemblyProduct;
            this.labelVersion.Text       = String.Format("App Version {0}", AssemblyVersion);
            this.labelCopyright.Text     = AssemblyCopyright;
            this.labelCompanyName.Text   = AssemblyCompany;
            this.textBoxDescription.Text = AssemblyDescription;
            this.LibVer.Text             = String.Format("Lib Version {0}", AppListLibInf.AssemblyVersion);
        }