PictureMatching icon indicating copy to clipboard operation
PictureMatching copied to clipboard

Qt C++实现的王者荣耀风格的连连看程序(基于TD-framwork实现)

Results 3 PictureMatching issues
Sort by recently updated
recently updated
newest added

TDMenuButton 这个类,如何设置菜单,并把菜单显示出来, 换句话,就是 菜单与按钮如何关联? QPushButton 这个类有个setMenu函数,你这个类也没有,是否需要自己实现setMenu函数?

现在的行为:如果开局试图消除 左上角的卡片 和 第一行或第一列的相同卡片,会不能消除。 单步跟踪发现 `item1 -> x()` 与 `item2 -> x()` 相等,`item1 -> y()` 与 `item2 -> y()` 相等,这显然不符合预期。但我不熟悉 Qt,没有继续跟下去。 (`item1 -> x()` 等 [在当前代码的位置](https://github.com/TheThreeDog/PictureMatching/blob/master/PictureMatching3/gamemain.cpp#L83) [在我的版本代码的位置](https://github.com/TheThreeDog/PictureMatching/commit/19ee5625aced8fd221c2614b3c83c97bc8dfb5b2#diff-feca254b14cf18b27fca207175f450e8R86)) 现将改动发 PR,以便后续修改…… 因为原...