IForm.cs 467 B

1234567891011121314151617181920
  1. namespace System.Windows.Forms
  2. {
  3. public interface IForm
  4. {
  5. System.Windows.Controls.ContentControl ContentControl { get; }
  6. bool ExtendedAppArea { get; set; }
  7. double ExtendedAppAreaSize { get; set; }
  8. System.Drawing.Size ClientSizeDelta { get; }
  9. FormBorderStyle FormBorderStyle { get; set; }
  10. bool MaximizeBox { get; set; }
  11. bool MinimizeBox { get; set; }
  12. bool ShowIcon { get; set; }
  13. }
  14. }