You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
692 B
C++
33 lines
692 B
C++
//////////////////////////////////////////////////////////////////////////////
|
|
//文件: CItem类扩展
|
|
//主要功能:
|
|
// 操作各类元素或完成一定的功能
|
|
//
|
|
//程序编写: 2006-12-07
|
|
//
|
|
//
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
#pragma once
|
|
#include "itemfocusrect.h"
|
|
|
|
namespace NItem
|
|
{
|
|
|
|
class CItemSaveToMark :
|
|
public CItemFocusRect
|
|
{
|
|
public:
|
|
CItemSaveToMark(CSigmaDoc* ppDoc);
|
|
virtual ~CItemSaveToMark(void);
|
|
|
|
virtual void DoLButtonUp(CDC* pDC);
|
|
//属性项
|
|
virtual BOOL InitPropertyGrid();//CXTPPropertyGrid& grid
|
|
//virtual BOOL OnGridItemChangeValue(CXTPPropertyGridItem* pItem);
|
|
CString m_MarkName;
|
|
CString m_FileName;
|
|
CRect8 m_rect; //符号范围
|
|
};
|
|
|
|
}; |