您可以将CMFCVisualManager与基于对话框的应用程序一起使用来更改应用程序外观吗?如果是这样,它是如何完成的?
我们的想法是使用MSVC 2008发布的MFC功能包来改变按钮等控件的形状,颜色等。
答案 0 :(得分:2)
不,不能做,至少在你谈论Feature Pack版本时不行。 BCGSoft库的第10版确实具有此功能,例如:http://www.bcgsoft.com/bcgcontrolbarpro-versions.htm和http://www.bcgsoft.com/images/SkinnedBuiltInDlgs.jpg。 MFC功能包或多或少是以前版本的BCGSoft库,MS从他们那里购买了许可证。
答案 1 :(得分:0)
您需要将公共控件清单添加到项目资源中。以下是清单文件的代码:
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
<assemblyIdentity
version="1.0.0.0"
processorArchitecture="X86"
name="Program Name"
type="win32"
/>
<description>Description of Program</description>
<dependency>
<dependentAssembly>
<assemblyIdentity
type="win32"
name="Microsoft.Windows.Common-Controls"
version="6.0.0.0"
processorArchitecture="X86"
publicKeyToken="6595b64144ccf1df"
language="*"
/>
</dependentAssembly>
</dependency>
</assembly>
答案 2 :(得分:0)
我认为您可以在基础OnApplicationLook
上实施CDialog
来获得一些MFC功能包功能(请查看this page上的第4步)。实现整个OnApplicationLook
方法可能更好,但您可以通过将其添加到OnInitDialog
来测试您的应用程序:
CMFCVisualManagerOffice2007::SetStyle(CMFCVisualManagerOffice2007::Office2007_Silver);
CMFCVisualManager::SetDefaultManager(RUNTIME_CLASS(CMFCVisualManagerOffice2007));
CDockingManager::SetDockingMode(DT_SMART);
RedrawWindow(NULL, NULL, RDW_ALLCHILDREN | RDW_INVALIDATE | RDW_UPDATENOW | RDW_FRAME | RDW_ERASE);
答案 3 :(得分:0)
这是启用视觉样式的最少代码。您应该能够轻松地将CDialog弹出到框架中。 IDR_MAINFRAME是菜单资源。
class CMFCApplication2Dlg : public CFrameWndEx
{
CMFCMenuBar bar;
public:
CMFCApplication2Dlg() : CFrameWndEx()
{
LoadFrame(IDR_MAINFRAME);
bar.Create(this);
}
};
class CMFCApplication2App : public CWinAppEx
{
public:
virtual BOOL InitInstance()
{
CWinAppEx::InitInstance();
CMFCVisualManagerOffice2007::SetStyle(
CMFCVisualManagerOffice2007::Office2007_ObsidianBlack);
CMFCVisualManager::SetDefaultManager(
RUNTIME_CLASS(CMFCVisualManagerOffice2007));
SetRegistryKey(_T("Local AppWizard-Generated Applications"));
m_pMainWnd = new CMFCApplication2Dlg();
m_pMainWnd->ShowWindow(SW_SHOW);
m_pMainWnd->UpdateWindow();
return TRUE;
}
};
CMFCApplication2App theApp;