예제 #1
0
 private void массивОбобщенныхЧиселБеллаToolStripMenuItem_Click(object sender, EventArgs e)
 {
     if (!((ShowForm != null) && (ShowForm.Disposing) && (ShowForm.IsDisposed)))
     {
         ShowForm = new Form3();
     }
     ShowForm.Show();
 }
예제 #2
0
        /// <summary>
        /// Opens a dictionary window for the specified dictionary, using an
        /// existing window if possible.
        /// </summary>
        /// <param name="dict">The dictionary to open.</param>
        public static void OpenDictionary(DictionaryInfo dict)
        {
            if (dict == null)
            {
                return;
            }

            try {
                ShowForm.Show(
                    form => form.Dictionary.Path == dict.Path,
                    () => new LookupForm(dict));
            } catch (System.IO.IOException e) {
                Errors.CouldNotLoadDictionary(dict.Name, dict.Path, e);
            } catch (DictionaryLoadException e) {
                Errors.CouldNotLoadDictionary(dict.Name, dict.Path, e);
            }
        }
예제 #3
0
 private void importListMI_Click(object sender, EventArgs e)
 {
     ShowForm.Show <ImportForm>();
 }
예제 #4
0
 private void importDictionaryMI_Click(object sender, EventArgs e)
 {
     ShowForm.Show <DictionaryImport>();
 }
예제 #5
0
 private void findDuplicates_Click(object sender, EventArgs e)
 {
     ShowForm.Show <FindDuplicates>();
 }
예제 #6
0
 private void about_Click(object sender, EventArgs e)
 {
     ShowForm.Show <About>();
 }
예제 #7
0
 private void options_Click(object sender, EventArgs e)
 {
     ShowForm.Show <Preferences>();
 }
예제 #8
0
 private void debugLog_Click(object sender, EventArgs e)
 {
     ShowForm.Show <LogViewerForm>();
 }
예제 #9
0
 void ImportListClick(object sender, EventArgs e)
 {
     ShowForm.Show <ImportForm>();
 }
예제 #10
0
파일: Home.cs 프로젝트: soymichelt/SSCC
        private void LoadCustomer()
        {
            var customer = new CustomerManage();

            ShowForm.Show(customer, Dialog: true);
        }
예제 #11
0
파일: Home.cs 프로젝트: soymichelt/SSCC
        private void LoadProduct()
        {
            var product = new ProductManage();

            ShowForm.Show(product, Dialog: true);
        }
예제 #12
0
파일: Home.cs 프로젝트: soymichelt/SSCC
        private void LoadSale()
        {
            var sale = new SaleManage();

            ShowForm.Show(sale, Dialog: true);
        }
예제 #13
0
 void OptionsClick(object sender, EventArgs e)
 {
     ShowForm.Show <Preferences>();
 }
예제 #14
0
 void DebugLogClick(object sender, EventArgs e)
 {
     ShowForm.Show <LogViewerForm>();
 }
예제 #15
0
 void ImportDictionaryClick(object sender, EventArgs e)
 {
     ShowForm.Show <DictionaryImport>();
 }
예제 #16
0
 private void showStartPage_Click(object sender, EventArgs e)
 {
     ShowForm.Show <StartPage>();
 }
예제 #17
0
파일: Home.cs 프로젝트: soymichelt/SSCC
        private void LoadImport()
        {
            var import = new SaleImport();

            ShowForm.Show(import, Dialog: true);
        }
예제 #18
0
 void OpenListClick(object sender, EventArgs e)
 {
     ShowForm.Show <StartPage>();
 }