private void BtnAbout_Click(object sender, EventArgs e)
        {
            sidePanel.Location = new Point(0, 377);
            sidePanel.BringToFront();
            FrmAboutBox frmAboutBox = new FrmAboutBox();

            frmAboutBox.Show();
        }
Esempio n. 2
0
        public void ChromaAppInfoValuesMatchManifestValues()
        {
            var appInfo = LoadChromaAppInfo();

            using var frm = new FrmAboutBox();

            Assert.Equal(FrmAboutBox.AssemblyTitle, appInfo.Element("title").Value);
            Assert.Equal(frm.AssemblyDescription, appInfo.Element("description").Value);
            Assert.Equal("Jorge Poveda Coma", appInfo.Element("author").Attribute("name").Value);
            Assert.Equal(frm.AssemblyCompany, appInfo.Element("author").Attribute("contact").Value);
        }
Esempio n. 3
0
 private void About_Click(object sender, EventArgs eventArgs)
 {
     using var frm = new FrmAboutBox();
     frm.ShowDialog(ContextMenu);
 }
        private void aboutToolStripMenuItem_Click(object sender, EventArgs e)
        {
            FrmAboutBox frmAboutBox = new FrmAboutBox();

            frmAboutBox.ShowDialog();
        }
Esempio n. 5
0
        private void sobreToolStripMenuItem_Click(object sender, EventArgs e)
        {
            FrmAboutBox form = new FrmAboutBox();

            form.ShowDialog();
        }