ABOUT ME

-

Today
-
Yesterday
-
Total
-
  • 윈도우 - C#
    GUI/Window 2011. 7. 27. 19:33
    System.ComponentModel.Component -> System.MarshalByRefObject
    .Dispose()

    System.Windows.Forms.Control -> System.ComponentModel.Component
    on Paint // PaintEventHandler

    .Width
    .Height
    .IsDisposed

    .Show()
    .Invalidate()

    System.Windows.Forms.ScrollableControl -> System.Windows.Forms.Control
    .AutoScrollPosition

    System.Windows.Forms.ContainerControl -> System.Windows.Forms.ScrollableControl
    .BindingContext[]

    System.Windows.Forms.Form -> System.Windows.Forms.ContainerControl

    on Load

    on Shown

    on FormClosed

    on FormClosing

    on Activated

    on Deactivate

    (on Paint)


    (.IsDisposed)
    .Text
    타이틀바의 캡션
    .FormBorderStyle
    .MaximizeBox
    .BackColor
    .Opacity
    .BackColor
    .DialogResult
    .Owner
    .MdiParent
    .ActiveMdiChild
    (.BindingContext[])

    (.Dispose())
    (.Show())
    .ShowDialog()
    .Close()
    .LayoutMdi()

    System.Windows.Forms.MessageBox // static

    .Show() // static

    System.Windows.Forms.FileDialog -> System.Windows.Forms.CommonDialog
    .ShowDialog()

    System.Windows.Forms.OpenFileDialog -> System.Windows.Forms.FileDialog

    .FileNames


    System.Windows.Forms.FolderBrowserDialog -> System.Windows.Forms.CommonDialog

    .SelectedPath


    System.Windows.Forms.FontDialog -> System.Windows.Forms.CommonDialog

    .Font


    System.Windows.Forms.ColorDialog -> System.Windows.Forms.CommonDialog

    .Color


    System.Windows.Forms.PrintDialog -> System.Windows.Forms.CommonDialog

    .PrinterSettings


    System.Windows.Forms.PageSetupDialog -> System.Windows.Forms.CommonDialog

    .PageSettings


    System.Windows.Forms.PrintPreviewDialog -> System.Windows.Forms.Form

    .Document


    (.ShowDialog())


Designed by Tistory.