Пример #1
0
        public AboutBox()
        {
            InitializeComponent();

            this.Text = String.Format("Informacje o {0} v{1}", AssemblyInfoHelper.GetTitle(), AssemblyInfoHelper.GetVersion());
            this.labelProductName.Text   = AssemblyInfoHelper.GetProduct();
            this.labelVersion.Text       = String.Format("Wersja {0}", AssemblyInfoHelper.GetVersion());
            this.labelCopyright.Text     = AssemblyInfoHelper.GetCopyright();
            this.labelCompanyName.Text   = AssemblyInfoHelper.GetCompany();
            this.textBoxDescription.Text = AssemblyInfoHelper.GetDescription();


            _gearImage = Image.FromFile(@"Images\gear.png");
        }