private void aboutToolStripMenuItem_Click(object sender, EventArgs e) { if (aboutForm == null || aboutForm.IsDisposed) { aboutForm = new AboutForm(this); aboutForm.Show(); } }
public TrayIcon() { InitializeComponent(); this.settingsForm = new SettingsForm(); this.tipForm = new TipForm(); this.aboutForm = new AboutForm(); }
private void barButtonItemAbout_ItemClick(object sender, DevExpress.XtraBars.ItemClickEventArgs e) { using (var aboutForm = new AboutForm()) { aboutForm.ShowDialog(); } }
public MainForm() { InitializeComponent(); m_formRowsPerPage = new SetRowsPerPageForm(); m_formRowsPerPage.ParentForm = this; m_formPageNumber = new SetPageNumberForm(); m_formPageNumber.ParentForm = this; m_formAbout = new AboutForm(); m_webClient = new WebClient(); m_pageLabelHovered = false; m_sortColumnIndex = -1; m_sortReversed = false; m_loadedTable = null; m_lastLoadedTableFilePath = ""; m_currentPageNumber = 0; m_pageCount = 0; m_rowsPerPage = 50; MenuStrip_Tools_UseExternalDescriptors.Checked = Settings.UseExternalDescriptors; MenuStrip_Tools_UseExternalDescriptors.CheckedChanged += new EventHandler(MenuStrip_Tools_UseExternalDescriptors_CheckedChanged); }
/// <summary> /// Shows the AboutForm /// </summary> private void About() { using (AboutForm af = new AboutForm()) { af.ShowDialog(this); } }
static void MenuAbout_click(object sender, EventArgs e) { Form form = new AboutForm {Title = "About", Width = 40, Height = 15, HasBorder = true}; form.Init(); form.Execute(); }
private void infoToolStripMenuItem_Click(object sender, EventArgs e) { using (AboutForm form = new AboutForm()) { form.ShowDialog(); } }
private void btnAbout_Click(object sender, System.EventArgs e) { using (var aboutForm = new AboutForm()) { aboutForm.ShowDialog(); } }
public AboutForm() { InitializeComponent(); Singleton = this; lblVersion.Text = "v"+Version.String; }
/// <summary> /// Shows the About form with the specified owner window. /// </summary> /// <param name="owner">Owner window.</param> public static void Execute(IWin32Window owner) { using (AboutForm aboutForm = new AboutForm()) { aboutForm.ShowDialog(owner); } }
private void aboutToolStripMenuItem1_Click(object sender, EventArgs e) { using (var a = new AboutForm()) { a.ShowDialog(); } }
private void aboutButton_Click(object sender, EventArgs e) { using (var dlg = new AboutForm()) { dlg.ShowDialog(this); } }
public void OpenAboutForm() { using (var form = new AboutForm()) { form.ShowDialog(); } }
private void aboutMnuItem_Click(object sender, EventArgs e) { AboutForm form = new AboutForm(); if (DialogResult.OK == form.ShowDialog()) { } }
private void aboutToolStripMenuItem_Click(object sender, EventArgs e) { if (!aboutForm.Visible) { aboutForm = new AboutForm(); aboutForm.Show(); } }
private void AboutClick(object sender, EventArgs e) { if (aboutForm == null) { aboutForm = new AboutForm(); } aboutForm.ShowDialog(); }
public static void OpenAboutForm() { if (Program.about_form == null) { Program.about_form = new AboutForm(); } Program.about_form.Show(); }
private void aboutToolStripMenuItem_Click(object sender, EventArgs e) { if (aboutForm == null) { aboutForm = new AboutForm(); } aboutForm.ShowDialog(); }
private void aboutToolStripMenuItem_Click(object sender, EventArgs e) { String aboutText = Properties.Resources.AboutStringRes; AboutForm aboutForm = new AboutForm(aboutText.Replace("#",Environment.NewLine+Environment.NewLine)); aboutForm.StartPosition = FormStartPosition.CenterParent; aboutForm.ShowDialog(); }
private void AboutButton_Click(object sender, EventArgs e) { var aboutForm = new AboutForm(); aboutForm.Owner = this; aboutForm.Version = Assembly.GetExecutingAssembly().GetName().Version.ToString(); aboutForm.DeviceID = Platform.GetOEMDeviceID(); aboutForm.Show(); }
public MainForm() { InitializeComponent(); DownloadType = "Folders and Files"; de = new DocExtractor(); myAboutForm = new AboutForm(); }
public static AboutForm getInstance() { if (null == _instance) { _instance = new AboutForm(); } return _instance; }
public static void ShowAbout() { if (_form == null) { _form = new AboutForm(); _form.FormClosed += _form_FormClosed; _form.Show(); } }
private void aboutToolStripMenuItem1_Click(object sender, EventArgs e) { // about AboutForm about = new AboutForm(); about.FormBorderStyle = FormBorderStyle.FixedToolWindow; // show teh about form about.Show(); }
public static DialogResult Show(string version) { MsgBox = new AboutForm(); MsgBox.label1.Text = version; MsgBox.ShowDialog(); MsgBox.button1.Focus(); return result; }
public static void ShowModal() { using (AboutForm af = new AboutForm()) { string version = System.Reflection.Assembly.GetExecutingAssembly().GetName().Version.ToString(); af.ProgramVersion = version.Substring(0, version.Length - 4); af.Title = Util.GetTitle(); af.ShowDialog(); } }
private void aboutButton_Click(object sender, EventArgs e) { try { AboutForm aboutForm = new AboutForm(); aboutForm.ShowDialog(); } catch (Exception ex) { } }
/// <summary> /// Конструктор формы /// </summary> public MainForm() { InitializeComponent(); aboutForm = new AboutForm(); mtxImage = new Mutex(); mtxBool = new Mutex(); renderThread = new Thread(new ThreadStart(renderFractal)); renderThreadRunning = true; renderThread.Start(); paintCount = 0; fractalImageCopy = new Bitmap(Width, Height); }
public static void ShowAboutForm() { if (frmAboutForm != null && !frmAboutForm.IsDisposed) { frmAboutForm.Activate(); return; } frmAboutForm = new AboutForm(); frmAboutForm.Show(); frmAboutForm.Activate(); }
private void aboutButton_Click(object sender, EventArgs e) { AboutForm f = new AboutForm(); f.ShowDialog(); }
private void btnHelp_Click(object sender, EventArgs e) { AboutForm aboutFm = new AboutForm(); aboutFm.ShowDialog(); }
void AboutToolStripMenuItemClick(object sender, EventArgs e) { AboutForm f = new AboutForm(); f.ShowDialog(); }
private void aboutToolStripMenuItem_Click(object sender, EventArgs e) { Form frmAboutBox = new AboutForm(); frmAboutBox.ShowDialog(this); }
void Command3_Click(object sender, System.EventArgs e) { AboutForm?.Invoke(this, new System.EventArgs()); }
private void TSMIAbout_Click(object sender, EventArgs e) { AboutForm form = new AboutForm(); form.ShowDialog(); }
private void aboutMenuItem_Click(object sender, EventArgs e) { AboutForm about = new AboutForm(); about.ShowDialog(); }
private void оПрограммеToolStripMenuItem_Click(object sender, EventArgs e) { AboutForm About = new AboutForm(); About.ShowDialog(); }
private void aboutToolStripMenuItem_Click(object sender, EventArgs e) { var about = new AboutForm(); about.ShowDialog(this); }
void AboutToolStripMenuItemClick(object sender, EventArgs e) { AboutForm f = new AboutForm(this.imgHeader.BackColor); f.ShowDialog(); }
private void helpToolStripMenuItem1_Click(object sender, EventArgs e) { AboutForm f1 = new AboutForm(); f1.ShowDialog(); }
private void aboutToolStripMenuItem_Click(object sender, EventArgs e) { AboutForm about = new AboutForm("DVTk QR SCU Emulator"); about.ShowDialog(); }
/// <summary> /// Show about box /// </summary> /// <param name="sender"></param> /// <param name="e"></param> private void miAbout_Click(object sender, System.EventArgs e) { AboutForm.ShowForm(); }
private void AboutToolStripMenuItem_Click(object sender, EventArgs e) { AboutForm about = new AboutForm(); about.Show(); }
private void aboutToolStripMenuItem_Click(object sender, EventArgs e) { AboutForm form = new AboutForm(); form.ShowDialog(); }
/// <summary> /// Event handler for about help menu item. /// </summary> /// <param name="sender">The sender object.</param> /// <param name="e">The event arguments.</param> private void aboutActiveUpMailSystemClientToolStripMenuItem_Click(object sender, EventArgs e) { AboutForm aboutForm = new AboutForm(); aboutForm.ShowDialog(); }
///关于系统 private void barBtn_systemAbout_ItemClick(object sender, DevExpress.XtraBars.ItemClickEventArgs e) { AboutForm dlg = new AboutForm(); dlg.ShowDialog(); }
private void sobreToolStripMenuItem_Click(object sender, EventArgs e) { using (var frm = new AboutForm()) frm.ShowDialog(); }
private void btnAbout_Click(object sender, EventArgs e) { Form About = new AboutForm(); About.ShowDialog(); }
private void btnMMAbout_Click(object sender, EventArgs e) { AboutForm frm = new AboutForm(); frm.ShowDialog(); }
private void aboutToolStripMenuItem_Click(object sender, EventArgs e) { OpenTKExtension.AboutForm fAbout = new AboutForm(); fAbout.ShowDialog(); }
private void menuItem6_Click(object sender, EventArgs e) { AboutForm aboutForm = new AboutForm(); aboutForm.ShowDialog(this); }
private void infoToolStripMenuItem_Click(object sender, EventArgs e) { var ab = new AboutForm(); ab.ShowDialog(); }
private void 关于ToolStripMenuItem_Click(object sender, EventArgs e) { AboutForm af = new AboutForm(); af.ShowDialog(); }
private void demoAboutInfoAction_Execute(object sender, SimpleActionExecuteEventArgs e) { AboutForm.Show(typeof(string), ProductKind.XAF, DevExpress.Utils.About.ProductInfoStage.Registered); }
/// <summary> /// The about tool strip menu item click. /// </summary> /// <param name="sender"> /// The sender. /// </param> /// <param name="e"> /// The e. /// </param> private void AboutToolStripMenuItemClick(object sender, EventArgs e) { var aboutForm = new AboutForm(); aboutForm.ShowDialog(); }
private void about_form_click(object sender, EventArgs e) { AboutForm about = new AboutForm(); about.Show(); }
private void linkAbout_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e) { AboutForm aboutForm = new AboutForm(); aboutForm.ShowDialog(); }
public void AboutFormConstructorTest() { AboutForm target = new AboutForm(); Assert.Inconclusive("TODO: Implement code to verify target"); }
void btAbout_Click(object sender, EventArgs e) { AboutForm about = new AboutForm(); about.ShowDialog(this); }
private void aboutButton_Click(object sender, EventArgs e) { using (var about = new AboutForm()) { about.ShowDialog(); } }