文章作者:里海
来源网站:王牌飞行员_里海_里海NX二次开发3000例,里海BlockUI专栏,C\C++-CSDN博客
简介:
UG\NX二次开发 信息窗口的一些操作 NXOpen/ListingWindow
效果:
代码:
#include "me.hpp"
#include <NXOpen/ListingWindow.hxx>
#include <NXOpen/Session.hxx>using namespace NXOpen;extern DllExport void ufusr(char* param, int* returnCode, int rlen)
{Session* theSession = Session::GetSession();ListingWindow* list = theSession->ListingWindow();list->Open();//只有这句是不打开窗口的list->WriteLine("Hello LiHai");
}extern int ufusr_ask_unload(void)
{return (UF_UNLOAD_IMMEDIATELY);
}