sbdestination.h
来自「完整的MP3播放器源码」· C头文件 代码 · 共 35 行
H
35 行
// SBDestination.h: interface for the CSBDestination class.
//
//CopyRight by zhang xiu yong
//1999.04
//e-mail:zxc.marksoft@usa.net
/////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////
#ifndef __SBDESTINATION_H__
#define __SBDESTINATION_H__
#if _MSC_VER >= 1000
#pragma once
#endif // _MSC_VER >= 1000
#include "BrowseForFolder.h"
class CSBDestination : public CBrowseForFolder
{
public:
CSBDestination(const HWND hParent = NULL, const int nTitleID = 0);
~CSBDestination();
void SetInitialSelection(const CString& strPath);
void OnInit() const;
void OnSelChanged(const LPITEMIDLIST pidl) const;
private:
CString m_strInitialSelection;
};
#endif // __SBDESTINATION_H__
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?