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

            frmAboutBox.Show();
        }
Exemplo 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);
        }
Exemplo 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();
        }
Exemplo n.º 5
0
        private void sobreToolStripMenuItem_Click(object sender, EventArgs e)
        {
            FrmAboutBox form = new FrmAboutBox();

            form.ShowDialog();
        }