我正在寻找一种简单的方法来实现标准的办公室自定义任务窗格TabContainer,它看起来像这样: Standard Office TabContainer
(1)易于实施 (2)使用TabContainer还有一种方法可以使用图标 - 但是它们看起来并不像在这个中使用鼠标效果等。 (3)我没有在标准的TabContainer中找到一个设置来启用这样一个带标记的行
这是一个单独的组件,还是有人举例说明了控制所需的一切?
答案 0 :(得分:0)
Office有使用控件的历史,它不会向第三方开发者公开。例如,最近的文件列表不可重复使用。
但也许这次他们没有这样做,也许他们确实让它可用。他们可能会在某些发行说明中包含它,对吗?但是,What's new for developers
或Word 2013一般都未在using CharAllocator = boost::interprocess::allocator<char, boost::interprocess::managed_shared_memory::segment_manager>;
using MyShmString = boost::interprocess::basic_string<char, std::char_traits<char>, CharAllocator>;
MyShmString uuid_;
template<typename _Archive>
void save( _Archive &ar, unsigned int const version ) const
{
ar << std::string{ this->uuid_.c_str(), this->uuid_.length() };
}
template<typename _Archive>
void load( _Archive &ar, unsigned int const version )
{
auto tmp = std::string{};
ar >> tmp; this->uuid_ = tmp.c_str();
}
中列出。
好吧,也许他们只是忘了把它包括在那里?我还看了一下intellisense,我可能会发现它但却没有。一些谷歌搜索也没有出现任何东西。
我不认为这是你可以重复使用的东西。
您当然可以重新创建它。对于WPF来说这可能是最简单的,但只是相对来说,总的来说,它可能并不容易。此外,如果你走这条路,你需要单独和更具体的问题而不是&#34;我该怎么做?&#34;试着去做,并提出与你遇到的障碍有关的问题。