ABOUT ME

-

Today
-
Yesterday
-
Total
-
  • 컨트롤 - MFC
    GUI/Skin 2010. 6. 4. 16:56
    CWnd::Create() or DDX_Control()
        SubclassWindow()
            PreSubclassWindow() // virtual

    CWnd
        .PreSubclassWindow() // virtual
        .ModifyStyle()
            BS_OWNERDRAW
        .SubclassDlgItem() or .SubclassWindow()

    CDC
        .DrawFrameControl()
            DFC_BUTTON
                DFCS_BUTTONPUSH
            DFC_SCROLL
                DFCS_SCROLLDOWN

            DFCS_PUSHED
            DFCS_INACTIVE
        .DrawEdge()
            EDGE_SUNKEN // BDR_SUNKENOUTER, BDR_SUNKENINNER

            BF_RECT
        .DrawFocusRect()
        .DrawState()
            DSS_DISABLED

    ON_WM_CTLCOLOR
    CTLCOLOR_STATIC
    Flat controls with "mouseover" and "mouseout" effects.
    CButtonXP
    CComboBoxXP


    참조 사이트:

Designed by Tistory.