123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace LYFZ.StandardInterface
- {
-
-
-
- public interface IFormMain
- {
- #region 属性
-
-
-
- string Name { get; set; }
-
-
-
- bool TopLevel { get; set; }
-
-
-
- bool IsShadow { get; set; }
-
-
-
- bool MaximizeBox { get; set; }
-
-
-
- bool MinimizeBox { get; set; }
-
-
-
- bool IsShowCloseBox { get; set; }
-
-
-
- int TitleBgImageHeight { get; set; }
-
-
-
- int BottomBgImageHeight { get; set; }
-
-
-
- bool IsMaximized { get; set; }
-
-
-
- bool FormMobile { get; set; }
-
-
-
- bool IsUserControlsSize { get; set; }
-
-
-
- System.Windows.Forms.DockStyle Dock { get; set; }
-
-
-
- bool IsCustomScrollBar { get; set; }
- #endregion
-
-
-
- void Show();
-
-
-
-
- System.Windows.Forms.DialogResult ShowDialog();
- void ClosThisForm();
- }
- }
|