To use the LBitmapWindow (or any derived) class as a Window in your application, you must create a window, and then assign the newly created window handle to an LBitmapWindow (or derived) object. After that, the class object will do all of the processing required to handle the Window messages that the window will receive, including those relating to displaying images. If you want to process messages yourself, you can override the LBitmapWindow::MsgProcCallBack vitrual function.
The following is a short example of getting started using LBitmapWindow as a Window. This example was done using MFC, so your code may look different if you use some other foundation class library.
// Do not forget to load the libraries in application's initialization code:// LBase::LoadLibraries(LT_ALL_LEADLIB);// In your View class, declare an LBitmapWindow (or derived) class objectLBitmapWindow m_Image;// Now, in the function for processing WM_PAINT messages:COLORREF rgb;// Set the window handlem_Image.SetWndHandle(m_hWnd);// Load the filem_Image.Load(TEXT("c:\\ltwin14\\images\\sample1.cmp"));// Get the background of the windowrgb = GetSysColor(COLOR_WINDOW);// Set the window background colorm_Image.SetPatternBackColor(rgb);// Fit the image in the windowm_Image.SetZoomMode(ZOOM_FIT, TRUE);
Raster .NET | C API | C++ Class Library | JavaScript HTML5
Document .NET | C API | C++ Class Library | JavaScript HTML5
Medical .NET | C API | C++ Class Library | JavaScript HTML5
Medical Web Viewer .NET
