sciter入门 介绍什么的就免了.直接进入正题
平台: Windows 10
IDE : Visual studio 2017
首先从官网下载最新的SDK,https://sciter.com/download/
创建流程. https://sciter.com/forums/topic/simple-question-about-sciter/
总结一下关键点. (注意:官网教程里的SDK目录和项目目录是同级目录,所以使用了相对路径,实际项目中要依据情况更改)
- 将 sciter-sdk\include 加入包含目录
- 更改输出目录(可选)
- 更改DPI 识别选项
- 将 sciter-sdk/include/sciter-win-main.cpp 文件添加到项目
// HelloWorld.cpp : Defines the entry point for the application.
//
#include “stdafx.h”
#include “HelloWorld.h”
#include “sciter-x-window.hpp”
class frame : public sciter::window {
public:
frame() : window(SW_TITLEBAR | SW_RESIZEABLE | SW_CONTROLS | SW_MAIN | SW_ENABLE_DEBUG) {}
};
#include “resources.cpp”
int uimain(std::function
//sciter::debug_output_console console; - uncomment it if you will need console window
sciter::archive::instance().open(aux::elements_of(resources)); // bind resources[] (defined in “resources.cpp”) with the archive
frame *pwin = new frame();
【SCITER|学习sciter】// note: this:?/app URL is dedicated to the sciter::archive content associated with the application
pwin->load(WSTR(“this://app/main.htm”));
pwin->expand();
return run();
}
6.在项目根目录下添加 res/main.htm
Test
Hello World!