我在Qt Creator的作业中工作,在那里我画到QWidget,我需要保存这个QWdiget的一部分.
我试图解决这个问题:
QPixmap pixmap;
pixmap.copy(rectangle); // rectangle is part of QWidget, which I need to save
pixmap.save("example.png");
Run Code Online (Sandbox Code Playgroud)
谢谢你的帮助.
今天我安装了Microsoft Visual Studio 2012,我遇到了一个问题,即当我启动项目时,命令行的字体非常小,无法读取.你不知道如何将它设置为正常?感谢您的意见.
操作系统:Windows 8 64bit捷克语

我正在写一篇关于"Java应用程序源代码分析"的学士论文.我有几点必须包括书面部分.其中之一是"语法和编写Java的简要描述".由于这是一个学士论文,必须验证信息来源 - 书籍,Java的官方网站等.不幸的是我在Java网站上找不到这些信息(也许我只是在随便找.).如果可能的话,我使用在线资源比书本更容易.
谁能告诉我在哪里发现这些信息已经过验证?当然,我们在学校里某些科目教授Java的语法或语义,但它似乎并不是"官方来源".
谢谢你们.
我有正确的一周的问题.我有JTextField,我以DD.MM.YYYY格式输入日期.
private void buttonAddCulturalActionActionPerformed(java.awt.event.ActionEvent evt) {
String date = textfieldDateOfEvent.getText();
if (!isCorrectFormatDate(date)) {
textareaExtract.append("Wrong date format!\n");
return;
}
int day = Integer.parseInt(date.substring(0, 2));
int month = Integer.parseInt(date.substring(3, 5));
int year = Integer.parseInt(date.substring(6, 10));
GregorianCalendar enteredDate = new GregorianCalendar(year, month, day);
String actionName = textfieldActionName.getText();
String placeActionName = textfieldPlaceActionName.getText();
int startHourAction = Integer.parseInt(textfieldStartHourAction.getText());
if (isAllEntered(actionName, enteredDate, placeActionName, startHourAction)) {
CulturalAction newAction = new CulturalAction(actionName, enteredDate,
placeActionName, startHourAction);
// culturalActions is priority queue
culturalActions.add(newAction);
extractAction(newAction);
} else {
textareaExtract.append("You need entered all …Run Code Online (Sandbox Code Playgroud)