├── .gitignore ├── .vs └── RibbonExample │ └── v14 │ └── .suo ├── ChildFrm.cpp ├── ChildFrm.h ├── ClassView.cpp ├── ClassView.h ├── FileView.cpp ├── FileView.h ├── MainFrm.cpp ├── MainFrm.h ├── OutputWnd.cpp ├── OutputWnd.h ├── PropertiesWnd.cpp ├── PropertiesWnd.h ├── README.md ├── RainbowStyle.cpp ├── RainbowStyle.h ├── RibbonExample.aps ├── RibbonExample.cpp ├── RibbonExample.h ├── RibbonExample.rc ├── RibbonExample.sln ├── RibbonExample.vcxproj ├── RibbonExampleDoc.cpp ├── RibbonExampleDoc.h ├── RibbonExampleView.cpp ├── RibbonExampleView.h ├── ViewTree.cpp ├── ViewTree.h ├── VisualManager.png ├── Windows10Style.cpp ├── Windows10Style.h ├── res ├── RibbonExample.ico ├── RibbonExample.rc2 ├── RibbonExampleDoc.ico ├── Toolbar.bmp ├── Toolbar256.bmp ├── buttons.bmp ├── class_view.ico ├── class_view_hc.ico ├── classview.bmp ├── classview_hc.bmp ├── explorer.bmp ├── explorer_hc.bmp ├── file_view.ico ├── file_view_hc.ico ├── filelarge.bmp ├── filelarge.png ├── filesmall.bmp ├── fileview.bmp ├── fileview_hc.bmp ├── main.bmp ├── menuimages.bmp ├── menuimages_hc.bmp ├── output_wnd.ico ├── output_wnd_hc.ico ├── properties.bmp ├── properties_hc.bmp ├── properties_wnd.ico ├── properties_wnd_hc.ico ├── ribbon.mfcribbon-ms ├── sort.bmp ├── sort_hc.bmp ├── ui_elements.png ├── writelarge.bmp └── writesmall.bmp ├── resource.h ├── stdafx.cpp ├── stdafx.h └── targetver.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mydeveloperday/ribbonexamples/HEAD/.gitignore -------------------------------------------------------------------------------- /.vs/RibbonExample/v14/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mydeveloperday/ribbonexamples/HEAD/.vs/RibbonExample/v14/.suo -------------------------------------------------------------------------------- /ChildFrm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mydeveloperday/ribbonexamples/HEAD/ChildFrm.cpp -------------------------------------------------------------------------------- /ChildFrm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mydeveloperday/ribbonexamples/HEAD/ChildFrm.h -------------------------------------------------------------------------------- /ClassView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mydeveloperday/ribbonexamples/HEAD/ClassView.cpp -------------------------------------------------------------------------------- /ClassView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mydeveloperday/ribbonexamples/HEAD/ClassView.h -------------------------------------------------------------------------------- /FileView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mydeveloperday/ribbonexamples/HEAD/FileView.cpp -------------------------------------------------------------------------------- /FileView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mydeveloperday/ribbonexamples/HEAD/FileView.h -------------------------------------------------------------------------------- /MainFrm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mydeveloperday/ribbonexamples/HEAD/MainFrm.cpp -------------------------------------------------------------------------------- /MainFrm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mydeveloperday/ribbonexamples/HEAD/MainFrm.h -------------------------------------------------------------------------------- /OutputWnd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mydeveloperday/ribbonexamples/HEAD/OutputWnd.cpp -------------------------------------------------------------------------------- /OutputWnd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mydeveloperday/ribbonexamples/HEAD/OutputWnd.h -------------------------------------------------------------------------------- /PropertiesWnd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mydeveloperday/ribbonexamples/HEAD/PropertiesWnd.cpp -------------------------------------------------------------------------------- /PropertiesWnd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mydeveloperday/ribbonexamples/HEAD/PropertiesWnd.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mydeveloperday/ribbonexamples/HEAD/README.md -------------------------------------------------------------------------------- /RainbowStyle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mydeveloperday/ribbonexamples/HEAD/RainbowStyle.cpp -------------------------------------------------------------------------------- /RainbowStyle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mydeveloperday/ribbonexamples/HEAD/RainbowStyle.h -------------------------------------------------------------------------------- /RibbonExample.aps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mydeveloperday/ribbonexamples/HEAD/RibbonExample.aps -------------------------------------------------------------------------------- /RibbonExample.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mydeveloperday/ribbonexamples/HEAD/RibbonExample.cpp -------------------------------------------------------------------------------- /RibbonExample.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mydeveloperday/ribbonexamples/HEAD/RibbonExample.h -------------------------------------------------------------------------------- /RibbonExample.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mydeveloperday/ribbonexamples/HEAD/RibbonExample.rc -------------------------------------------------------------------------------- /RibbonExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mydeveloperday/ribbonexamples/HEAD/RibbonExample.sln -------------------------------------------------------------------------------- /RibbonExample.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mydeveloperday/ribbonexamples/HEAD/RibbonExample.vcxproj -------------------------------------------------------------------------------- /RibbonExampleDoc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mydeveloperday/ribbonexamples/HEAD/RibbonExampleDoc.cpp -------------------------------------------------------------------------------- /RibbonExampleDoc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mydeveloperday/ribbonexamples/HEAD/RibbonExampleDoc.h -------------------------------------------------------------------------------- /RibbonExampleView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mydeveloperday/ribbonexamples/HEAD/RibbonExampleView.cpp -------------------------------------------------------------------------------- /RibbonExampleView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mydeveloperday/ribbonexamples/HEAD/RibbonExampleView.h -------------------------------------------------------------------------------- /ViewTree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mydeveloperday/ribbonexamples/HEAD/ViewTree.cpp -------------------------------------------------------------------------------- /ViewTree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mydeveloperday/ribbonexamples/HEAD/ViewTree.h -------------------------------------------------------------------------------- /VisualManager.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mydeveloperday/ribbonexamples/HEAD/VisualManager.png -------------------------------------------------------------------------------- /Windows10Style.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mydeveloperday/ribbonexamples/HEAD/Windows10Style.cpp -------------------------------------------------------------------------------- /Windows10Style.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mydeveloperday/ribbonexamples/HEAD/Windows10Style.h -------------------------------------------------------------------------------- /res/RibbonExample.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mydeveloperday/ribbonexamples/HEAD/res/RibbonExample.ico -------------------------------------------------------------------------------- /res/RibbonExample.rc2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mydeveloperday/ribbonexamples/HEAD/res/RibbonExample.rc2 -------------------------------------------------------------------------------- /res/RibbonExampleDoc.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mydeveloperday/ribbonexamples/HEAD/res/RibbonExampleDoc.ico -------------------------------------------------------------------------------- /res/Toolbar.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mydeveloperday/ribbonexamples/HEAD/res/Toolbar.bmp -------------------------------------------------------------------------------- /res/Toolbar256.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mydeveloperday/ribbonexamples/HEAD/res/Toolbar256.bmp -------------------------------------------------------------------------------- /res/buttons.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mydeveloperday/ribbonexamples/HEAD/res/buttons.bmp -------------------------------------------------------------------------------- /res/class_view.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mydeveloperday/ribbonexamples/HEAD/res/class_view.ico -------------------------------------------------------------------------------- /res/class_view_hc.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mydeveloperday/ribbonexamples/HEAD/res/class_view_hc.ico -------------------------------------------------------------------------------- /res/classview.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mydeveloperday/ribbonexamples/HEAD/res/classview.bmp -------------------------------------------------------------------------------- /res/classview_hc.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mydeveloperday/ribbonexamples/HEAD/res/classview_hc.bmp -------------------------------------------------------------------------------- /res/explorer.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mydeveloperday/ribbonexamples/HEAD/res/explorer.bmp -------------------------------------------------------------------------------- /res/explorer_hc.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mydeveloperday/ribbonexamples/HEAD/res/explorer_hc.bmp -------------------------------------------------------------------------------- /res/file_view.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mydeveloperday/ribbonexamples/HEAD/res/file_view.ico -------------------------------------------------------------------------------- /res/file_view_hc.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mydeveloperday/ribbonexamples/HEAD/res/file_view_hc.ico -------------------------------------------------------------------------------- /res/filelarge.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mydeveloperday/ribbonexamples/HEAD/res/filelarge.bmp -------------------------------------------------------------------------------- /res/filelarge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mydeveloperday/ribbonexamples/HEAD/res/filelarge.png -------------------------------------------------------------------------------- /res/filesmall.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mydeveloperday/ribbonexamples/HEAD/res/filesmall.bmp -------------------------------------------------------------------------------- /res/fileview.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mydeveloperday/ribbonexamples/HEAD/res/fileview.bmp -------------------------------------------------------------------------------- /res/fileview_hc.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mydeveloperday/ribbonexamples/HEAD/res/fileview_hc.bmp -------------------------------------------------------------------------------- /res/main.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mydeveloperday/ribbonexamples/HEAD/res/main.bmp -------------------------------------------------------------------------------- /res/menuimages.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mydeveloperday/ribbonexamples/HEAD/res/menuimages.bmp -------------------------------------------------------------------------------- /res/menuimages_hc.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mydeveloperday/ribbonexamples/HEAD/res/menuimages_hc.bmp -------------------------------------------------------------------------------- /res/output_wnd.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mydeveloperday/ribbonexamples/HEAD/res/output_wnd.ico -------------------------------------------------------------------------------- /res/output_wnd_hc.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mydeveloperday/ribbonexamples/HEAD/res/output_wnd_hc.ico -------------------------------------------------------------------------------- /res/properties.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mydeveloperday/ribbonexamples/HEAD/res/properties.bmp -------------------------------------------------------------------------------- /res/properties_hc.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mydeveloperday/ribbonexamples/HEAD/res/properties_hc.bmp -------------------------------------------------------------------------------- /res/properties_wnd.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mydeveloperday/ribbonexamples/HEAD/res/properties_wnd.ico -------------------------------------------------------------------------------- /res/properties_wnd_hc.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mydeveloperday/ribbonexamples/HEAD/res/properties_wnd_hc.ico -------------------------------------------------------------------------------- /res/ribbon.mfcribbon-ms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mydeveloperday/ribbonexamples/HEAD/res/ribbon.mfcribbon-ms -------------------------------------------------------------------------------- /res/sort.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mydeveloperday/ribbonexamples/HEAD/res/sort.bmp -------------------------------------------------------------------------------- /res/sort_hc.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mydeveloperday/ribbonexamples/HEAD/res/sort_hc.bmp -------------------------------------------------------------------------------- /res/ui_elements.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mydeveloperday/ribbonexamples/HEAD/res/ui_elements.png -------------------------------------------------------------------------------- /res/writelarge.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mydeveloperday/ribbonexamples/HEAD/res/writelarge.bmp -------------------------------------------------------------------------------- /res/writesmall.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mydeveloperday/ribbonexamples/HEAD/res/writesmall.bmp -------------------------------------------------------------------------------- /resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mydeveloperday/ribbonexamples/HEAD/resource.h -------------------------------------------------------------------------------- /stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mydeveloperday/ribbonexamples/HEAD/stdafx.cpp -------------------------------------------------------------------------------- /stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mydeveloperday/ribbonexamples/HEAD/stdafx.h -------------------------------------------------------------------------------- /targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mydeveloperday/ribbonexamples/HEAD/targetver.h --------------------------------------------------------------------------------