我想知道如何在CppTk库中使用“casvasx”命令。 我在下面开发了一个非常简单的代码。
#include "cpptk.h"
#include <iostream>
using namespace Tk;
using namespace std;
int main(int, char *argv[])
{
try
{
init(argv[0]);
canvas(".c") -background("blue") -width(100) -height(100);
grid(configure, ".c");
int x1 = (".c" << canvasx(57));
cout << "x1: " << x1 << endl;
runEventLoop();
}
catch (exception const &e)
{
cerr << "Error: " << e.what() << '\n';
}
}
int x1 =(“。c”&lt;&lt; canvasx(57));&lt; ----这是从CppTk网站的“文档”中复制的确切行。但是,程序运行时会出错。 http://cpptk.sourceforge.net/doc.html
有没有办法解决这个问题? 有人有同样的问题吗?