设为首页 加入收藏

TOP

Windows创建Sciter的第一个程序.HelloWorld
2017-10-11 15:50:51 】 浏览:6007
Tags:Windows 创建 Sciter 一个 程序 .HelloWorld

介绍什么的就免了.直接进入正题

平台: Windows 10

IDE : Visual studio 2017

首先从官网下载最新的SDK,https://sciter.com/download/

创建流程. https://sciter.com/forums/topic/simple-question-about-sciter/

总结一下关键点. (注意:官网教程里的SDK目录和项目目录是同级目录,所以使用了相对路径,实际项目中要依据情况更改)

1. 将 sciter-sdk\include 加入包含目录

2. 更改输出目录(可选)

3. 更改DPI 识别选项

4. 将 sciter-sdk/include/sciter-win-main.cpp 文件添加到项目

5.替换IDE自动生成的 helloWorld.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<int()> run) {

  //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();

  // 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

<html>
    <head>
        <title>Test</title>
        <style></style>
        <script type="text/tiscript"></script>
    </head>
    <body>

      Hello World!

    </body>
</html>

  

7.在项目根目录下添加 pack-resources.bat . 然后保存运行

..\sciter-sdk\bin\packfolder.exe res resources.cpp -v "resources"

 

8.将 sciter.dll 移动到输出目录,即可编译运行

 

】【打印繁体】【投稿】【收藏】 【推荐】【举报】【评论】 【关闭】 【返回顶部
上一篇Visual Studio资源汇总 下一篇程序员入门——从认识计算机和操..

最新文章

热门文章

Hot 文章

Python

C 语言

C++基础

大数据基础

linux编程基础

C/C++面试题目