12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace LYFZ.StandardInterface
- {
-
-
-
- public interface IToolMenuClick
- {
-
-
-
- string FormName { get; }
-
-
-
-
- void ShowChildForm(string classFullName, string dllKey);
-
-
-
- void CloseForm();
-
-
-
- void ExitApplication();
-
-
-
- void RefreshTools();
-
-
-
-
-
-
- void ShowForm(string classFullName, string dllKey, string openMode);
-
-
-
- void ShowLogin(System.Windows.Forms.Form frm=null);
-
-
-
-
- void SetWindowState(System.Windows.Forms.FormWindowState wState);
- }
- }
|