1 Star 0 Fork 2

宁天哲/求图中任意两点间的最短路径-QT

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
widget.cpp 957 Bytes
一键复制 编辑 原始数据 按行查看 历史
贰叁伍 提交于 2022-01-07 14:57 . 主要文件
#include "widget.h"
#include "ui_widget.h"
Widget::Widget(QWidget *parent)
: QWidget(parent)
, ui(new Ui::Widget)
{
ui->setupUi(this);
// QPushButton * btn_confirm = new QPushButton("this",this);
// QPushButton * btn_n1 = new QPushButton("2",this);
// int a=btn_confirm->width();
// int b=btn_confirm->height();
// btn_n1->move(a+100,b+100);
// setWindowTitle("jndns");
// mypushbutton * btn_2 = new mypushbutton(this);
// btn_2->setText("new");
// btn_2->move(200,0);
// connect(btn_2,&mypushbutton::clicked,this,&Widget::close);//绑定按钮事件 connnect 按钮 按钮触发条件 触发的对象 触发事件
}
Widget::~Widget()
{
delete ui;
}
void Widget::on_Button_Main_Details_clicked()
{
new_class_details = new Class_Details;
new_class_details->show();
}
void Widget::on_Button_Main_Enter_clicked()
{
new_demo = new Demo;
new_demo->show();
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/ning-tianzhe/qt_Floyd_Dijkstra.git
git@gitee.com:ning-tianzhe/qt_Floyd_Dijkstra.git
ning-tianzhe
qt_Floyd_Dijkstra
求图中任意两点间的最短路径-QT
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385