资源简介

VC++实现滑块皮肤,可以看到类似PhotoShop风格的滑动条

资源截图

代码片段和文件信息

// LineTrackApp.cpp : Defines the class behaviors for the application.
//

#include “stdafx.h“
#include “LineTrackApp.h“
#include “LineTrackAppDlg.h“

#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif

/////////////////////////////////////////////////////////////////////////////
// CLineTrackAppApp

BEGIN_MESSAGE_MAP(CLineTrackAppApp CWinApp)
//{{AFX_MSG_MAP(CLineTrackAppApp)
// NOTE - the ClassWizard will add and remove mapping macros here.
//    DO NOT EDIT what you see in these blocks of generated code!
//}}AFX_MSG
ON_COMMAND(ID_HELP CWinApp::onhelp)
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// CLineTrackAppApp construction

CLineTrackAppApp::CLineTrackAppApp()
{
// TODO: add construction code here
// Place all significant initialization in InitInstance
}

/////////////////////////////////////////////////////////////////////////////
// The one and only CLineTrackAppApp object

CLineTrackAppApp theApp;

/////////////////////////////////////////////////////////////////////////////
// CLineTrackAppApp initialization

BOOL CLineTrackAppApp::InitInstance()
{
AfxEnableControlContainer();

// Standard initialization
// If you are not using these features and wish to reduce the size
//  of your final executable you should remove from the following
//  the specific initialization routines you do not need.

#ifdef _AFXDLL
Enable3dControls(); // Call this when using MFC in a shared DLL
#else
Enable3dControlsStatic(); // Call this when linking to MFC statically
#endif

CLineTrackAppDlg dlg;
m_pMainWnd = &dlg;
int nResponse = dlg.DoModal();
if (nResponse == IDOK)
{
// TODO: Place code here to handle when the dialog is
//  dismissed with OK
}
else if (nResponse == IDCANCEL)
{
// TODO: Place code here to handle when the dialog is
//  dismissed with Cancel
}

// Since the dialog has been closed return FALSE so that we exit the
//  application rather than start the application‘s message pump.
return FALSE;
}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件       2147  2000-11-27 10:56  PhotoShop风格的滑动条\PhotoShop风格的滑动条\LineTrackApp.cpp

     文件        753  2000-11-30 20:08  PhotoShop风格的滑动条\PhotoShop风格的滑动条\LineTrackApp.dsw

     文件      32768  2003-08-24 08:52  PhotoShop风格的滑动条\PhotoShop风格的滑动条\LineTrackApp.exe

     文件       1390  2000-11-27 10:56  PhotoShop风格的滑动条\PhotoShop风格的滑动条\LineTrackApp.h

     文件       2032  2000-11-29 21:31  PhotoShop风格的滑动条\PhotoShop风格的滑动条\LineTrackAppDlg.h

     文件      10458  2000-12-04 11:36  PhotoShop风格的滑动条\PhotoShop风格的滑动条\LineTrackBar.cpp

     文件       3292  2000-12-04 11:39  PhotoShop风格的滑动条\PhotoShop风格的滑动条\LineTrackBar.h

     文件       1908  2000-11-29 17:17  PhotoShop风格的滑动条\PhotoShop风格的滑动条\SignEdit.cpp

     文件       2160  2000-11-18 16:19  PhotoShop风格的滑动条\PhotoShop风格的滑动条\SignEdit.h

     文件        214  2000-11-27 10:56  PhotoShop风格的滑动条\PhotoShop风格的滑动条\StdAfx.cpp

     文件       1054  2000-11-27 10:56  PhotoShop风格的滑动条\PhotoShop风格的滑动条\StdAfx.h

     文件       1196  2003-08-24 08:45  PhotoShop风格的滑动条\PhotoShop风格的滑动条\RESOURCE.H

     文件       1937  2003-08-24 08:52  PhotoShop风格的滑动条\PhotoShop风格的滑动条\LineTrackApp.plg

     文件       6586  2003-08-24 08:48  PhotoShop风格的滑动条\PhotoShop风格的滑动条\LineTrackApp.rc

     文件       8333  2003-08-24 08:51  PhotoShop风格的滑动条\PhotoShop风格的滑动条\LineTrackAppDlg.cpp

     文件       3369  2003-08-24 08:52  PhotoShop风格的滑动条\PhotoShop风格的滑动条\LineTrackApp.dsp

     文件       1078  2000-11-27 10:56  PhotoShop风格的滑动条\PhotoShop风格的滑动条\RES\LineTrackApp.ico

     文件        404  2000-11-27 10:56  PhotoShop风格的滑动条\PhotoShop风格的滑动条\RES\LineTrackApp.rc2

     文件        245  2006-04-28 10:10  PhotoShop风格的滑动条\龙腾教程网.url

     文件        503  2006-05-02 09:13  PhotoShop风格的滑动条\说明.txt

     目录          0  2005-08-10 14:10  PhotoShop风格的滑动条\PhotoShop风格的滑动条\RES

     目录          0  2005-08-10 14:10  PhotoShop风格的滑动条\PhotoShop风格的滑动条

     目录          0  2006-11-26 23:12  PhotoShop风格的滑动条

----------- ---------  ---------- -----  ----

                81827                    23


评论

共有 条评论